Initial Commit

This commit is contained in:
2021-02-23 12:46:46 +01:00
commit 4eb95368dd
118 changed files with 15462 additions and 0 deletions

8
src/dzeio/interfaces.ts Normal file
View File

@ -0,0 +1,8 @@
import { SVGAttributes } from 'react'
export type ColorType = 'primary' | 'secondary' | 'info' | 'success' | 'danger' | 'warning'
export interface IconProps extends SVGAttributes<SVGElement> {
color?: string
size?: string | number
}