UNPKG

@amaui/ui-react

Version:
16 lines (15 loc) 483 B
import React from 'react'; import { IBaseElement, ITonal, IColor, IVersion, IElevation, IPropsAny } from '../types'; export interface ISurface extends Omit<IBaseElement, 'children'> { tonal?: ITonal; color?: IColor; version?: IVersion; elevation?: IElevation; backgroundOpacity?: number; noBackground?: boolean; noOutline?: boolean; AdditionalProps?: IPropsAny; children?: any; } declare const Surface: React.FC<ISurface>; export default Surface;