Skip to content

Commit 79feba1

Browse files
committed
icons
1 parent eb4a172 commit 79feba1

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

apps/docs/components/icons.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4045,6 +4045,9 @@ export function AsanaIcon(props: SVGProps<SVGSVGElement>) {
40454045
}
40464046

40474047
export function PipedriveIcon(props: SVGProps<SVGSVGElement>) {
4048+
const id = useId()
4049+
const pathId = `${id}-path`
4050+
const maskId = `${id}-mask`
40484051
return (
40494052
<svg
40504053
{...props}
@@ -4058,7 +4061,7 @@ export function PipedriveIcon(props: SVGProps<SVGSVGElement>) {
40584061
<defs>
40594062
<path
40604063
d='M59.6807,81.1772 C59.6807,101.5343 70.0078,123.4949 92.7336,123.4949 C109.5872,123.4949 126.6277,110.3374 126.6277,80.8785 C126.6277,55.0508 113.232,37.7119 93.2944,37.7119 C77.0483,37.7119 59.6807,49.1244 59.6807,81.1772 Z M101.3006,0 C142.0482,0 169.4469,32.2728 169.4469,80.3126 C169.4469,127.5978 140.584,160.60942 99.3224,160.60942 C79.6495,160.60942 67.0483,152.1836 60.4595,146.0843 C60.5063,147.5305 60.5374,149.1497 60.5374,150.8788 L60.5374,215 L18.32565,215 L18.32565,44.157 C18.32565,41.6732 17.53126,40.8873 15.07021,40.8873 L0.5531,40.8873 L0.5531,3.4741 L35.9736,3.4741 C52.282,3.4741 56.4564,11.7741 57.2508,18.1721 C63.8708,10.7524 77.5935,0 101.3006,0 Z'
4061-
id='path-1'
4064+
id={pathId}
40624065
/>
40634066
</defs>
40644067
<g
@@ -4069,10 +4072,10 @@ export function PipedriveIcon(props: SVGProps<SVGSVGElement>) {
40694072
fillRule='evenodd'
40704073
>
40714074
<g transform='translate(67.000000, 44.000000)'>
4072-
<mask id='mask-2' fill='white'>
4073-
<use href='#path-1' />
4075+
<mask id={maskId} fill='white'>
4076+
<use href={`#${pathId}`} />
40744077
</mask>
4075-
<use id='Clip-5' fill='#FFFFFF' xlinkHref='#path-1' />
4078+
<use fill='#FFFFFF' xlinkHref={`#${pathId}`} />
40764079
</g>
40774080
</g>
40784081
</svg>

0 commit comments

Comments
 (0)