Files
leonpan-assets/src/component/Icons/Add.tsx
2025-10-19 13:31:11 +00:00

10 lines
432 B
TypeScript
Executable File

import { SvgIcon, SvgIconProps } from "@mui/material";
export default function Add(props: SvgIconProps) {
return (
<SvgIcon {...props}>
<path d="M11.883 3.007 12 3a1 1 0 0 1 .993.883L13 4v7h7a1 1 0 0 1 .993.883L21 12a1 1 0 0 1-.883.993L20 13h-7v7a1 1 0 0 1-.883.993L12 21a1 1 0 0 1-.993-.883L11 20v-7H4a1 1 0 0 1-.993-.883L3 12a1 1 0 0 1 .883-.993L4 11h7V4a1 1 0 0 1 .883-.993L12 3l-.117.007Z" />
</SvgIcon>
);
}