internal: change password preprocessing step (#2347)

This commit is contained in:
Mo
2023-07-06 08:51:06 -05:00
committed by GitHub
parent 5c6ccaf4e1
commit c8e52b667c
39 changed files with 647 additions and 332 deletions

View File

@@ -0,0 +1,13 @@
import Icon from '@/Components/Icon/Icon'
export const CheckmarkCircle = () => {
return (
<button
className={
'peer flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full bg-success text-success-contrast'
}
>
<Icon type={'check'} size="small" />
</button>
)
}

View File

@@ -0,0 +1,13 @@
import Icon from '@/Components/Icon/Icon'
export const ErrorCircle = () => {
return (
<button
className={
'peer flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full bg-danger text-danger-contrast'
}
>
<Icon type={'warning'} size="small" />
</button>
)
}