/** * Flowtype definitions for CalendarIcon * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 * @flow */ import * as $Flowgen$Import$styled_2d_components from "styled-components"; export type CalendarIconProps = { /** * The fill of the component. Defaults to black. */ fill?: string, /** * The size of the component. Defaults to "small". */ size?: "xsmall" | "small" | "medium" | "large", ... } & React$SVGAttributes; declare export default function CalendarIcon( x: CalendarIconProps ): React.Element<>; declare export var CalendarIconBase: $Flowgen$Import$styled_2d_components.StyledComponent< "svg", any, CalendarIconProps, empty >;