UNPKG

@serendie/ui

Version:

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

10 lines (7 loc) 430 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { SpacerProperties } from '../patterns/spacer'; import type { HTMLStyledProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface SpacerProps extends SpacerProperties, DistributiveOmit<HTMLStyledProps<'div'>, keyof SpacerProperties > {} export declare const Spacer: FunctionComponent<SpacerProps>