@carbon/charts-react
Version:
Carbon Charts component library for React
14 lines (13 loc) • 486 B
TypeScript
import { default as React } from 'react';
type CssPosition = 'fixed' | 'absolute' | 'relative' | 'static' | 'sticky';
type CardNodeProps = {
tag?: 'div' | 'a' | 'button';
href?: string;
stacked?: boolean;
color?: string;
position?: CssPosition;
children?: React.ReactNode;
className?: string;
};
declare const CardNode: React.FC<CardNodeProps & React.HTMLAttributes<HTMLAnchorElement | HTMLDivElement | HTMLButtonElement>>;
export { CardNode };