UNPKG

@meve/ui

Version:

Argon design system components library

14 lines (10 loc) 237 B
import { MComponent } from './component' export type CardProps = { title?: string subtitle?: string description?: string } export class Card extends MComponent { $props: CardProps } export class _CardComponent extends Card {}