UNPKG

@littlespoon/icons

Version:
19 lines 742 B
/// <reference types="react" /> export interface BoxIconProps extends React.SVGAttributes<SVGElement> { /** * The fill of the component. Defaults to black. */ fill?: string; /** * The color of the notification circle in the top right corner of the box. * Hidden if it's not provided. */ notificationColor?: string; /** * The size of the component. Defaults to "small". */ size?: 'xsmall' | 'small' | 'medium' | 'large'; } export default function BoxIcon({ fill, notificationColor, size, ...other }: BoxIconProps): React.ReactElement; export declare const BoxIconBase: import("styled-components").StyledComponent<"svg", any, BoxIconProps, never>; //# sourceMappingURL=BoxIcon.d.ts.map