UNPKG

@littlespoon/icons

Version:
17 lines 591 B
/// <reference types="react" /> export interface ArrowIconProps extends React.SVGAttributes<SVGElement> { /** * The fill of the component. Defaults to black. */ fill?: string; /** * The direction of the component. Defaults to "down". */ direction?: 'up' | 'down' | 'left' | 'right'; /** * The size of the component. Defaults to "small". */ size?: 'xsmall' | 'small' | 'medium' | 'large'; } export default function ArrowIcon({ direction, fill, size, ...other }: ArrowIconProps): React.ReactElement; //# sourceMappingURL=ArrowIcon.d.ts.map