UNPKG

@serendie/ui

Version:

Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric

10 lines (7 loc) 416 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { WrapProperties } from '../patterns/wrap'; import type { HTMLStyledProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface WrapProps extends WrapProperties, DistributiveOmit<HTMLStyledProps<'div'>, keyof WrapProperties > {} export declare const Wrap: FunctionComponent<WrapProps>