Skip to content

Commit 2c1a4e4

Browse files
committed
feat(Icon): add invoice icon
1 parent 4bf63ae commit 2c1a4e4

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

apps/docs/src/content/04-components/content/icon/examples/decorative.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import {
3030
IconForwardAddress,
3131
IconImage,
3232
IconInvite,
33+
IconInvoice,
3334
IconKnowledgeHint,
3435
IconLanguage,
3536
IconLeadFyndr,
@@ -194,6 +195,10 @@ import {
194195
<Label>Invite</Label>
195196
<IconInvite />
196197
</LabeledValue>
198+
<LabeledValue>
199+
<Label>Invoice</Label>
200+
<IconInvoice />
201+
</LabeledValue>
197202
<LabeledValue>
198203
<Label>KnowledgeHint</Label>
199204
<IconKnowledgeHint />
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* auto-generated file */
2+
import React, { type ComponentProps, type FC } from "react";
3+
import { IconFileEuro as Tabler } from "@tabler/icons-react";
4+
import { type Icon } from "@/components/Icon";
5+
import View from "@/views/IconView";
6+
7+
export const IconInvoice: FC<Omit<ComponentProps<typeof Icon>, "children">> = (
8+
props,
9+
) => {
10+
return (
11+
<View {...props}>
12+
<Tabler />
13+
</View>
14+
);
15+
};
16+
17+
export default IconInvoice;

packages/components/src/components/Icon/components/icons/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export { IconClose } from "./IconClose";
1414
export { IconCode } from "./IconCode";
1515
export { IconContextMenu } from "./IconContextMenu";
1616
export { IconContextMenuVertical } from "./IconContextMenuVertical";
17-
export { IconContractPartner } from "./IconContractPartner";
1817
export { IconCopy } from "./IconCopy";
1918
export { IconDescending } from "./IconDescending";
2019
export { IconDelete } from "./IconDelete";
@@ -58,6 +57,7 @@ export { IconChangelog } from "./IconChangelog";
5857
export { IconCertificate } from "./IconCertificate";
5958
export { IconContainer } from "./IconContainer";
6059
export { IconContract } from "./IconContract";
60+
export { IconContractPartner } from "./IconContractPartner";
6161
export { IconContributor } from "./IconContributor";
6262
export { IconCronjob } from "./IconCronjob";
6363
export { IconCustomer } from "./IconCustomer";
@@ -78,6 +78,7 @@ export { IconFile } from "./IconFile";
7878
export { IconForwardAddress } from "./IconForwardAddress";
7979
export { IconImage } from "./IconImage";
8080
export { IconInvite } from "./IconInvite";
81+
export { IconInvoice } from "./IconInvoice";
8182
export { IconKnowledgeHint } from "./IconKnowledgeHint";
8283
export { IconLanguage } from "./IconLanguage";
8384
export { IconLeadFyndr } from "./IconLeadFyndr";

packages/components/src/components/Icon/icons.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ File: File
8080
ForwardAddress: ArrowRight
8181
Image: Photo
8282
Invite: MailOpened
83+
Invoice: FileEuro
8384
KnowledgeHint: Bulb
8485
Language: Language
8586
LeadFyndr: Radar2

0 commit comments

Comments
 (0)