amotify
Version:
UI Component for React,NextJS,esbuild
14 lines (13 loc) • 368 B
TypeScript
/// <reference types="react" />
import Box from './Box';
declare namespace Card {
type Input = Box.DefaultInput & {};
type Methods = React.FC<Input> & {
Border: React.FC<Input>;
Plain: React.FC<Input>;
Cloud: React.FC<Input>;
Shadow: React.FC<Input>;
};
}
declare const Card: Card.Methods;
export { Card, Card as default };