@datepicker-react/styled
Version:
A React datepicker build with styled-components.
18 lines (17 loc) • 390 B
TypeScript
import {
FontFamilyProps,
FontSizeProps,
FontWeightProps,
ColorProps,
LineHeightProps,
SpaceProps,
} from 'styled-system'
interface TextProps
extends FontWeightProps,
FontSizeProps,
FontFamilyProps,
ColorProps,
SpaceProps,
LineHeightProps {}
declare const Text: import('styled-components').StyledComponent<'div', any, TextProps, never>
export default Text