diff --git a/apps/app/components/icons/error-icon.tsx b/apps/app/components/icons/error-icon.tsx new file mode 100644 index 000000000..760893e68 --- /dev/null +++ b/apps/app/components/icons/error-icon.tsx @@ -0,0 +1,26 @@ +import React from "react"; + +import type { Props } from "./types"; + +export const ErrorIcon: React.FC = ({ width = "24", height = "24", className }) => ( + + + + + + + + + + +); diff --git a/apps/app/components/icons/index.ts b/apps/app/components/icons/index.ts index 0c2f045b6..f71dd7f0c 100644 --- a/apps/app/components/icons/index.ts +++ b/apps/app/components/icons/index.ts @@ -43,7 +43,7 @@ export * from "./user-icon"; export * from "./grid-view-icons"; export * from "./assignment-clipboard-icon"; export * from "./tick-mark-icon"; -export * from "./target-icon" +export * from "./target-icon"; export * from "./contrast-icon"; export * from "./people-group-icon"; export * from "./cmd-icon"; @@ -72,4 +72,6 @@ export * from "./svg-file-icon"; export * from "./txt-file-icon"; export * from "./default-file-icon"; export * from "./video-file-icon"; -export * from "./audio-file-icon"; \ No newline at end of file +export * from "./audio-file-icon"; +export * from "./success-icon"; +export * from "./error-icon"; diff --git a/apps/app/components/icons/success-icon.tsx b/apps/app/components/icons/success-icon.tsx new file mode 100644 index 000000000..9d1c49950 --- /dev/null +++ b/apps/app/components/icons/success-icon.tsx @@ -0,0 +1,19 @@ +import React from "react"; + +import type { Props } from "./types"; + +export const SuccessIcon: React.FC = ({ width = "24", height = "24", className }) => ( + + + +);