UNPKG

@littlespoon/icons

Version:
34 lines (30 loc) 828 B
/** * Flowtype definitions for BoxIcon * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 * @flow */ import * as $Flowgen$Import$styled_2d_components from "styled-components"; export type BoxIconProps = { /** * 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", ... } & React$SVGAttributes<SVGElement>; declare export default function BoxIcon(x: BoxIconProps): React.Element<>; declare export var BoxIconBase: $Flowgen$Import$styled_2d_components.StyledComponent< "svg", any, BoxIconProps, empty >;