diff --git a/packages/propel/src/icons/attachments/audio-file-icon.tsx b/packages/propel/src/icons/attachments/audio-file-icon.tsx new file mode 100644 index 000000000..ce9477e3d --- /dev/null +++ b/packages/propel/src/icons/attachments/audio-file-icon.tsx @@ -0,0 +1,13 @@ +import * as React from "react"; + +import { IconWrapper } from "../icon-wrapper"; +import { ISvgIcons } from "../type"; + +export const AudioFileIcon: React.FC = ({ color = "currentColor", ...rest }) => ( + + + +); diff --git a/packages/propel/src/icons/attachments/code-file-icon.tsx b/packages/propel/src/icons/attachments/code-file-icon.tsx new file mode 100644 index 000000000..10a52834a --- /dev/null +++ b/packages/propel/src/icons/attachments/code-file-icon.tsx @@ -0,0 +1,13 @@ +import * as React from "react"; + +import { IconWrapper } from "../icon-wrapper"; +import { ISvgIcons } from "../type"; + +export const CodeFileIcon: React.FC = ({ color = "currentColor", ...rest }) => ( + + + +); diff --git a/packages/propel/src/icons/attachments/document-file-icon.tsx b/packages/propel/src/icons/attachments/document-file-icon.tsx new file mode 100644 index 000000000..57dbdfbbf --- /dev/null +++ b/packages/propel/src/icons/attachments/document-file-icon.tsx @@ -0,0 +1,13 @@ +import * as React from "react"; + +import { IconWrapper } from "../icon-wrapper"; +import { ISvgIcons } from "../type"; + +export const DocumentFileIcon: React.FC = ({ color = "currentColor", ...rest }) => ( + + + +); diff --git a/packages/propel/src/icons/attachments/image-file-icon.tsx b/packages/propel/src/icons/attachments/image-file-icon.tsx new file mode 100644 index 000000000..0c3dd8969 --- /dev/null +++ b/packages/propel/src/icons/attachments/image-file-icon.tsx @@ -0,0 +1,13 @@ +import * as React from "react"; + +import { IconWrapper } from "../icon-wrapper"; +import { ISvgIcons } from "../type"; + +export const ImageFileIcon: React.FC = ({ color = "currentColor", ...rest }) => ( + + + +); diff --git a/packages/propel/src/icons/attachments/index.ts b/packages/propel/src/icons/attachments/index.ts new file mode 100644 index 000000000..408dc37a3 --- /dev/null +++ b/packages/propel/src/icons/attachments/index.ts @@ -0,0 +1,5 @@ +export * from "./audio-file-icon"; +export * from "./code-file-icon"; +export * from "./document-file-icon"; +export * from "./image-file-icon"; +export * from "./video-file-icon"; diff --git a/packages/propel/src/icons/attachments/video-file-icon.tsx b/packages/propel/src/icons/attachments/video-file-icon.tsx new file mode 100644 index 000000000..dea3397ca --- /dev/null +++ b/packages/propel/src/icons/attachments/video-file-icon.tsx @@ -0,0 +1,13 @@ +import * as React from "react"; + +import { IconWrapper } from "../icon-wrapper"; +import { ISvgIcons } from "../type"; + +export const VideoFileIcon: React.FC = ({ color = "currentColor", ...rest }) => ( + + + +); diff --git a/packages/propel/src/icons/index.ts b/packages/propel/src/icons/index.ts index ace2a4225..00c8f4472 100644 --- a/packages/propel/src/icons/index.ts +++ b/packages/propel/src/icons/index.ts @@ -6,6 +6,7 @@ export * from "./actions"; export * from "./activity-icon"; export * from "./ai-icon"; export * from "./at-risk-icon"; +export * from "./attachments"; export * from "./bar-icon"; export * from "./blocked-icon"; export * from "./blocker-icon";