diff --git a/src/icons/Block.tsx b/src/icons/Block.tsx new file mode 100644 index 0000000..c0a0a89 --- /dev/null +++ b/src/icons/Block.tsx @@ -0,0 +1,7 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + +export const Block = (props: SvgIconProps) => ( + + + +); diff --git a/src/icons/index.ts b/src/icons/index.ts index 1ba3246..3417997 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -16,3 +16,4 @@ export { Microsoft } from "./Microsoft"; export { ImageSync } from "./ImageSync"; export { Bynder } from "./Bynder"; export { FileReplace } from "./FileReplace"; +export { Block } from "./Block";