@hashicorp/flight-icons 2.17.0 → 2.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/catalog.json +185 -5
- package/package.json +1 -1
- package/svg/aws-cdk-16.svg +1 -0
- package/svg/aws-cdk-24.svg +1 -0
- package/svg/aws-cdk-color-16.svg +1 -0
- package/svg/aws-cdk-color-24.svg +1 -0
- package/svg/index.js +1 -1
- package/svg/jfrog-16.svg +1 -0
- package/svg/jfrog-24.svg +1 -0
- package/svg/jfrog-color-16.svg +1 -0
- package/svg/jfrog-color-24.svg +1 -0
- package/svg/jira-16.svg +1 -0
- package/svg/jira-24.svg +1 -0
- package/svg/jira-color-16.svg +1 -0
- package/svg/jira-color-24.svg +1 -0
- package/svg/opa-24.svg +1 -1
- package/svg/opa-color-24.svg +1 -1
- package/svg/twitter-x-16.svg +1 -0
- package/svg/twitter-x-24.svg +1 -0
- package/svg/twitter-x-color-16.svg +1 -0
- package/svg/twitter-x-color-24.svg +1 -0
- package/svg/vercel-16.svg +1 -0
- package/svg/vercel-24.svg +1 -0
- package/svg/vercel-color-16.svg +1 -0
- package/svg/vercel-color-24.svg +1 -0
- package/svg-react/aws-cdk-16.tsx +35 -0
- package/svg-react/aws-cdk-24.tsx +35 -0
- package/svg-react/aws-cdk-color-16.tsx +35 -0
- package/svg-react/aws-cdk-color-24.tsx +35 -0
- package/svg-react/index.ts +20 -0
- package/svg-react/jfrog-16.tsx +33 -0
- package/svg-react/jfrog-24.tsx +33 -0
- package/svg-react/jfrog-color-16.tsx +33 -0
- package/svg-react/jfrog-color-24.tsx +33 -0
- package/svg-react/jira-16.tsx +33 -0
- package/svg-react/jira-24.tsx +33 -0
- package/svg-react/jira-color-16.tsx +65 -0
- package/svg-react/jira-color-24.tsx +65 -0
- package/svg-react/opa-24.tsx +1 -1
- package/svg-react/opa-color-24.tsx +1 -1
- package/svg-react/twitter-x-16.tsx +33 -0
- package/svg-react/twitter-x-24.tsx +33 -0
- package/svg-react/twitter-x-color-16.tsx +33 -0
- package/svg-react/twitter-x-color-24.tsx +33 -0
- package/svg-react/vercel-16.tsx +30 -0
- package/svg-react/vercel-24.tsx +30 -0
- package/svg-react/vercel-color-16.tsx +30 -0
- package/svg-react/vercel-color-24.tsx +30 -0
- package/svg-sprite/svg-sprite-module.js +1 -1
package/svg-react/index.ts
CHANGED
|
@@ -26,6 +26,10 @@ export { IconAws24 } from './aws-24';
|
|
|
26
26
|
export { IconAws16 } from './aws-16';
|
|
27
27
|
export { IconAwsColor24 } from './aws-color-24';
|
|
28
28
|
export { IconAwsColor16 } from './aws-color-16';
|
|
29
|
+
export { IconAwsCdk24 } from './aws-cdk-24';
|
|
30
|
+
export { IconAwsCdk16 } from './aws-cdk-16';
|
|
31
|
+
export { IconAwsCdkColor24 } from './aws-cdk-color-24';
|
|
32
|
+
export { IconAwsCdkColor16 } from './aws-cdk-color-16';
|
|
29
33
|
export { IconAwsCloudwatch24 } from './aws-cloudwatch-24';
|
|
30
34
|
export { IconAwsCloudwatch16 } from './aws-cloudwatch-16';
|
|
31
35
|
export { IconAwsCloudwatchColor24 } from './aws-cloudwatch-color-24';
|
|
@@ -134,6 +138,14 @@ export { IconInfracost24 } from './infracost-24';
|
|
|
134
138
|
export { IconInfracost16 } from './infracost-16';
|
|
135
139
|
export { IconInfracostColor24 } from './infracost-color-24';
|
|
136
140
|
export { IconInfracostColor16 } from './infracost-color-16';
|
|
141
|
+
export { IconJfrog24 } from './jfrog-24';
|
|
142
|
+
export { IconJfrog16 } from './jfrog-16';
|
|
143
|
+
export { IconJfrogColor24 } from './jfrog-color-24';
|
|
144
|
+
export { IconJfrogColor16 } from './jfrog-color-16';
|
|
145
|
+
export { IconJira24 } from './jira-24';
|
|
146
|
+
export { IconJira16 } from './jira-16';
|
|
147
|
+
export { IconJiraColor24 } from './jira-color-24';
|
|
148
|
+
export { IconJiraColor16 } from './jira-color-16';
|
|
137
149
|
export { IconKubernetes24 } from './kubernetes-24';
|
|
138
150
|
export { IconKubernetes16 } from './kubernetes-16';
|
|
139
151
|
export { IconKubernetesColor24 } from './kubernetes-color-24';
|
|
@@ -210,6 +222,10 @@ export { IconTwitter24 } from './twitter-24';
|
|
|
210
222
|
export { IconTwitter16 } from './twitter-16';
|
|
211
223
|
export { IconTwitterColor24 } from './twitter-color-24';
|
|
212
224
|
export { IconTwitterColor16 } from './twitter-color-16';
|
|
225
|
+
export { IconTwitterX24 } from './twitter-x-24';
|
|
226
|
+
export { IconTwitterX16 } from './twitter-x-16';
|
|
227
|
+
export { IconTwitterXColor24 } from './twitter-x-color-24';
|
|
228
|
+
export { IconTwitterXColor16 } from './twitter-x-color-16';
|
|
213
229
|
export { IconVantage24 } from './vantage-24';
|
|
214
230
|
export { IconVantage16 } from './vantage-16';
|
|
215
231
|
export { IconVantageColor24 } from './vantage-color-24';
|
|
@@ -218,6 +234,10 @@ export { IconVenafi24 } from './venafi-24';
|
|
|
218
234
|
export { IconVenafi16 } from './venafi-16';
|
|
219
235
|
export { IconVenafiColor24 } from './venafi-color-24';
|
|
220
236
|
export { IconVenafiColor16 } from './venafi-color-16';
|
|
237
|
+
export { IconVercel24 } from './vercel-24';
|
|
238
|
+
export { IconVercel16 } from './vercel-16';
|
|
239
|
+
export { IconVercelColor24 } from './vercel-color-24';
|
|
240
|
+
export { IconVercelColor16 } from './vercel-color-16';
|
|
221
241
|
export { IconVmware24 } from './vmware-24';
|
|
222
242
|
export { IconVmware16 } from './vmware-16';
|
|
223
243
|
export { IconVmwareColor24 } from './vmware-color-24';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconJfrog16 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={16}
|
|
17
|
+
height={16}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill={color}
|
|
28
|
+
d="M7.271 10.036l-.686.197c.06.18.108.501.108.934v2.128h.77v-2.251c.143-.18.299-.266.465-.266a.4.4 0 01.222.061l.21-.735a.554.554 0 00-.288-.068.643.643 0 00-.25.05 1.403 1.403 0 00-.437.4.895.895 0 00-.114-.45zM4.62 8.985h-.083v4.303h.8v-1.905h1.01v-.71h-1.01v-.99h1.26l.048-.377a12.405 12.405 0 01-2.025-.321zm-1.87 4.878l.37.446c.36-.149.808-.482.927-1.015.042-.173.054-.284.054-.847V8.992h-.81v3.549c0 .464-.016.637-.076.798a1.37 1.37 0 01-.466.526l.001-.002zm7.27-2.182c0 .754-.143 1.076-.471 1.076a.413.413 0 01-.232-.07.435.435 0 01-.157-.19c-.06-.16-.095-.434-.095-.804 0-.316.03-.538.077-.711.06-.198.21-.322.395-.322.137 0 .256.062.328.167.108.149.155.426.155.854zm.472 1.236c.251-.309.365-.687.365-1.23 0-.514-.101-.866-.334-1.163a1.182 1.182 0 00-.992-.476c-.789 0-1.314.661-1.314 1.663s.52 1.645 1.314 1.645c.448.006.74-.166.96-.439zm2.187-1.78c0 .29-.168.45-.466.45-.27 0-.448-.128-.448-.45 0-.298.167-.47.454-.47.287 0 .46.173.46.47zm1.356-.681l-.317-.525c-.179.174-.394.272-.603.272-.096 0-.15-.013-.359-.068a1.728 1.728 0 00-.525-.081c-.748 0-1.23.42-1.23 1.076 0 .47.202.767.627.884-.174.043-.359.136-.443.241a.454.454 0 00-.09.292c0 .098.024.185.06.26.04.067.098.121.168.153.137.056.358.093.699.1.179 0 .286.005.322.005.21.013.317.05.4.093.078.05.138.161.138.285a.396.396 0 01-.185.321c-.102.074-.27.106-.484.106-.352 0-.55-.136-.55-.39 0-.112.012-.136.036-.204h-.705a.668.668 0 00-.066.321c0 .217.078.402.24.563.262.266.693.34 1.105.34.454 0 .896-.111 1.152-.408a.934.934 0 00.233-.656c0-.284-.077-.5-.25-.68-.204-.203-.437-.278-.884-.284l-.413-.005c-.077 0-.125-.032-.125-.075 0-.086.107-.162.304-.26a.95.95 0 00.114.005c.621 0 1.075-.395 1.075-.945 0-.21-.06-.371-.173-.52.096.013.125.019.197.019.203 0 .364-.067.532-.235zM4.416 5.244c-.955.241-1.606.717-1.606 1.262 0 .34.25.648.663.89a1.238 1.238 0 01-.191-.65c.005-.562.43-1.087 1.134-1.502zM14.5 7.377c0-.359-.215-.686-.574-.958.03.112.054.222.054.334 0 1.02-1.38 1.898-3.339 2.263.221.024.448.037.687.037 1.75-.006 3.172-.754 3.172-1.676zm-1.129-.556c0-.378-.31-.723-.842-1.008a.786.786 0 01.191.495c0 .908-1.863 1.644-4.17 1.644-2.3 0-4.17-.735-4.17-1.644 0-.118.03-.229.09-.334-.37.253-.58.543-.58.853 0 .983 2.122 1.78 4.738 1.78 2.617 0 4.743-.81 4.743-1.786zm-2.067-.049c-.967.643-3.943.89-5.221.062-1.004-.65-.657-1.682-3.53-3.945-.376-.297.072-.612.352-.408.28.204.024.254.592.84 1.146 1.188 1.134.118 1.314.527.382.846 1.218 1.7 1.218 1.7.843.569 1.512.692 2.754-.18.789-.55.466.878 2.396-.154.704-.377.675-.123 1.392-1.157.297-.426.866.328.22.433-.256.044-.693.334-.877.792-.27.686-.156 1.193-.61 1.49zM5.94 5.028c-.239-.111-.49-.532-.585-.698.268-.273.16-.723.005-.971-.149-.247-.334-.18-.53-.408-.205-.23.076-.822.333-.365.962 1.713 1.595 1.002 2.378.897.753-.1 1.422.327 1.625-.878.035-.198.22-.241.239.08.017.328.137 1.119.55 1.218.411.105.746-.1.842-.21.095-.112.149-.1.19.185.043.279.15.668.73.235 1.188-.878.848-1.218 1.313-1.446.263-.13.681.29.079.605-.86.452-.95 1.008-1.494 1.36-.914.594-.634.025-2.103-.191-.567-.08-.747.569-1.189.383-1.01-.433-1.721-.346-2.383.204zm3.184-3.171c.036.26.077.253.167.272.09.024.203-.124.203-.26.006-.142-.06-.229-.19-.222-.138.005-.186.074-.18.21zm4.42.463c.108.105.394.037.46-.043.174-.198.18-.315.09-.452-.09-.13-.275-.11-.46.032-.185.142-.15.407-.09.463zm-.078 1.311c-.089.124-.095.217-.03.284.072.075.216.136.318.057.1-.087.1-.211.018-.316-.09-.112-.21-.112-.306-.025zM4.4 2.085c.137.043.203.18.316.025.06-.075.065-.18-.012-.292-.048-.067-.275-.118-.37-.018-.096.1-.005.26.065.285H4.4zm-2.803-.087c.251.161.412.402.604.185.065-.073.143-.203.005-.463-.1-.192-.428-.266-.542-.192-.12.068-.263.347-.065.47h-.002zm2.313 1.23c.077.087.215.08.298.032.078-.05.066-.18-.012-.29-.047-.07-.19-.106-.287 0-.095.104-.052.196 0 .259z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconJfrog24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill={color}
|
|
28
|
+
d="M10.991 14.818l-.95.274c.082.249.15.694.15 1.293v2.946h1.065v-3.117c.199-.248.414-.368.645-.368.117 0 .208.026.307.086l.29-1.019a.766.766 0 00-.398-.095.89.89 0 00-.348.07c-.198.102-.447.334-.603.555a1.24 1.24 0 00-.158-.625zM7.32 13.364h-.115v5.958h1.107v-2.637H9.71V15.7H8.312v-1.37h1.745l.066-.521a17.172 17.172 0 01-2.803-.445zm-2.589 6.753l.513.618c.497-.205 1.118-.667 1.283-1.405.057-.239.075-.393.075-1.172v-4.786H5.48v4.914c0 .643-.024.882-.106 1.105-.108.248-.365.54-.645.728l.001-.002zm10.066-3.02c0 1.044-.197 1.49-.653 1.49a.572.572 0 01-.32-.098.601.601 0 01-.217-.263c-.083-.222-.132-.6-.132-1.113 0-.437.04-.745.107-.984.082-.274.29-.446.546-.446.19 0 .355.086.454.232.15.205.215.59.215 1.181zm.653 1.711c.349-.427.506-.95.506-1.703 0-.712-.14-1.199-.463-1.61-.348-.445-.795-.66-1.373-.66-1.092 0-1.82.916-1.82 2.304 0 1.387.72 2.277 1.82 2.277.62.008 1.024-.23 1.33-.608zm3.029-2.466c0 .404-.233.625-.645.625-.373 0-.622-.178-.622-.625 0-.41.233-.65.629-.65.397 0 .637.24.637.65zm1.877-.941l-.439-.728c-.248.24-.545.377-.835.377-.133 0-.207-.017-.496-.093a2.386 2.386 0 00-.728-.113c-1.035 0-1.704.582-1.704 1.49 0 .65.282 1.062.869 1.224-.24.06-.497.189-.612.334a.627.627 0 00-.125.403c0 .137.033.257.083.36.054.094.135.169.232.213.19.078.495.13.968.138.247 0 .396.008.446.008.29.017.438.07.554.128.108.07.19.223.19.395 0 .17-.099.341-.256.445-.14.102-.372.146-.67.146-.488 0-.76-.19-.76-.54 0-.155.016-.189.049-.283h-.976a.925.925 0 00-.091.445c0 .3.108.557.331.78.364.367.96.47 1.53.47.628 0 1.24-.154 1.596-.564.223-.257.322-.54.322-.909 0-.393-.107-.693-.347-.94-.281-.283-.603-.386-1.224-.395l-.57-.008c-.108 0-.175-.043-.175-.103 0-.12.15-.223.423-.36.082.008.107.008.157.008.86 0 1.488-.547 1.488-1.31a1.12 1.12 0 00-.24-.719c.133.017.174.026.273.026.282 0 .505-.093.737-.325zM7.038 8.184c-1.323.334-2.224.993-2.224 1.747 0 .47.347.898.918 1.232a1.715 1.715 0 01-.265-.898c.007-.78.595-1.507 1.571-2.08zM21 11.137c0-.497-.298-.95-.794-1.326.041.155.075.308.075.462 0 1.413-1.911 2.628-4.624 3.133.306.034.62.052.951.052C19.03 13.45 21 12.414 21 11.138zm-1.563-.77c0-.522-.43-1.001-1.166-1.396.172.215.264.446.264.686 0 1.258-2.58 2.277-5.773 2.277-3.184 0-5.773-1.019-5.773-2.277 0-.163.04-.317.123-.463-.512.351-.802.753-.802 1.182 0 1.36 2.937 2.465 6.56 2.465 3.623 0 6.567-1.121 6.567-2.474zm-2.862-.067c-1.34.89-5.46 1.232-7.23.085-1.389-.899-.909-2.329-4.888-5.462-.52-.411.1-.848.489-.565.388.283.033.352.819 1.164 1.587 1.645 1.57.163 1.819.729.53 1.172 1.688 2.353 1.688 2.353 1.166.788 2.092.959 3.813-.248 1.091-.762.644 1.216 3.317-.214.975-.522.934-.17 1.926-1.601.413-.59 1.2.454.306.6-.355.06-.96.462-1.215 1.095-.372.95-.216 1.652-.844 2.064zM9.147 7.885c-.33-.154-.678-.737-.81-.967.372-.377.223-1.001.008-1.344-.207-.342-.463-.249-.735-.565-.282-.318.106-1.138.462-.505 1.332 2.372 2.208 1.386 3.293 1.241 1.042-.137 1.968.454 2.25-1.215.049-.274.305-.334.33.11.024.455.19 1.55.761 1.687.57.146 1.034-.137 1.166-.29.132-.156.206-.138.265.256.058.385.206.925 1.009.326 1.646-1.216 1.174-1.687 1.82-2.003.363-.18.942.402.107.838-1.19.625-1.315 1.395-2.067 1.883-1.267.822-.878.035-2.912-.265-.786-.111-1.035.788-1.646.53-1.398-.598-2.384-.479-3.301.283zm4.41-4.391c.049.36.107.35.231.377.124.034.281-.171.281-.36.008-.197-.082-.317-.264-.308-.191.008-.257.102-.249.291zm6.12.642c.15.145.545.051.637-.06.24-.274.247-.437.123-.625-.123-.18-.38-.154-.637.043-.256.196-.207.564-.124.642zm-.108 1.815c-.124.17-.132.3-.041.394.099.102.298.187.439.077.14-.12.14-.292.024-.437-.124-.155-.29-.155-.422-.034zM7.014 3.81c.19.06.28.248.438.034.083-.103.09-.248-.017-.404-.066-.093-.38-.163-.512-.024-.133.137-.008.36.09.394h.001zm-3.88-.12c.347.222.57.556.835.256.09-.102.198-.282.008-.641-.14-.266-.594-.368-.751-.266-.165.093-.364.48-.091.65h-.001zm3.201 1.704c.108.12.298.11.414.042.108-.068.09-.248-.017-.402-.066-.095-.265-.146-.397 0-.132.145-.073.273 0 .36z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconJfrogColor16 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={16}
|
|
17
|
+
height={16}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill="#40BE46"
|
|
28
|
+
d="M7.274 10.032l-.684.198c.063.18.108.503.108.931v2.123h.765v-2.247c.142-.18.296-.267.467-.267.085 0 .148.019.223.062l.21-.732a.55.55 0 00-.285-.068.632.632 0 00-.251.05 1.36 1.36 0 00-.433.403 1.088 1.088 0 00-.12-.453zM4.621 8.983h-.084v4.3h.799v-1.905h1.009v-.707h-1.01v-.987h1.26l.05-.376a13.032 13.032 0 01-2.024-.325zM2.75 13.854l.37.448c.36-.15.81-.485.924-1.012.04-.174.057-.286.057-.844V8.993h-.81v3.546c0 .465-.016.64-.08.794a1.333 1.333 0 01-.461.521zm7.272-2.178c0 .751-.143 1.074-.473 1.074a.42.42 0 01-.388-.26c-.063-.162-.097-.435-.097-.801 0-.317.028-.54.08-.708.062-.198.21-.322.393-.322.137 0 .256.061.33.167.103.143.155.422.155.85zm.467 1.235c.251-.31.365-.683.365-1.229 0-.515-.103-.862-.336-1.16a1.183 1.183 0 00-.993-.478c-.786 0-1.31.664-1.31 1.663 0 1 .518 1.645 1.31 1.645.451 0 .742-.168.964-.44zm2.19-1.781c0 .292-.166.453-.468.453-.268 0-.45-.13-.45-.453 0-.298.165-.472.456-.472.29 0 .462.174.462.472zm1.35-.677l-.318-.527a.881.881 0 01-.604.273c-.098 0-.149-.012-.36-.068a1.727 1.727 0 00-.524-.08c-.748 0-1.232.421-1.232 1.073 0 .472.205.763.627.881-.17.044-.36.137-.444.242a.441.441 0 00-.092.292c0 .1.023.186.057.26.04.07.097.125.166.155.136.057.36.094.7.1.178 0 .286.006.326.006.211.012.32.05.399.094.08.049.137.16.137.285a.408.408 0 01-.183.323c-.102.074-.268.105-.484.105-.354 0-.547-.137-.547-.391 0-.112.011-.137.033-.205h-.706c-.029.062-.069.15-.069.323 0 .217.08.403.24.565.262.266.69.341 1.106.341.456 0 .895-.112 1.152-.41a.948.948 0 00.233-.657c0-.286-.08-.503-.25-.677-.206-.205-.44-.28-.884-.285l-.411-.007c-.08 0-.125-.03-.125-.074 0-.087.108-.161.302-.26.057.006.08.006.114.006.622 0 1.078-.397 1.078-.944a.81.81 0 00-.172-.521c.097.012.126.019.2.019.21 0 .37-.069.536-.236zM4.42 5.248c-.956.241-1.605.714-1.605 1.258 0 .337.25.646.665.89a1.246 1.246 0 01-.193-.648c0-.566.424-1.087 1.133-1.5zM14.5 7.373c0-.356-.213-.687-.574-.958.032.108.05.22.05.333 0 1.021-1.38 1.896-3.336 2.258.221.026.451.04.687.04 1.752 0 3.173-.749 3.173-1.672zm-1.127-.555c0-.375-.311-.722-.84-1.009.124.155.191.32.191.492 0 .906-1.866 1.64-4.168 1.64-2.301 0-4.168-.734-4.168-1.64 0-.115.03-.227.088-.335-.37.253-.58.543-.58.852 0 .98 2.12 1.775 4.738 1.775 2.617 0 4.739-.795 4.739-1.775zm-2.07-.044c-.966.645-3.94.889-5.222.061-1.004-.649-.66-1.677-3.531-3.944-.376-.296.07-.61.35-.409.282.201.024.255.592.842 1.145 1.186 1.134.12 1.315.523.38.848 1.22 1.701 1.22 1.701.841.566 1.512.69 2.752-.178.787-.55.465.875 2.394-.152.704-.375.675-.126 1.39-1.157.296-.428.864.329.22.434-.257.042-.691.333-.878.793-.263.68-.15 1.183-.602 1.486zM5.942 5.03c-.239-.109-.488-.529-.586-.697.267-.27.159-.722.008-.97-.15-.249-.333-.178-.533-.406-.2-.228.075-.822.332-.365.962 1.71 1.593.999 2.38.897.753-.098 1.42.327 1.624-.876.034-.197.219-.244.237.081.02.325.138 1.118.552 1.22.415.102.744-.1.841-.213.097-.112.148-.096.19.183.043.28.148.665.73.235 1.19-.878.85-1.218 1.313-1.444.263-.128.678.29.078.604-.859.449-.95 1.006-1.492 1.36-.912.596-.633.024-2.1-.192-.565-.083-.747.568-1.188.38-1.018-.434-1.727-.351-2.386.203zm3.18-3.172c.033.257.075.25.164.275.089.023.201-.121.205-.261.004-.14-.058-.23-.192-.224-.134.005-.182.075-.177.21zm4.421.468c.107.108.392.035.459-.042.17-.198.176-.317.088-.45-.088-.132-.274-.108-.458.03s-.15.4-.089.462zm-.08 1.306c-.092.126-.094.216-.03.285.07.074.215.139.318.053.104-.085.104-.209.016-.318-.089-.109-.209-.109-.304-.02zM4.4 2.09c.14.044.2.179.319.025.058-.076.064-.176-.013-.29-.05-.07-.276-.118-.373-.018-.096.101-.008.259.067.283zm-2.804-.087c.25.159.415.4.603.185.064-.072.143-.207.006-.466-.1-.19-.429-.267-.545-.194-.116.072-.258.352-.064.475zm2.315 1.229c.08.085.215.078.296.032.08-.047.064-.176-.013-.29-.049-.07-.193-.103-.29-.002-.096.1-.049.2.007.26z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconJfrogColor24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill="#40BE46"
|
|
28
|
+
d="M10.995 14.813l-.947.275c.086.25.15.696.15 1.29v2.938h1.058v-3.11c.197-.25.41-.37.647-.37.118 0 .205.026.308.086l.292-1.014a.761.761 0 00-.395-.095.876.876 0 00-.348.07c-.197.102-.45.334-.6.558a1.507 1.507 0 00-.165-.628zm-3.674-1.452h-.116v5.955h1.106v-2.638h1.397v-.98H8.311v-1.366h1.745l.067-.52a18.045 18.045 0 01-2.802-.451zm-2.59 6.745l.513.62c.497-.207 1.12-.671 1.28-1.402.054-.24.078-.395.078-1.168v-4.781H5.48v4.91c0 .644-.024.885-.11 1.1-.103.24-.356.532-.64.721zm10.068-3.016c0 1.04-.197 1.486-.655 1.486a.58.58 0 01-.537-.36c-.086-.224-.134-.602-.134-1.108 0-.439.04-.748.11-.98.087-.275.293-.447.545-.447a.55.55 0 01.458.232c.142.198.213.585.213 1.177zm.648 1.71c.347-.43.505-.945.505-1.701 0-.714-.143-1.195-.466-1.607-.347-.447-.797-.662-1.374-.662-1.09 0-1.816.92-1.816 2.303 0 1.384.719 2.277 1.816 2.277.624 0 1.027-.232 1.335-.61zm3.031-2.466c0 .404-.229.627-.647.627-.371 0-.624-.18-.624-.627 0-.412.229-.653.632-.653.402 0 .64.24.64.653zm1.871-.937l-.442-.73c-.244.24-.545.378-.837.378-.134 0-.205-.018-.497-.094a2.39 2.39 0 00-.727-.112c-1.034 0-1.704.584-1.704 1.487 0 .653.284 1.057.868 1.22-.237.06-.498.189-.616.335a.61.61 0 00-.127.404c0 .137.032.258.08.36a.515.515 0 00.229.215c.19.078.497.13.97.138.245 0 .396.008.45.008.293.017.443.069.553.13.11.068.19.223.19.395a.564.564 0 01-.253.447c-.142.102-.371.145-.67.145-.49 0-.759-.188-.759-.54 0-.156.016-.19.047-.285h-.978c-.04.086-.095.207-.095.448 0 .3.11.558.332.781.363.37.955.473 1.531.473.632 0 1.24-.155 1.595-.567.22-.258.323-.541.323-.91 0-.396-.11-.697-.347-.937-.284-.284-.607-.387-1.224-.396l-.568-.008c-.11 0-.174-.043-.174-.104 0-.12.15-.223.419-.36a1.2 1.2 0 00.158.009c.86 0 1.492-.55 1.492-1.307a1.12 1.12 0 00-.237-.722c.134.018.174.026.276.026.292 0 .513-.095.742-.327zM7.042 8.19c-1.324.335-2.223.99-2.223 1.743 0 .466.345.894.92 1.232a1.725 1.725 0 01-.266-.898c0-.784.586-1.504 1.569-2.077zM21 11.133c0-.494-.294-.952-.795-1.328.045.15.07.304.07.461 0 1.415-1.91 2.625-4.62 3.127.306.036.625.055.952.055 2.426 0 4.393-1.036 4.393-2.315zm-1.561-.77c0-.519-.43-1-1.163-1.396.172.214.265.443.265.681 0 1.254-2.584 2.271-5.77 2.271-3.188 0-5.772-1.017-5.772-2.27a.99.99 0 01.122-.466c-.512.35-.804.753-.804 1.18 0 1.358 2.937 2.459 6.56 2.459 3.625 0 6.562-1.101 6.562-2.46v.001zm-2.866-.06c-1.337.893-5.456 1.23-7.23.084-1.39-.898-.913-2.323-4.89-5.46-.52-.41.097-.846.486-.567.39.279.033.353.819 1.166 1.586 1.641 1.57.166 1.821.724.527 1.173 1.69 2.355 1.69 2.355 1.164.784 2.093.955 3.81-.246 1.09-.763.644 1.211 3.315-.211.974-.519.933-.175 1.923-1.602.411-.592 1.197.455.306.601-.356.058-.958.461-1.216 1.098-.365.941-.207 1.638-.834 2.057zM9.15 7.888c-.33-.15-.676-.732-.81-.965.369-.374.22-1 .01-1.344-.208-.343-.46-.246-.738-.561-.277-.316.104-1.139.46-.506 1.332 2.369 2.206 1.383 3.294 1.242 1.044-.136 1.967.453 2.25-1.213.046-.272.302-.338.329.113.026.45.19 1.547.763 1.689.575.141 1.03-.14 1.165-.295.134-.155.204-.133.264.253.058.387.204.92 1.01.326 1.648-1.216 1.176-1.687 1.817-2 .365-.177.94.402.109.837-1.19.621-1.315 1.393-2.066 1.883-1.263.825-.877.033-2.909-.266-.782-.115-1.034.787-1.644.526-1.409-.601-2.392-.486-3.304.28zm4.403-4.391c.046.355.104.346.227.38.123.032.28-.168.285-.362.005-.195-.08-.317-.266-.31-.185.007-.252.104-.246.292zm6.122.647c.148.15.543.048.635-.058.237-.274.245-.44.123-.623s-.38-.15-.636.042c-.254.19-.206.554-.122.64v-.001zm-.11 1.809c-.128.174-.131.298-.041.394.096.103.296.192.44.073.142-.117.142-.288.02-.44-.122-.15-.288-.15-.42-.027zM7.014 3.815c.194.062.279.248.442.035.08-.105.088-.243-.018-.4-.068-.098-.382-.165-.516-.026-.133.14-.012.358.092.391zm-3.882-.12c.347.22.574.553.836.256.087-.099.197-.286.008-.645-.139-.262-.595-.37-.756-.269-.16.1-.357.488-.088.659zm3.205 1.701c.11.119.298.11.41.045.112-.065.089-.244-.018-.4-.068-.098-.268-.144-.401-.004-.134.139-.068.276.01.36z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconJira16 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={16}
|
|
17
|
+
height={16}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill={color}
|
|
28
|
+
d="M15.323 7.558L7.99 0 .677 7.536c-.236.243-.236.64 0 .906l4.589 4.73L7.989 16l7.334-7.558a.64.64 0 000-.884zM7.99 10.365L5.695 8l2.294-2.365L10.284 8l-2.295 2.365z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconJira24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill={color}
|
|
28
|
+
d="M22.252 11.392L11.985 1 1.748 11.362c-.33.334-.33.881 0 1.246l6.424 6.502L11.985 23l10.267-10.392a.87.87 0 000-1.216zm-10.267 3.86L8.773 12l3.212-3.251L15.197 12l-3.212 3.251z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconJiraColor16 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={16}
|
|
17
|
+
height={16}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill="#2684FF"
|
|
28
|
+
d="M15.323 7.558L8.633.663 7.989 0 2.971 5.171.677 7.536c-.236.243-.236.64 0 .906l4.589 4.73L7.989 16l5.018-5.171.086-.089 2.23-2.298a.64.64 0 000-.884zM7.99 10.365L5.695 8l2.294-2.365L10.284 8l-2.295 2.365z"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
fill="url(#jira-color-16__paint0_linear_4403_94)"
|
|
32
|
+
d="M7.99 5.635C6.487 4.088 6.487 1.57 7.967.022L2.95 5.193 5.673 8 7.99 5.635z"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fill="url(#jira-color-16__paint1_linear_4403_94)"
|
|
36
|
+
d="M10.284 8l-2.295 2.365C9.49 11.912 9.49 14.43 7.99 16l5.04-5.193L10.284 8z"
|
|
37
|
+
/>
|
|
38
|
+
<defs>
|
|
39
|
+
<linearGradient
|
|
40
|
+
id="jira-color-16__paint0_linear_4403_94"
|
|
41
|
+
x1={7.58}
|
|
42
|
+
x2={4.279}
|
|
43
|
+
y1={3.24}
|
|
44
|
+
y2={6.443}
|
|
45
|
+
gradientUnits="userSpaceOnUse"
|
|
46
|
+
>
|
|
47
|
+
<stop offset={0.176} stopColor="#0052CC" />
|
|
48
|
+
<stop offset={1} stopColor="#2684FF" />
|
|
49
|
+
</linearGradient>
|
|
50
|
+
<linearGradient
|
|
51
|
+
id="jira-color-16__paint1_linear_4403_94"
|
|
52
|
+
x1={8.428}
|
|
53
|
+
x2={11.722}
|
|
54
|
+
y1={12.726}
|
|
55
|
+
y2={9.53}
|
|
56
|
+
gradientUnits="userSpaceOnUse"
|
|
57
|
+
>
|
|
58
|
+
<stop offset={0.176} stopColor="#0052CC" />
|
|
59
|
+
<stop offset={1} stopColor="#2684FF" />
|
|
60
|
+
</linearGradient>
|
|
61
|
+
</defs>
|
|
62
|
+
</svg>
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
);
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconJiraColor24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill="#2684FF"
|
|
28
|
+
d="M22.252 11.392l-9.366-9.48L11.985 1 4.96 8.11l-3.212 3.252c-.33.334-.33.881 0 1.246l6.424 6.502L11.985 23l7.025-7.11.12-.122 3.122-3.16a.87.87 0 000-1.216zm-10.267 3.86L8.773 12l3.212-3.251L15.197 12l-3.212 3.251z"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
fill="url(#jira-color-24__paint0_linear_4403_89)"
|
|
32
|
+
d="M11.985 8.749c-2.101-2.127-2.101-5.592-.03-7.719L4.93 8.14 8.743 12l3.242-3.251z"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fill="url(#jira-color-24__paint1_linear_4403_89)"
|
|
36
|
+
d="M15.197 12l-3.212 3.251c2.102 2.127 2.102 5.592 0 7.749l7.055-7.14L15.197 12z"
|
|
37
|
+
/>
|
|
38
|
+
<defs>
|
|
39
|
+
<linearGradient
|
|
40
|
+
id="jira-color-24__paint0_linear_4403_89"
|
|
41
|
+
x1={11.412}
|
|
42
|
+
x2={6.872}
|
|
43
|
+
y1={5.455}
|
|
44
|
+
y2={9.94}
|
|
45
|
+
gradientUnits="userSpaceOnUse"
|
|
46
|
+
>
|
|
47
|
+
<stop offset={0.176} stopColor="#0052CC" />
|
|
48
|
+
<stop offset={1} stopColor="#2684FF" />
|
|
49
|
+
</linearGradient>
|
|
50
|
+
<linearGradient
|
|
51
|
+
id="jira-color-24__paint1_linear_4403_89"
|
|
52
|
+
x1={12.6}
|
|
53
|
+
x2={17.131}
|
|
54
|
+
y1={18.498}
|
|
55
|
+
y2={14.022}
|
|
56
|
+
gradientUnits="userSpaceOnUse"
|
|
57
|
+
>
|
|
58
|
+
<stop offset={0.176} stopColor="#0052CC" />
|
|
59
|
+
<stop offset={1} stopColor="#2684FF" />
|
|
60
|
+
</linearGradient>
|
|
61
|
+
</defs>
|
|
62
|
+
</svg>
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
);
|
package/svg-react/opa-24.tsx
CHANGED
|
@@ -25,7 +25,7 @@ export const IconOpa24 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
26
|
<g fill={color}>
|
|
27
27
|
<path d="M5.57 11.916a8.076 8.076 0 011.724-3.283c-.265-.21-1.315-1.078-1.364-1.76C5.854 5.755 6.904 2 6.904 2S3.73 6.109 3.51 7.77c-.175 1.302 1.83 3.889 2.042 4.151v-.005h.018zm12.913-.066v.01c0 .004.005.009.005.014.35-.45 2.167-2.859 2.001-4.105C20.27 6.11 17.096 2 17.096 2s1.05 3.756.974 4.872c-.045.654-1 1.47-1.32 1.728a7.979 7.979 0 011.733 3.25z" />
|
|
28
|
-
<path d="M18.483 11.854v-.01a8.041 8.041 0 00-1.732-3.249c-1.234-1.384-2.913-2.214-4.722-2.214v4.438h.005c.444.005.803.391.803.864 0 .057-.004.11-.013.162-.072.396-.395.
|
|
28
|
+
<path d="M18.483 11.854v-.01a8.041 8.041 0 00-1.732-3.249c-1.234-1.384-2.913-2.214-4.722-2.214v4.438h.005c.444.005.803.391.803.864 0 .057-.004.11-.013.162-.072.396-.395.697-.79.701h-.014v1.647l-.008 7.798h.157s1.705-2.625 2.625-3.374c1.077-.879 3.69-1.966 3.69-1.966v-4.744l.013-.005c-.005-.01-.005-.024-.01-.033 0-.005 0-.01-.004-.014z" />
|
|
29
29
|
<path d="M12.02 14.197v-1.646a.825.825 0 01-.776-.635.935.935 0 01-.032-.229c0-.477.364-.863.813-.863h.004V6.4c-1.818 0-3.5.835-4.735 2.233-.785.888-1.387 2.01-1.723 3.284h-.014v4.805s2.612 1.088 3.69 1.966c.893.73 2.616 3.312 2.616 3.312h.162v-.005h-.01l.005-7.798z" />
|
|
30
30
|
</g>
|
|
31
31
|
</svg>
|
|
@@ -29,7 +29,7 @@ export const IconOpaColor24 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
29
29
|
/>
|
|
30
30
|
<path
|
|
31
31
|
fill="#566366"
|
|
32
|
-
d="M18.483 11.854v-.01a8.041 8.041 0 00-1.732-3.249c-1.234-1.384-2.913-2.214-4.722-2.214v4.438h.005c.444.005.803.391.803.864 0 .057-.004.11-.013.162-.072.396-.395.
|
|
32
|
+
d="M18.483 11.854v-.01a8.041 8.041 0 00-1.732-3.249c-1.234-1.384-2.913-2.214-4.722-2.214v4.438h.005c.444.005.803.391.803.864 0 .057-.004.11-.013.162-.072.396-.395.697-.79.701h-.014v1.647l-.008 7.798h.157s1.705-2.625 2.625-3.374c1.077-.879 3.69-1.966 3.69-1.966v-4.744l.013-.005c-.005-.01-.005-.024-.01-.033 0-.005 0-.01-.004-.014z"
|
|
33
33
|
/>
|
|
34
34
|
<path
|
|
35
35
|
fill="#7D9199"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconTwitterX16 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={16}
|
|
17
|
+
height={16}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill={color}
|
|
28
|
+
d="M9.142 7.081L13.609 2H12.55L8.671 6.412 5.573 2H2l4.685 6.672L2 14h1.059l4.096-4.66L10.427 14H14L9.142 7.081zM3.44 2.78h1.626l7.485 10.476h-1.626L3.44 2.78z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconTwitterX24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill={color}
|
|
28
|
+
d="M13.712 10.622L20.413 3h-1.587l-5.819 6.618L8.36 3H3l7.027 10.007L3 21h1.588l6.144-6.989L15.64 21H21l-7.288-10.378zM5.16 4.17H7.6l11.226 15.713h-2.439L5.16 4.17z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconTwitterXColor16 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={16}
|
|
17
|
+
height={16}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill="#000"
|
|
28
|
+
d="M9.142 7.081L13.609 2H12.55L8.671 6.412 5.573 2H2l4.685 6.672L2 14h1.059l4.096-4.66L10.427 14H14L9.142 7.081zM3.44 2.78h1.626l7.485 10.476h-1.626L3.44 2.78z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconTwitterXColor24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill="#000"
|
|
28
|
+
d="M13.712 10.622L20.413 3h-1.587l-5.819 6.618L8.36 3H3l7.027 10.007L3 21h1.588l6.144-6.989L15.64 21H21l-7.288-10.378zM5.16 4.17H7.6l11.226 15.713h-2.439L5.16 4.17z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconVercel16 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={16}
|
|
17
|
+
height={16}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path fill={color} d="M8 2l6.5 10.833h-13L8 2z" />
|
|
27
|
+
</svg>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
);
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconVercel24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path fill={color} d="M12 3.75l9.25 15.417H2.75L12 3.75z" />
|
|
27
|
+
</svg>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
);
|