@cmk/fe_utils
Version:
frontend utility library
19 lines (17 loc) • 621 B
TypeScript
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;