import { getRegisteredComponentWithFallback, registerMoleculesComponents } from '../../core'; import { default as ChipComponent, Props as ChipProps } from './Chip'; import type { ComponentType } from 'react'; export const ChipDefault = Object.assign( // @component ./Chip.tsx ChipComponent, { Assist: ChipComponent as ComponentType< Omit< ChipProps, | 'onClose' | 'closeIconName' | 'closeIconType' | 'selected' | 'selectedColor' | 'selectionBackgroundColor' > >, Filter: ChipComponent as ComponentType< Omit >, Input: ChipComponent, Suggestion: ChipComponent as ComponentType< Omit< ChipProps, | 'onClose' | 'closeIconName' | 'closeIconType' | 'selected' | 'selectedColor' | 'selectionBackgroundColor' | 'left' | 'right' | 'leftElementContainerStyle' | 'rightElementContainerStyle' > >, }, ); registerMoleculesComponents({ Chip: ChipDefault, }); export const Chip = getRegisteredComponentWithFallback('Chip', ChipDefault); export { Props as ChipProps } from './Chip'; export { styles as chipStyles } from './utils'; export { States } from './utils';