10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
![]() |
import { definePropType } from './props'
|
||
|
|
||
|
export const iconPropType = definePropType<string>([String])
|
||
|
|
||
|
export const FormValidateIconsMap = {
|
||
|
validating: 'loading',
|
||
|
success: 'success-circle',
|
||
|
error: 'close-circle',
|
||
|
}
|