// @mui
import { SvgIcon, SvgIconProps } from '@mui/material';
// ----------------------------------------------------------------------
// CloseIcon
export function CloseIcon(props: SvgIconProps) {
return (
);
}
// StarIcon
export function StarIcon(props: SvgIconProps) {
return (
);
}
// Using for Alert
export function InfoIcon(props: SvgIconProps) {
return (
);
}
export function WarningIcon(props: SvgIconProps) {
return (
);
}
export function SuccessIcon(props: SvgIconProps) {
return (
);
}
export function ErrorIcon(props: SvgIconProps) {
return (
);
}
// Using for Checkbox
export function CheckboxIcon(props: SvgIconProps) {
return (
);
}
export function CheckboxCheckedIcon(props: SvgIconProps) {
return (
);
}
export function CheckboxIndeterminateIcon(props: SvgIconProps) {
return (
);
}
// Using for Select Input
export function InputSelectIcon(props: SvgIconProps) {
return (
);
}
// Using for TreeView
export function TreeViewCollapseIcon(props: SvgIconProps) {
return (
);
}
export function TreeViewExpandIcon(props: SvgIconProps) {
return (
);
}
export function TreeViewEndIcon(props: SvgIconProps) {
return (
);
}