Skip to content

Commit 4bf63ae

Browse files
committed
feat(Icon): add contract partner icon
1 parent fb57669 commit 4bf63ae

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ import {
110110
<Label>Contract</Label>
111111
<IconContract />
112112
</LabeledValue>
113+
<LabeledValue>
114+
<Label>ContractPartner</Label>
115+
<IconContractPartner />
116+
</LabeledValue>
113117
<LabeledValue>
114118
<Label>Contributor</Label>
115119
<IconContributor />
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 { IconSignature as Tabler } from "@tabler/icons-react";
4+
import { type Icon } from "@/components/Icon";
5+
import View from "@/views/IconView";
6+
7+
export const IconContractPartner: FC<
8+
Omit<ComponentProps<typeof Icon>, "children">
9+
> = (props) => {
10+
return (
11+
<View {...props}>
12+
<Tabler />
13+
</View>
14+
);
15+
};
16+
17+
export default IconContractPartner;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export { IconClose } from "./IconClose";
1414
export { IconCode } from "./IconCode";
1515
export { IconContextMenu } from "./IconContextMenu";
1616
export { IconContextMenuVertical } from "./IconContextMenuVertical";
17+
export { IconContractPartner } from "./IconContractPartner";
1718
export { IconCopy } from "./IconCopy";
1819
export { IconDescending } from "./IconDescending";
1920
export { IconDelete } from "./IconDelete";

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Changelog: ClipboardList
5959
Certificate: FileCertificate
6060
Container: Package
6161
Contract: FileDescription
62+
ContractPartner: Signature
6263
Contributor: HeartHandshake
6364
Cronjob: CalendarCheck
6465
Customer: Building

0 commit comments

Comments
 (0)