UNPKG

@serendie/ui

Version:

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

10 lines (7 loc) 423 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { StackProperties } from '../patterns/stack'; import type { HTMLStyledProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface StackProps extends StackProperties, DistributiveOmit<HTMLStyledProps<'div'>, keyof StackProperties > {} export declare const Stack: FunctionComponent<StackProps>