diff --git a/src/assets/icons/edit-2-outline.tsx b/src/assets/icons/edit-2-outline.tsx new file mode 100644 index 0000000..423d21c --- /dev/null +++ b/src/assets/icons/edit-2-outline.tsx @@ -0,0 +1,29 @@ +import { SVGProps } from 'react' +const SvgComponent = (props: SVGProps) => ( + + + + + + + + + + + +) + +export default SvgComponent diff --git a/src/assets/icons/play-circle-outline.tsx b/src/assets/icons/play-circle-outline.tsx new file mode 100644 index 0000000..747fc9a --- /dev/null +++ b/src/assets/icons/play-circle-outline.tsx @@ -0,0 +1,29 @@ +import { SVGProps } from 'react' +const SvgComponent = (props: SVGProps) => ( + + + + + + + + + + + +) + +export default SvgComponent diff --git a/src/assets/icons/trash-outline.tsx b/src/assets/icons/trash-outline.tsx new file mode 100644 index 0000000..5c8efb8 --- /dev/null +++ b/src/assets/icons/trash-outline.tsx @@ -0,0 +1,25 @@ +import { SVGProps } from 'react' +const SvgComponent = (props: SVGProps) => ( + + + + + + + + + + +) + +export default SvgComponent