-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: dev-redo <[email protected]>
- Loading branch information
Showing
6 changed files
with
145 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"author": "Corca <[email protected]>", | ||
"description": "Design System for Corca, Inc.", | ||
"private": false, | ||
"version": "0.0.34", | ||
"version": "0.0.35", | ||
"packageManager": "[email protected]", | ||
"type": "module", | ||
"exports": { | ||
|
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,35 @@ | ||
import type { SVGProps } from 'react'; | ||
import { Ref, forwardRef } from 'react'; | ||
import type { IconProps } from '../share/props'; | ||
const IconCode = ( | ||
{ | ||
title = 'IconCode', | ||
titleId = 'CDS-IconCodeIcon', | ||
size = 20, | ||
color = '#363738', | ||
...props | ||
}: SVGProps<SVGSVGElement> & IconProps, | ||
ref: Ref<SVGSVGElement>, | ||
) => ( | ||
<svg | ||
width={size} | ||
height={size} | ||
fill="none" | ||
viewBox="0 0 20 20" | ||
color={color} | ||
ref={ref} | ||
aria-labelledby={titleId} | ||
{...props} | ||
> | ||
{title ? <title id={titleId}>{title}</title> : null} | ||
<path | ||
stroke="currentColor" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="M5.556 6.5 2 10l3.556 3.5m8.888-7L18 10l-3.556 3.5M11.778 3 8.222 17" | ||
/> | ||
</svg> | ||
); | ||
const ForwardRef = forwardRef(IconCode); | ||
export { ForwardRef as IconCode }; |
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,35 @@ | ||
import type { SVGProps } from 'react'; | ||
import { Ref, forwardRef } from 'react'; | ||
import type { IconProps } from '../share/props'; | ||
const IconCoins = ( | ||
{ | ||
title = 'IconCoins', | ||
titleId = 'CDS-IconCoinsIcon', | ||
size = 20, | ||
color = '#363738', | ||
...props | ||
}: SVGProps<SVGSVGElement> & IconProps, | ||
ref: Ref<SVGSVGElement>, | ||
) => ( | ||
<svg | ||
width={size} | ||
height={size} | ||
fill="none" | ||
viewBox="0 0 20 20" | ||
color={color} | ||
ref={ref} | ||
aria-labelledby={titleId} | ||
{...props} | ||
> | ||
{title ? <title id={titleId}>{title}</title> : null} | ||
<path | ||
stroke="currentColor" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="M4 6c0 .796.632 1.559 1.757 2.121S8.41 9 10 9s3.117-.316 4.243-.879C15.368 7.56 16 6.796 16 6M4 6c0-.796.632-1.559 1.757-2.121S8.41 3 10 3s3.117.316 4.243.879C15.368 4.44 16 5.204 16 6M4 6v4m12-4v4M4 10c0 1.657 2.687 3 6 3s6-1.343 6-3M4 10v4c0 1.657 2.687 3 6 3s6-1.343 6-3v-4" | ||
/> | ||
</svg> | ||
); | ||
const ForwardRef = forwardRef(IconCoins); | ||
export { ForwardRef as IconCoins }; |
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,35 @@ | ||
import type { SVGProps } from 'react'; | ||
import { Ref, forwardRef } from 'react'; | ||
import type { IconProps } from '../share/props'; | ||
const IconDownload = ( | ||
{ | ||
title = 'IconDownload', | ||
titleId = 'CDS-IconDownloadIcon', | ||
size = 20, | ||
color = '#363738', | ||
...props | ||
}: SVGProps<SVGSVGElement> & IconProps, | ||
ref: Ref<SVGSVGElement>, | ||
) => ( | ||
<svg | ||
width={size} | ||
height={size} | ||
fill="none" | ||
viewBox="0 0 20 20" | ||
color={color} | ||
ref={ref} | ||
aria-labelledby={titleId} | ||
{...props} | ||
> | ||
{title ? <title id={titleId}>{title}</title> : null} | ||
<path | ||
stroke="currentColor" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="M4 13.39v1.528c0 .406.158.795.44 1.082.28.287.662.448 1.06.448h9c.398 0 .78-.161 1.06-.448.282-.287.44-.676.44-1.082V13.39M6.25 9.353 10 13.177m0 0 3.75-3.824M10 13.177V4" | ||
/> | ||
</svg> | ||
); | ||
const ForwardRef = forwardRef(IconDownload); | ||
export { ForwardRef as IconDownload }; |
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,35 @@ | ||
import type { SVGProps } from 'react'; | ||
import { Ref, forwardRef } from 'react'; | ||
import type { IconProps } from '../share/props'; | ||
const IconReceipt = ( | ||
{ | ||
title = 'IconReceipt', | ||
titleId = 'CDS-IconReceiptIcon', | ||
size = 20, | ||
color = '#363738', | ||
...props | ||
}: SVGProps<SVGSVGElement> & IconProps, | ||
ref: Ref<SVGSVGElement>, | ||
) => ( | ||
<svg | ||
width={size} | ||
height={size} | ||
fill="none" | ||
viewBox="0 0 20 20" | ||
color={color} | ||
ref={ref} | ||
aria-labelledby={titleId} | ||
{...props} | ||
> | ||
{title ? <title id={titleId}>{title}</title> : null} | ||
<path | ||
stroke="currentColor" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="M7.429 6.889h5.142M7.43 10h5.142m-1.714 3.111h1.714M4 17V4.556c0-.413.18-.809.502-1.1A1.8 1.8 0 0 1 5.714 3h8.572c.454 0 .89.164 1.212.456.321.291.502.687.502 1.1V17H4" | ||
/> | ||
</svg> | ||
); | ||
const ForwardRef = forwardRef(IconReceipt); | ||
export { ForwardRef as IconReceipt }; |
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