@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
9 lines (8 loc) • 311 B
TypeScript
import * as React from 'react';
export interface IconProps extends React.SVGProps<SVGSVGElement> {
size?: number | string;
}
export declare const createIcon: (name: string, path: React.ReactNode) => {
({ size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};