UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

9 lines (8 loc) 657 B
import { WuiProps } from '../System'; import { IconContent, IconOptions } from './index'; type StyledIconProps = Partial<{ alt: string; title: string; }> & Pick<IconContent, 'isFlag' | 'stroked'> & Pick<IconOptions, 'size'> & WuiProps; export declare const Icon: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('styled-components').FastOmit<import('react').SVGProps<SVGSVGElement>, keyof import('@xstyled/system').SystemProps<import('@xstyled/system').Theme>> & import('@xstyled/system').SystemProps<import('@xstyled/system').Theme>, StyledIconProps>> & string; export {};