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