UNPKG

amotify

Version:

UI Component for React,NextJS,esbuild

10 lines (9 loc) 279 B
/// <reference types="react" /> import { Box } from '../atoms'; declare namespace Plate { type Input = { size?: 'MIN' | 'XS' | 'S' | 'R' | 'L' | 'XL' | 'MAX'; } & Box.DefaultInput; } declare const Plate: React.FC<Plate.Input>; export { Plate, Plate as default };