Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions packages/icons/src/General/ic-download.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { HTMLAttributes, forwardRef } from "react";

interface IconDownloadProps extends HTMLAttributes<SVGSVGElement> {}

const IconDownload = forwardRef<SVGSVGElement, IconDownloadProps>(
(props, ref) => {
return (
<svg
{...props}
ref={ref}
fill="none"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M21 12V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V12M16 11L12 15M12 15L8 11M12 15V3"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
);

export default IconDownload;
1 change: 1 addition & 0 deletions packages/icons/src/General/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ export { default as IconSliders } from "./ic-sliders";
export { default as IconTrash } from "./ic-trash";
export { default as IconUnlocked } from "./ic-unlocked";
export { default as IconUploadCloud } from "./ic-upload-cloud";
export { default as Download } from './ic-download';
27 changes: 27 additions & 0 deletions packages/icons/src/Interaction/ic-reply.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { HTMLAttributes, forwardRef } from "react";

interface IconReplyProps extends HTMLAttributes<SVGSVGElement> {}

const IconReply = forwardRef<SVGSVGElement, IconReplyProps>(
(props, ref) => {
return (
<svg
{...props}
ref={ref}
fill="none"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M21 15L7.5 15C5.01472 15 3 12.9853 3 10.5C3 8.01472 5.01472 6 7.5 6L12 6M21 15L17 19M21 15L17 11"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
);

export default IconReply;
1 change: 1 addition & 0 deletions packages/icons/src/Interaction/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ export { default as IconSwitchHorizontal } from "./ic-switch-horizontal";
export { default as IconSwitchVertical } from "./ic-switch-vertical";
export { default as IconXCircle } from "./ic-x-circle";
export { default as IconXClose } from "./ic-x-close";
export { default as Reply } from './ic-reply';