soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
17 lines (16 loc) • 569 B
TypeScript
/// <reference types="react" />
import './card.scss';
/**
* @specs https://m3.material.io/components/cards/specs
*/
export declare const Card: import("react").ForwardRefExoticComponent<{
/**
* Change the container component, div by default
*/
as?: keyof JSX.IntrinsicElements | undefined;
/**
* @default elevated
*/
sd?: "filled" | "outlined" | "elevated" | undefined;
children?: React.ReactNode;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "as" | "children" | "sd"> & import("react").RefAttributes<HTMLElement>>;