internal: change password preprocessing step (#2347)
This commit is contained in:
@@ -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>
|
||||
)
|
||||
}
|
||||
@@ -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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user