UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

15 lines (14 loc) 534 B
import type * as React from 'react'; import type { FlexProps } from "../../Flex/Flex.js"; interface BoxProps extends FlexProps<'div'> { style?: React.CSSProperties; children?: React.ReactNode; minHeight?: number; w?: number | string; h?: number | string; grow?: true; bc?: React.CSSProperties['backgroundColor']; bgc?: React.CSSProperties['backgroundColor']; } export declare function Box({ children, w, h, minHeight, bgc, bc, ...props }: BoxProps): import("react/jsx-runtime").JSX.Element; export {};