alinea
Version:
Headless git-based CMS
9 lines (8 loc) • 369 B
TypeScript
import type { ComponentType } from 'react';
import { type StackProps } from './Stack.js';
export type ChipProps = StackProps & {
icon?: ComponentType;
accent?: boolean;
variant?: 'info' | 'success' | 'disabled' | 'progress';
};
export declare function Chip({ children, icon, accent, variant, ...props }: ChipProps): import("react/jsx-runtime").JSX.Element;