UNPKG

react-uki

Version:
15 lines (14 loc) 845 B
import { FC } from 'react'; import { BoxProps, ButtonProps, FlexBoxProps, TextProps, HeadingProps, ImageProps, LinkProps, SvgProps, ThemeProps, GridProps } from './types'; export { theme, normalize } from './styles'; export { BoxProps, ButtonProps, FlexBoxProps, TextProps, HeadingProps, ImageProps, LinkProps, SvgProps, ThemeProps, GridProps, VariantProps } from './types'; export declare const themed: <P>(key: string) => (props: ThemeProps & P) => any; export declare const Box: FC<BoxProps>; export declare const Flex: FC<FlexBoxProps>; export declare const Grid: FC<GridProps>; export declare const Button: FC<ButtonProps>; export declare const Text: FC<TextProps>; export declare const Heading: FC<HeadingProps>; export declare const Image: FC<ImageProps>; export declare const Link: FC<LinkProps>; export declare const Svg: FC<SvgProps>;