type IconProps = {
class: string;
};
export const ChatBubbleLeftIcon = (props: IconProps) => {
return (
);
};
export const ClipboardDocumentIcon = (props: IconProps) => {
return (
);
};
export const ClipboardDocumentCheckIcon = (props: IconProps) => {
return (
);
};