File tree Expand file tree Collapse file tree 4 files changed +23
-0
lines changed
apps/docs/src/content/04-components/content/icon/examples
packages/components/src/components/Icon Expand file tree Collapse file tree 4 files changed +23
-0
lines changed Original file line number Diff line number Diff 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 />
Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ export { IconClose } from "./IconClose";
1414export { IconCode } from "./IconCode" ;
1515export { IconContextMenu } from "./IconContextMenu" ;
1616export { IconContextMenuVertical } from "./IconContextMenuVertical" ;
17+ export { IconContractPartner } from "./IconContractPartner" ;
1718export { IconCopy } from "./IconCopy" ;
1819export { IconDescending } from "./IconDescending" ;
1920export { IconDelete } from "./IconDelete" ;
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ Changelog: ClipboardList
5959Certificate : FileCertificate
6060Container : Package
6161Contract : FileDescription
62+ ContractPartner : Signature
6263Contributor : HeartHandshake
6364Cronjob : CalendarCheck
6465Customer : Building
You can’t perform that action at this time.
0 commit comments