UNPKG

@kopexa/chip

Version:

A Chip is a small block of essential information that represent an input, attribute, or action.

14 lines (11 loc) 528 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { StandardChipVariants } from '@kopexa/theme'; import { ChipProps } from './chip.mjs'; import 'react'; type Omitted = "indicator" | "indicatorColor" | "startContent" | "endContent" | "standard"; type BaseProps = ChipProps & StandardChipVariants; type StandardChipProps = Omit<BaseProps, Omitted> & { standard: string; }; declare const StandardChip: (props: StandardChipProps) => react_jsx_runtime.JSX.Element; export { StandardChip, type StandardChipProps };