UNPKG

@fidely-ui/react

Version:

Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps

6 lines (5 loc) 282 B
import * as React from 'react'; export interface IconProps extends React.SVGProps<SVGSVGElement> { size?: number | string; } export declare function createIcon(path: React.ReactNode): React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;