@spicy-ui/core
Version:
A themable and extensible React UI library, ready to use out of the box
7 lines (6 loc) • 382 B
TypeScript
import { AllSystemProps, SxProp } from '../../system';
import { AsProp, ChildrenProp, HTMLAttributes } from '../../types';
export interface BoxProps extends HTMLAttributes, AsProp, ChildrenProp, AllSystemProps, SxProp {
color?: any;
}
export declare const Box: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, BoxProps, never>;