react-tokens-presenters
Version:
A list of presenters for a design tokens system
15 lines (14 loc) • 359 B
TypeScript
import { FC } from 'react';
export declare const DEFAULT_SIZE = "4rem";
declare type BlockProps = {
borderRadius?: string;
border?: string;
padding?: string;
width?: string;
height?: string;
opacity?: string;
backgroundColor?: string;
boxShadow?: string;
};
declare const Box: FC<BlockProps>;
export default Box;