diff --git a/src/icons/Asterisk.tsx b/src/icons/Asterisk.tsx new file mode 100644 index 0000000..9958a22 --- /dev/null +++ b/src/icons/Asterisk.tsx @@ -0,0 +1,12 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + + +export const Asterisk = (props: SvgIconProps) => ( + + + + ); + \ No newline at end of file diff --git a/src/icons/Css.tsx b/src/icons/Css.tsx new file mode 100644 index 0000000..d2ece87 --- /dev/null +++ b/src/icons/Css.tsx @@ -0,0 +1,10 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + +export const Css = (props: SvgIconProps) => ( + + + +); \ No newline at end of file diff --git a/src/icons/EditFile.tsx b/src/icons/EditFile.tsx new file mode 100644 index 0000000..205c5c3 --- /dev/null +++ b/src/icons/EditFile.tsx @@ -0,0 +1,10 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + +export const EditFile = (props: SvgIconProps) => ( + + + +); diff --git a/src/icons/FileCode.tsx b/src/icons/FileCode.tsx new file mode 100644 index 0000000..38ca721 --- /dev/null +++ b/src/icons/FileCode.tsx @@ -0,0 +1,10 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + +export const FileCode = (props: SvgIconProps) => ( + + + +); \ No newline at end of file diff --git a/src/icons/Icons.stories.tsx b/src/icons/Icons.stories.tsx new file mode 100644 index 0000000..2639662 --- /dev/null +++ b/src/icons/Icons.stories.tsx @@ -0,0 +1,20 @@ +import React from "react"; +import { Story, Meta } from "@storybook/react"; +import * as Icons from "./index"; + +export default { + title: "Icons", +} as Meta; + +const Template: Story = () => ( +
+ {Object.entries(Icons).map(([name, Icon]) => ( +
+ +
{name}
+
+ ))} +
+); + +export const AllIcons = Template.bind({}); \ No newline at end of file diff --git a/src/icons/JavaScript.tsx b/src/icons/JavaScript.tsx new file mode 100644 index 0000000..3afd78c --- /dev/null +++ b/src/icons/JavaScript.tsx @@ -0,0 +1,10 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + +export const JavaScript = (props: SvgIconProps) => ( + + + +); \ No newline at end of file diff --git a/src/icons/Less.tsx b/src/icons/Less.tsx new file mode 100644 index 0000000..3c67b12 --- /dev/null +++ b/src/icons/Less.tsx @@ -0,0 +1,10 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + +export const Less = (props: SvgIconProps) => ( + + + +); \ No newline at end of file diff --git a/src/icons/Link.tsx b/src/icons/Link.tsx new file mode 100644 index 0000000..c4f9c8d --- /dev/null +++ b/src/icons/Link.tsx @@ -0,0 +1,10 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + +export const Link = (props: SvgIconProps) => ( + + + +); \ No newline at end of file diff --git a/src/icons/LockClosed.tsx b/src/icons/LockClosed.tsx new file mode 100644 index 0000000..7c0e160 --- /dev/null +++ b/src/icons/LockClosed.tsx @@ -0,0 +1,10 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + +export const LockClosed = (props: SvgIconProps) => ( + + + +); \ No newline at end of file diff --git a/src/icons/Sass.tsx b/src/icons/Sass.tsx new file mode 100644 index 0000000..c94ae7f --- /dev/null +++ b/src/icons/Sass.tsx @@ -0,0 +1,10 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + +export const Sass = (props: SvgIconProps) => ( + + + +); \ No newline at end of file diff --git a/src/icons/StickyNote.tsx b/src/icons/StickyNote.tsx new file mode 100644 index 0000000..be23294 --- /dev/null +++ b/src/icons/StickyNote.tsx @@ -0,0 +1,10 @@ +import { SvgIcon, SvgIconProps } from "@mui/material"; + +export const StickyNote = (props: SvgIconProps) => ( + + + +); diff --git a/src/icons/index.ts b/src/icons/index.ts index 56b36dc..4918a14 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -18,3 +18,13 @@ export { Bynder } from "./Bynder"; export { FileReplace } from "./FileReplace"; export { Block } from "./Block"; export { ReplaceContentItem } from "./ReplaceContentItem"; +export { Asterisk } from "./Asterisk"; +export { EditFile } from "./EditFile"; +export { Link } from "./Link"; +export { StickyNote } from "./StickyNote"; +export { LockClosed } from "./LockClosed"; +export { FileCode } from "./FileCode"; +export { JavaScript } from "./JavaScript"; +export { Css } from "./Css"; +export { Less } from "./Less"; +export { Sass } from "./Sass";