-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
479 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconCalendar.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconCalendar as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconCalendar: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconCalendar; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconCamera.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconCamera as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconCamera: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconCamera; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconChangelog.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconClipboardList as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconChangelog: FC< | ||
Omit<ComponentProps<typeof Icon>, "children"> | ||
> = (props) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconChangelog; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconClock.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconClock as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconClock: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconClock; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconContractPosition.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconFileInfo as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconContractPosition: FC< | ||
Omit<ComponentProps<typeof Icon>, "children"> | ||
> = (props) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconContractPosition; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconCredit.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconCreditCard as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconCredit: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconCredit; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconEdit.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconEdit as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconEdit: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconEdit; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconExtension.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconPuzzle as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconExtension: FC< | ||
Omit<ComponentProps<typeof Icon>, "children"> | ||
> = (props) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconExtension; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconInvoice.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconFileEuro as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconInvoice: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconInvoice; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconLock.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconLock as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconLock: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconLock; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconLockOpen.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconLockOpen as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconLockOpen: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconLockOpen; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconMaximize.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconMaximize as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconMaximize: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconMaximize; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconMinimize.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconMinimize as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconMinimize: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconMinimize; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconNumber.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconHash as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconNumber: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconNumber; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconOrder.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconShoppingCart as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconOrder: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconOrder; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconPerformance.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconChartHistogram as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconPerformance: FC< | ||
Omit<ComponentProps<typeof Icon>, "children"> | ||
> = (props) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconPerformance; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconStar.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconStar as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconStar: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconStar; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconStarFilled.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconStarFilled as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconStarFilled: FC< | ||
Omit<ComponentProps<typeof Icon>, "children"> | ||
> = (props) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconStarFilled; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconTicket.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconTicket as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconTicket: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconTicket; |
15 changes: 15 additions & 0 deletions
15
packages/components/src/components/Icon/components/icons/IconUser.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable */ | ||
/* auto-generated file */ | ||
import React, { ComponentProps, FC } from "react"; | ||
import { IconUser as Tabler } from "@tabler/icons-react"; | ||
import { Icon } from "@/components/Icon"; | ||
|
||
export const IconUser: FC<Omit<ComponentProps<typeof Icon>, "children">> = ( | ||
props, | ||
) => ( | ||
<Icon {...props}> | ||
<Tabler /> | ||
</Icon> | ||
); | ||
|
||
export default IconUser; |
Oops, something went wrong.