@serendie/ui
Version:
Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric
10 lines (7 loc) • 409 B
TypeScript
/* eslint-disable */
import type { FunctionComponent } from 'react'
import type { BoxProperties } from '../patterns/box';
import type { HTMLStyledProps } from '../types/jsx';
import type { DistributiveOmit } from '../types/system-types';
export interface BoxProps extends BoxProperties, DistributiveOmit<HTMLStyledProps<'div'>, keyof BoxProperties > {}
export declare const Box: FunctionComponent<BoxProps>