rsuite
Version:
A suite of react components
14 lines (13 loc) • 534 B
TypeScript
import React from 'react';
import { BoxProps } from '../Box';
import type { Size, Color } from '../types';
export interface StyledBoxProps extends BoxProps {
/** Component identifier for CSS variable generation */
name: string;
/** Size of the Box */
size?: Size | number | string;
/** Color of the Box */
color?: Color | React.CSSProperties['color'];
}
declare const StyledBox: import("../types").InternalRefForwardingComponent<"div", StyledBoxProps, never> & Record<string, never>;
export default StyledBox;