1
0
Fork 0
traefik/webui/src/components/icons/index.tsx

13 lines
340 B
TypeScript

import { CSS, Flex, VariantProps } from '@traefiklabs/faency'
import { HTMLAttributes } from 'react'
export type CustomIconProps = HTMLAttributes<SVGElement> & {
color?: string
fill?: string
stroke?: string
width?: number | string
height?: number | string
flexProps?: VariantProps<typeof Flex>
css?: CSS
viewBox?: string
}