UNPKG

@cmk/fe_utils

Version:
19 lines (17 loc) 621 B
import { ReactNode } from 'react'; import { ChipProps } from '@mui/material'; import { CommonComponentPropertys } from '../../componentProperty'; export type CChipProps = ChipProps & { icon?: string; } & CommonComponentPropertys; export type ChipWrapperProps = Omit<ChipProps, 'deleteIcon'> & { icon?: string; iconColor?: string; avatarInitials?: string; avatarBgColor?: string; avatarImage?: string; deleteIcon?: string; } & CommonComponentPropertys & { rootInjection: ReactNode; }; export declare const ChipWrapper: (props: ChipWrapperProps) => import("react/jsx-runtime").JSX.Element;