UNPKG

basscode-extrude

Version:

A compact, elegant 3D extruded UI component library for React with TypeScript support

9 lines (8 loc) 257 B
import React from 'react'; export interface CardProps { children: React.ReactNode; className?: string; padding?: 'none' | 'small' | 'medium' | 'large'; shadow?: 'light' | 'medium' | 'heavy'; } export declare const Card: React.FC<CardProps>;