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 { SquareProperties } from '../patterns/square'; import type { HTMLStyledProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface SquareProps extends SquareProperties, DistributiveOmit<HTMLStyledProps<'div'>, keyof SquareProperties > {} export declare const Square: FunctionComponent<SquareProps>