UNPKG

@sandlada/mdc

Version:

@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.

27 lines 723 B
/** * @license * Copyright 2026 Kai-Orion & Sandlada * SPDX-License-Identifier: MIT */ export declare const CardVariant: { readonly Elevated: 'elevated'; readonly Filled: 'filled'; readonly Outlined: 'outlined'; }; export type CardVariant = typeof CardVariant[keyof typeof CardVariant]; export declare const CardShape: { readonly Round: 'round'; readonly Square: 'square'; }; export type CardShape = typeof CardShape[keyof typeof CardShape]; export interface ICard { variant: CardVariant; interactive: boolean; disabled: boolean; horizontal: boolean; shape: CardShape; href: string; target: string; cardTabIndex: number; } //# sourceMappingURL=card.interface.d.ts.map