Update build artifacts

This commit is contained in:
lucaburgio 2022-04-02 09:26:09 +00:00 committed by GitHub Actions
parent 13ecf2569d
commit d427521799
70 changed files with 2356 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,45 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgArcade(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M11 8.5L9.8 9l-7.448 3.386a.6.6 0 00-.352.546v.136a.6.6 0 00.352.546l8.82 4.01a2 2 0 001.656 0l8.82-4.01a.6.6 0 00.352-.546v-.136a.6.6 0 00-.352-.546L14.2 9 13 8.5"
stroke="currentColor"
/>
<Path
d="M22 13v4.112a.6.6 0 01-.354.547l-8.825 3.972a2 2 0 01-1.642 0l-8.825-3.972A.6.6 0 012 17.112V13"
stroke="currentColor"
/>
<Path
d="M12 8a3 3 0 110-6 3 3 0 010 6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path d="M11 8v5a1 1 0 001 1v0a1 1 0 001-1V8" stroke="currentColor" />
<Path
d="M16 13h1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgArcade);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgBehance(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M8.197 11.217c5.07 0 5.07 6.783 0 6.783H2v-6.783m6.197 0H2m6.197 0c5.07 0 5.07-6.217 0-6.217H2v6.217M18 9c-2.21 0-4 2.015-4 4.5h8c0-2.485-1.79-4.5-4-4.5zM14 13.5c0 2.485 1.79 4.5 4 4.5 2.755 0 3.5-2 3.5-2M20.5 6h-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBehance);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgBehanceSquared(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M21 8v8a5 5 0 01-5 5H8a5 5 0 01-5-5V8a5 5 0 015-5h8a5 5 0 015 5z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M9.099 11.826c2.535 0 2.535 4.174 0 4.174H6v-4.174m3.099 0H6m3.099 0c2.535 0 2.535-3.826 0-3.826H6v3.826M15.5 11a2.5 2.5 0 00-2.5 2.5h5a2.5 2.5 0 00-2.5-2.5zM13 13.5a2.5 2.5 0 002.5 2.5c.928 0 1.49-.322 1.813-.62M17 8.5h-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBehanceSquared);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgClipboardCheck(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M8.5 4H6a2 2 0 00-2 2v14a2 2 0 002 2h6M15.5 4H18a2 2 0 012 2v9"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M8 6.4V4.5a.5.5 0 01.5-.5c.276 0 .504-.224.552-.496C9.2 2.652 9.774 1 12 1s2.8 1.652 2.948 2.504c.048.272.276.496.552.496a.5.5 0 01.5.5v1.9a.6.6 0 01-.6.6H8.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M15.5 20.5l2 2 5-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgClipboardCheck);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgCompass(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M10.586 10.586L16.95 7.05l-3.536 6.364L7.05 16.95l3.536-6.364z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCompass);
export default ForwardRef;

View file

@ -9,15 +9,15 @@ function SvgDialpad(
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M6 7a1 1 0 110-2 1 1 0 010 2zM12 7a1 1 0 110-2 1 1 0 010 2zM18 7a1 1 0 110-2 1 1 0 010 2zM6 13a1 1 0 110-2 1 1 0 010 2zM12 13a1 1 0 110-2 1 1 0 010 2zM18 13a1 1 0 110-2 1 1 0 010 2zM12 19a1 1 0 110-2 1 1 0 010 2z"
d="M5.5 5a.5.5 0 110-1 .5.5 0 010 1zM5.5 10a.5.5 0 110-1 .5.5 0 010 1zM5.5 15a.5.5 0 110-1 .5.5 0 010 1zM12 5a.5.5 0 110-1 .5.5 0 010 1zM12 10a.5.5 0 110-1 .5.5 0 010 1zM12 15a.5.5 0 110-1 .5.5 0 010 1zM12 20a.5.5 0 110-1 .5.5 0 010 1zM18.5 5a.5.5 0 110-1 .5.5 0 010 1zM18.5 10a.5.5 0 110-1 .5.5 0 010 1zM18.5 15a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"

View file

@ -0,0 +1,35 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDiceFive(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<Path
d="M7.5 8a.5.5 0 110-1 .5.5 0 010 1zM16.5 8a.5.5 0 110-1 .5.5 0 010 1zM12 12.5a.5.5 0 110-1 .5.5 0 010 1zM7.5 17a.5.5 0 110-1 .5.5 0 010 1zM16.5 17a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceFive);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDiceFour(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<Path
d="M7.5 8a.5.5 0 110-1 .5.5 0 010 1zM16.5 8a.5.5 0 110-1 .5.5 0 010 1zM7.5 17a.5.5 0 110-1 .5.5 0 010 1zM16.5 17a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceFour);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDiceOne(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<Path
d="M12 12.5a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceOne);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDiceSix(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<Path
d="M7.5 8a.5.5 0 110-1 .5.5 0 010 1zM16.5 8a.5.5 0 110-1 .5.5 0 010 1zM7.5 12.5a.5.5 0 110-1 .5.5 0 010 1zM16.5 12.5a.5.5 0 110-1 .5.5 0 010 1zM7.5 17a.5.5 0 110-1 .5.5 0 010 1zM16.5 17a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceSix);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDiceThree(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<Path
d="M7.5 8a.5.5 0 110-1 .5.5 0 010 1zM12 12.5a.5.5 0 110-1 .5.5 0 010 1zM16.5 17a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceThree);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDiceTwo(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<Path
d="M7.5 8a.5.5 0 110-1 .5.5 0 010 1zM16.5 17a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceTwo);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDiscord(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M5.5 16c5 2.5 8 2.5 13 0M15.5 17.5l1 2s4.171-1.328 5.5-3.5c0-1 .53-8.147-3-10.5-1.5-1-4-1.5-4-1.5l-1 2h-2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M8.528 17.5l-1 2s-4.171-1.328-5.5-3.5c0-1-.53-8.147 3-10.5 1.5-1 4-1.5 4-1.5l1 2h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M8.5 14c-.828 0-1.5-.895-1.5-2s.672-2 1.5-2 1.5.895 1.5 2-.672 2-1.5 2zM15.5 14c-.828 0-1.5-.895-1.5-2s.672-2 1.5-2 1.5.895 1.5 2-.672 2-1.5 2z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDiscord);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgErase(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M21 21H9M15.889 14.89L8.464 7.463M2.893 12.607l9.193-9.193a2 2 0 012.828 0l4.95 4.95a2 2 0 010 2.828l-9.243 9.243a1.929 1.929 0 01-2.728 0l-5-5a2 2 0 010-2.828z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgErase);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgGamepad(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M17.5 17.5c2.5 3.5 6.449.915 5.5-2.5-1.425-5.129-2.2-7.984-2.603-9.492A2.032 2.032 0 0018.438 4H5.562c-.918 0-1.718.625-1.941 1.515C2.78 8.863 2.033 11.802 1.144 15c-.948 3.415 3 6 5.5 2.5M18 8.5l.011.01M16.49 7l.011.01M16.49 10l.011.01M15 8.5l.011.01M7 7v3M5.5 8.5h3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M8 16a2 2 0 100-4 2 2 0 000 4zM16 16a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGamepad);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgHexagonDice(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M11.7 1.173a.6.6 0 01.6 0l8.926 5.154a.6.6 0 01.3.52v10.307a.6.6 0 01-.3.52L12.3 22.826a.6.6 0 01-.6 0l-8.926-5.154a.6.6 0 01-.3-.52V6.847a.6.6 0 01.3-.52L11.7 1.174z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M17 15H7l5-8 5 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2.5 6.5L12 7M2.5 6.5L7 15M21.5 6.5L17 15M21.5 6.5L12 7V1M21.5 17.5L17 15M2.5 17.5L7 15M7 15l5 8 5-8"
stroke="currentColor"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgHexagonDice);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgMotorcycle(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M5 19a4 4 0 100-8 4 4 0 000 8zM19 15l-3-9 1-1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16 8.5h-4.5l-4.5 3M5.5 15.5H12l1-2.5 3.5-4.5M8.5 10c-2-1.5-5-1.5-7 0M19 19a4 4 0 100-8 4 4 0 000 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgMotorcycle);
export default ForwardRef;

View file

@ -0,0 +1,46 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgNoSmokingCircled(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M15 12v3M15 9c0-1-.714-2-2.143-2v0A2.857 2.857 0 0110 4.143V3M18 9V4M18 12v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M15 15H6.6a.6.6 0 01-.6-.6v-1.8a.6.6 0 01.6-.6H12"
stroke="currentColor"
/>
<Path
d="M5 5l14 14M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgNoSmokingCircled);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgOpenNewWindow(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M21 3h-6m6 0l-9 9m9-9v6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M21 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h6"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgOpenNewWindow);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPacman(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M16 12l.011.01M19 12l.011.01M22 12l.011.01M2 12c0 5.523 4.477 10 10 10a9.985 9.985 0 008-3.999L12 12l8-6.001A9.985 9.985 0 0012 2C6.477 2 2 6.477 2 12z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPacman);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPasteClipboard(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M8.5 4H6a2 2 0 00-2 2v14a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-2.5"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M8 6.4V4.5a.5.5 0 01.5-.5c.276 0 .504-.224.552-.496C9.2 2.652 9.774 1 12 1s2.8 1.652 2.948 2.504c.048.272.276.496.552.496a.5.5 0 01.5.5v1.9a.6.6 0 01-.6.6H8.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPasteClipboard);
export default ForwardRef;

View file

@ -0,0 +1,44 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPeaceHand(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M14.149 9.472v-5.86c0-.89-.722-1.612-1.612-1.612v0c-.89 0-1.611.722-1.611 1.612v4.834"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M16.346 12.841l2.176-7.252a1.584 1.584 0 00-1.083-1.98v0a1.585 1.585 0 00-1.961 1.098l-1.33 4.764M7.62 9.25l1.055 2.341a1.612 1.612 0 01-2.938 1.325L4.68 10.575A1.612 1.612 0 017.62 9.25z"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M11.72 12.261v0a2.322 2.322 0 00-.068-1.742l-1.073-2.38a1.584 1.584 0 00-2.101-.79v0a1.584 1.584 0 00-.764 2.14l.135.276"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M13.857 17.677l.492-.984a.176.176 0 00-.108-.248l-3.55-1.044a1.537 1.537 0 01-1.095-1.635v0a1.537 1.537 0 011.67-1.37l4.788.446s3.81.586 2.49 4.395c-1.318 3.81-1.757 5.128-4.687 5.128H8.876a4.249 4.249 0 01-4.249-4.249v0L4.48 9.912"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPeaceHand);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPinterest(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M8 14.5c-3-4.5 1.462-8 4.5-8 3.038 0 5.5 1.654 5.5 5.5 0 3.038-2 5-4 5s-3-2-2.5-5M12 10L9 21.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPinterest);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPlaystationGamepad(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M17.5 17.5c2.5 3.5 6.449.915 5.5-2.5-1.425-5.129-2.2-7.984-2.603-9.492A2.032 2.032 0 0018.438 4H5.562c-.918 0-1.718.625-1.941 1.515C2.78 8.863 2.033 11.802 1.144 15c-.948 3.415 3 6 5.5 2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16 4v2a2 2 0 01-2 2h-4a2 2 0 01-2-2V4M8 16a2 2 0 100-4 2 2 0 000 4zM16 16a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPlaystationGamepad);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPodcast(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M6 19a9.985 9.985 0 01-4-8C2 5.477 6.477 1 12 1s10 4.477 10 10a9.985 9.985 0 01-4 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M6 19a9.985 9.985 0 01-4-8C2 5.477 6.477 1 12 1s10 4.477 10 10a9.985 9.985 0 01-4 8M7.528 15a6 6 0 118.944 0"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12 13a2 2 0 100-4 2 2 0 000 4zM10.076 16.283l.815-.543a2 2 0 012.218 0l.815.543a2 2 0 01.863 1.993l-.509 3.053A2 2 0 0112.306 23h-.612a2 2 0 01-1.973-1.671l-.508-3.053a2 2 0 01.863-1.993z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPodcast);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPrivateWifi(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 18.51l.01-.011M2 7c6-4.5 14-4.5 20 0M5 11c4-3 10-3 14 0M8.5 14.5c2.25-1.4 4.75-1.4 7 0M21.167 18.5h.233a.6.6 0 01.6.6v2.3a.6.6 0 01-.6.6h-3.8a.6.6 0 01-.6-.6v-2.3a.6.6 0 01.6-.6h.233m3.334 0v-1.75c0-.583-.334-1.75-1.667-1.75s-1.667 1.167-1.667 1.75v1.75m3.334 0h-3.334"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPrivateWifi);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgStackoverflow(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M19 15v6H5v-6M16 17H8M15.913 14.663L8.087 13M16.713 12.38L9.463 9M18.173 10.642L12.044 5.5M20.034 8.804L15.109 2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgStackoverflow);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgTournament(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 3h5v6H3M8 6h7v12H8M15 12h7M3 15h5v6H3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTournament);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgWifiError(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 18.51l.01-.011M2 7c6-4.5 14-4.5 20 0M5 11c4-3 10-3 14 0M8.5 14.5c2.25-1.4 4.75-1.4 7 0M17.121 21.364l2.122-2.121m2.121-2.122l-2.121 2.122m0 0L17.12 17.12m2.122 2.122l2.121 2.121"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgWifiError);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgXboxA(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M15 16l-3-8-3 8M14 14h-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgXboxA);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgXboxB(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12.599 11.826c2.535 0 2.535 4.174 0 4.174H9.5v-4.174m3.099 0H9.5m3.099 0c2.535 0 2.535-3.826 0-3.826H9.5v3.826"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgXboxB);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgXboxX(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zM15 16L9 8M9 16l6-8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgXboxX);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgXboxY(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zM9 8l3 5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12 16v-3l3-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgXboxY);
export default ForwardRef;

View file

@ -57,6 +57,7 @@ export { default as AppleSwift } from './AppleSwift'
export { default as AppleWallet } from './AppleWallet'
export { default as Apple } from './Apple'
export { default as ArSymbol } from './ArSymbol'
export { default as Arcade } from './Arcade'
export { default as Archery } from './Archery'
export { default as Archive } from './Archive'
export { default as AreaSearch } from './AreaSearch'
@ -96,6 +97,8 @@ export { default as BatteryWarning } from './BatteryWarning'
export { default as Bbq } from './Bbq'
export { default as BeachBagBig } from './BeachBagBig'
export { default as BeachBag } from './BeachBag'
export { default as BehanceSquared } from './BehanceSquared'
export { default as Behance } from './Behance'
export { default as BellNotification } from './BellNotification'
export { default as BellOff } from './BellOff'
export { default as Bell } from './Bell'
@ -176,6 +179,7 @@ export { default as Church } from './Church'
export { default as CinemaOld } from './CinemaOld'
export { default as Circle } from './Circle'
export { default as City } from './City'
export { default as ClipboardCheck } from './ClipboardCheck'
export { default as ClockOutline } from './ClockOutline'
export { default as Closet } from './Closet'
export { default as CloudBookAlt } from './CloudBookAlt'
@ -199,6 +203,7 @@ export { default as ColorPickerEmpty } from './ColorPickerEmpty'
export { default as ColorPicker } from './ColorPicker'
export { default as Combine } from './Combine'
export { default as CompactDisc } from './CompactDisc'
export { default as Compass } from './Compass'
export { default as CompressLines } from './CompressLines'
export { default as Compress } from './Compress'
export { default as Computer } from './Computer'
@ -257,6 +262,13 @@ export { default as DeliveryTruck } from './DeliveryTruck'
export { default as Delivery } from './Delivery'
export { default as DesignPencil } from './DesignPencil'
export { default as Dialpad } from './Dialpad'
export { default as DiceFive } from './DiceFive'
export { default as DiceFour } from './DiceFour'
export { default as DiceOne } from './DiceOne'
export { default as DiceSix } from './DiceSix'
export { default as DiceThree } from './DiceThree'
export { default as DiceTwo } from './DiceTwo'
export { default as Discord } from './Discord'
export { default as Dishwasher } from './Dishwasher'
export { default as Display4K } from './Display4K'
export { default as DivideSelection1 } from './DivideSelection1'
@ -316,6 +328,7 @@ export { default as Emoji } from './Emoji'
export { default as EmptyPage } from './EmptyPage'
export { default as EnlargeRoundArrow } from './EnlargeRoundArrow'
export { default as Enlarge } from './Enlarge'
export { default as Erase } from './Erase'
export { default as EuroSquare } from './EuroSquare'
export { default as Euro } from './Euro'
export { default as EvChargeAlt } from './EvChargeAlt'
@ -391,6 +404,7 @@ export { default as Frame } from './Frame'
export { default as Fridge } from './Fridge'
export { default as FxRounded } from './FxRounded'
export { default as Fx } from './Fx'
export { default as Gamepad } from './Gamepad'
export { default as Garage } from './Garage'
export { default as GasTankDrop } from './GasTankDrop'
export { default as GasTank } from './GasTank'
@ -446,6 +460,7 @@ export { default as Heptagon } from './Heptagon'
export { default as HerSlips } from './HerSlips'
export { default as HesaWarningOutline } from './HesaWarningOutline'
export { default as HexagonAlt } from './HexagonAlt'
export { default as HexagonDice } from './HexagonDice'
export { default as Hexagon } from './Hexagon'
export { default as HighPriority } from './HighPriority'
export { default as HistoricShieldAlt } from './HistoricShieldAlt'
@ -594,6 +609,7 @@ export { default as MoreHorizCircledOutline } from './MoreHorizCircledOutline'
export { default as MoreHoriz } from './MoreHoriz'
export { default as MoreVertCircledOutline } from './MoreVertCircledOutline'
export { default as MoreVert } from './MoreVert'
export { default as Motorcycle } from './Motorcycle'
export { default as MouseButtonLeft } from './MouseButtonLeft'
export { default as MouseButtonRight } from './MouseButtonRight'
export { default as MouseScrollWheel } from './MouseScrollWheel'
@ -631,6 +647,7 @@ export { default as NoBattery } from './NoBattery'
export { default as NoCoin } from './NoCoin'
export { default as NoCreditCard } from './NoCreditCard'
export { default as NoLock } from './NoLock'
export { default as NoSmokingCircled } from './NoSmokingCircled'
export { default as NoSmoking } from './NoSmoking'
export { default as Notes } from './Notes'
export { default as NumberedListLeft } from './NumberedListLeft'
@ -644,6 +661,7 @@ export { default as OnePointCircle } from './OnePointCircle'
export { default as OpenBook } from './OpenBook'
export { default as OpenInBrowser } from './OpenInBrowser'
export { default as OpenInWindow } from './OpenInWindow'
export { default as OpenNewWindow } from './OpenNewWindow'
export { default as OpenSelectHandGesture } from './OpenSelectHandGesture'
export { default as OpenVpn } from './OpenVpn'
export { default as OrangeHalf } from './OrangeHalf'
@ -654,6 +672,7 @@ export { default as Oxygen } from './Oxygen'
export { default as PackageLock } from './PackageLock'
export { default as Package } from './Package'
export { default as Packages } from './Packages'
export { default as Pacman } from './Pacman'
export { default as PageEdit } from './PageEdit'
export { default as PageFlip } from './PageFlip'
export { default as PageSearch } from './PageSearch'
@ -668,12 +687,14 @@ export { default as Parking } from './Parking'
export { default as PasswordCursor } from './PasswordCursor'
export { default as PasswordError } from './PasswordError'
export { default as PasswordPass } from './PasswordPass'
export { default as PasteClipboard } from './PasteClipboard'
export { default as PauseOutline } from './PauseOutline'
export { default as PcCheck } from './PcCheck'
export { default as PcFirewall } from './PcFirewall'
export { default as PcMouse } from './PcMouse'
export { default as PcNoEntry } from './PcNoEntry'
export { default as PcWarning } from './PcWarning'
export { default as PeaceHand } from './PeaceHand'
export { default as PenConnectBluetooth } from './PenConnectBluetooth'
export { default as PenConnectWifi } from './PenConnectWifi'
export { default as PenTabletConnectUsb } from './PenTabletConnectUsb'
@ -698,6 +719,7 @@ export { default as Phone } from './Phone'
export { default as PiggyBank } from './PiggyBank'
export { default as PinAlt } from './PinAlt'
export { default as Pin } from './Pin'
export { default as Pinterest } from './Pinterest'
export { default as PizzaSlice } from './PizzaSlice'
export { default as PlanetAlt } from './PlanetAlt'
export { default as PlanetSat } from './PlanetSat'
@ -706,12 +728,14 @@ export { default as PlayOutline } from './PlayOutline'
export { default as PlaylistAdd } from './PlaylistAdd'
export { default as PlaylistPlay } from './PlaylistPlay'
export { default as Playlist } from './Playlist'
export { default as PlaystationGamepad } from './PlaystationGamepad'
export { default as PlugTypeA } from './PlugTypeA'
export { default as PlugTypeC } from './PlugTypeC'
export { default as PlugTypeG } from './PlugTypeG'
export { default as PlugTypeL } from './PlugTypeL'
export { default as Plus } from './Plus'
export { default as Pocket } from './Pocket'
export { default as Podcast } from './Podcast'
export { default as PositionAlign } from './PositionAlign'
export { default as Position } from './Position'
export { default as Pound } from './Pound'
@ -721,6 +745,7 @@ export { default as Printer } from './Printer'
export { default as PrintingPage } from './PrintingPage'
export { default as PriorityDown } from './PriorityDown'
export { default as PriorityUp } from './PriorityUp'
export { default as PrivateWifi } from './PrivateWifi'
export { default as ProfileCircled } from './ProfileCircled'
export { default as Prohibition } from './Prohibition'
export { default as Puzzle } from './Puzzle'
@ -864,6 +889,7 @@ export { default as SoundMin } from './SoundMin'
export { default as SoundOff } from './SoundOff'
export { default as SpockHandGesture } from './SpockHandGesture'
export { default as Square } from './Square'
export { default as Stackoverflow } from './Stackoverflow'
export { default as StarDashed } from './StarDashed'
export { default as StarHalfDashed } from './StarHalfDashed'
export { default as StarOutline } from './StarOutline'
@ -913,6 +939,7 @@ export { default as Thunderstorm } from './Thunderstorm'
export { default as TikTok } from './TikTok'
export { default as TimerOff } from './TimerOff'
export { default as Timer } from './Timer'
export { default as Tournament } from './Tournament'
export { default as TowerCheck } from './TowerCheck'
export { default as TowerNoAccess } from './TowerNoAccess'
export { default as TowerWarning } from './TowerWarning'
@ -998,6 +1025,7 @@ export { default as WebWindow } from './WebWindow'
export { default as WeightAlt } from './WeightAlt'
export { default as Weight } from './Weight'
export { default as WhiteFlag } from './WhiteFlag'
export { default as WifiError } from './WifiError'
export { default as WifiIssue } from './WifiIssue'
export { default as WifiOff } from './WifiOff'
export { default as WifiRounded } from './WifiRounded'
@ -1008,6 +1036,10 @@ export { default as Windows } from './Windows'
export { default as WrapText } from './WrapText'
export { default as Wristwatch } from './Wristwatch'
export { default as Www } from './Www'
export { default as XboxA } from './XboxA'
export { default as XboxB } from './XboxB'
export { default as XboxX } from './XboxX'
export { default as XboxY } from './XboxY'
export { default as XrayView } from './XrayView'
export { default as YenSquare } from './YenSquare'
export { default as Yen } from './Yen'

View file

@ -0,0 +1,45 @@
import * as React from 'react';
function SvgArcade(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M11 8.5L9.8 9l-7.448 3.386a.6.6 0 00-.352.546v.136a.6.6 0 00.352.546l8.82 4.01a2 2 0 001.656 0l8.82-4.01a.6.6 0 00.352-.546v-.136a.6.6 0 00-.352-.546L14.2 9 13 8.5"
stroke="currentColor"
/>
<path
d="M22 13v4.112a.6.6 0 01-.354.547l-8.825 3.972a2 2 0 01-1.642 0l-8.825-3.972A.6.6 0 012 17.112V13"
stroke="currentColor"
/>
<path
d="M12 8a3 3 0 110-6 3 3 0 010 6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path d="M11 8v5a1 1 0 001 1v0a1 1 0 001-1V8" stroke="currentColor" />
<path
d="M16 13h1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgArcade);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgBehance(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M8.197 11.217c5.07 0 5.07 6.783 0 6.783H2v-6.783m6.197 0H2m6.197 0c5.07 0 5.07-6.217 0-6.217H2v6.217M18 9c-2.21 0-4 2.015-4 4.5h8c0-2.485-1.79-4.5-4-4.5zM14 13.5c0 2.485 1.79 4.5 4 4.5 2.755 0 3.5-2 3.5-2M20.5 6h-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgBehance);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgBehanceSquared(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M21 8v8a5 5 0 01-5 5H8a5 5 0 01-5-5V8a5 5 0 015-5h8a5 5 0 015 5z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9.099 11.826c2.535 0 2.535 4.174 0 4.174H6v-4.174m3.099 0H6m3.099 0c2.535 0 2.535-3.826 0-3.826H6v3.826M15.5 11a2.5 2.5 0 00-2.5 2.5h5a2.5 2.5 0 00-2.5-2.5zM13 13.5a2.5 2.5 0 002.5 2.5c.928 0 1.49-.322 1.813-.62M17 8.5h-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgBehanceSquared);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from 'react';
function SvgClipboardCheck(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M8.5 4H6a2 2 0 00-2 2v14a2 2 0 002 2h6M15.5 4H18a2 2 0 012 2v9"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M8 6.4V4.5a.5.5 0 01.5-.5c.276 0 .504-.224.552-.496C9.2 2.652 9.774 1 12 1s2.8 1.652 2.948 2.504c.048.272.276.496.552.496a.5.5 0 01.5.5v1.9a.6.6 0 01-.6.6H8.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M15.5 20.5l2 2 5-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgClipboardCheck);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgCompass(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M10.586 10.586L16.95 7.05l-3.536 6.364L7.05 16.95l3.536-6.364z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCompass);
export default ForwardRef;

View file

@ -8,8 +8,8 @@ function SvgDialpad(
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
@ -17,7 +17,7 @@ function SvgDialpad(
{...props}
>
<path
d="M6 7a1 1 0 110-2 1 1 0 010 2zM12 7a1 1 0 110-2 1 1 0 010 2zM18 7a1 1 0 110-2 1 1 0 010 2zM6 13a1 1 0 110-2 1 1 0 010 2zM12 13a1 1 0 110-2 1 1 0 010 2zM18 13a1 1 0 110-2 1 1 0 010 2zM12 19a1 1 0 110-2 1 1 0 010 2z"
d="M5.5 5a.5.5 0 110-1 .5.5 0 010 1zM5.5 10a.5.5 0 110-1 .5.5 0 010 1zM5.5 15a.5.5 0 110-1 .5.5 0 010 1zM12 5a.5.5 0 110-1 .5.5 0 010 1zM12 10a.5.5 0 110-1 .5.5 0 010 1zM12 15a.5.5 0 110-1 .5.5 0 010 1zM12 20a.5.5 0 110-1 .5.5 0 010 1zM18.5 5a.5.5 0 110-1 .5.5 0 010 1zM18.5 10a.5.5 0 110-1 .5.5 0 010 1zM18.5 15a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"

View file

@ -0,0 +1,35 @@
import * as React from 'react';
function SvgDiceFive(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<path
d="M7.5 8a.5.5 0 110-1 .5.5 0 010 1zM16.5 8a.5.5 0 110-1 .5.5 0 010 1zM12 12.5a.5.5 0 110-1 .5.5 0 010 1zM7.5 17a.5.5 0 110-1 .5.5 0 010 1zM16.5 17a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceFive);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
function SvgDiceFour(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<path
d="M7.5 8a.5.5 0 110-1 .5.5 0 010 1zM16.5 8a.5.5 0 110-1 .5.5 0 010 1zM7.5 17a.5.5 0 110-1 .5.5 0 010 1zM16.5 17a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceFour);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
function SvgDiceOne(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<path
d="M12 12.5a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceOne);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
function SvgDiceSix(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<path
d="M7.5 8a.5.5 0 110-1 .5.5 0 010 1zM16.5 8a.5.5 0 110-1 .5.5 0 010 1zM7.5 12.5a.5.5 0 110-1 .5.5 0 010 1zM16.5 12.5a.5.5 0 110-1 .5.5 0 010 1zM7.5 17a.5.5 0 110-1 .5.5 0 010 1zM16.5 17a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceSix);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
function SvgDiceThree(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<path
d="M7.5 8a.5.5 0 110-1 .5.5 0 010 1zM12 12.5a.5.5 0 110-1 .5.5 0 010 1zM16.5 17a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceThree);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
function SvgDiceTwo(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<path
d="M7.5 8a.5.5 0 110-1 .5.5 0 010 1zM16.5 17a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDiceTwo);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
function SvgDiscord(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M5.5 16c5 2.5 8 2.5 13 0M15.5 17.5l1 2s4.171-1.328 5.5-3.5c0-1 .53-8.147-3-10.5-1.5-1-4-1.5-4-1.5l-1 2h-2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8.528 17.5l-1 2s-4.171-1.328-5.5-3.5c0-1-.53-8.147 3-10.5 1.5-1 4-1.5 4-1.5l1 2h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8.5 14c-.828 0-1.5-.895-1.5-2s.672-2 1.5-2 1.5.895 1.5 2-.672 2-1.5 2zM15.5 14c-.828 0-1.5-.895-1.5-2s.672-2 1.5-2 1.5.895 1.5 2-.672 2-1.5 2z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDiscord);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgErase(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M21 21H9M15.889 14.89L8.464 7.463M2.893 12.607l9.193-9.193a2 2 0 012.828 0l4.95 4.95a2 2 0 010 2.828l-9.243 9.243a1.929 1.929 0 01-2.728 0l-5-5a2 2 0 010-2.828z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgErase);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgGamepad(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M17.5 17.5c2.5 3.5 6.449.915 5.5-2.5-1.425-5.129-2.2-7.984-2.603-9.492A2.032 2.032 0 0018.438 4H5.562c-.918 0-1.718.625-1.941 1.515C2.78 8.863 2.033 11.802 1.144 15c-.948 3.415 3 6 5.5 2.5M18 8.5l.011.01M16.49 7l.011.01M16.49 10l.011.01M15 8.5l.011.01M7 7v3M5.5 8.5h3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8 16a2 2 0 100-4 2 2 0 000 4zM16 16a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgGamepad);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from 'react';
function SvgHexagonDice(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M11.7 1.173a.6.6 0 01.6 0l8.926 5.154a.6.6 0 01.3.52v10.307a.6.6 0 01-.3.52L12.3 22.826a.6.6 0 01-.6 0l-8.926-5.154a.6.6 0 01-.3-.52V6.847a.6.6 0 01.3-.52L11.7 1.174z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M17 15H7l5-8 5 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2.5 6.5L12 7M2.5 6.5L7 15M21.5 6.5L17 15M21.5 6.5L12 7V1M21.5 17.5L17 15M2.5 17.5L7 15M7 15l5 8 5-8"
stroke="currentColor"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgHexagonDice);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgMotorcycle(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M5 19a4 4 0 100-8 4 4 0 000 8zM19 15l-3-9 1-1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M16 8.5h-4.5l-4.5 3M5.5 15.5H12l1-2.5 3.5-4.5M8.5 10c-2-1.5-5-1.5-7 0M19 19a4 4 0 100-8 4 4 0 000 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgMotorcycle);
export default ForwardRef;

View file

@ -0,0 +1,46 @@
import * as React from 'react';
function SvgNoSmokingCircled(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M15 12v3M15 9c0-1-.714-2-2.143-2v0A2.857 2.857 0 0110 4.143V3M18 9V4M18 12v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15 15H6.6a.6.6 0 01-.6-.6v-1.8a.6.6 0 01.6-.6H12"
stroke="currentColor"
/>
<path
d="M5 5l14 14M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgNoSmokingCircled);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
function SvgOpenNewWindow(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M21 3h-6m6 0l-9 9m9-9v6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M21 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h6"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgOpenNewWindow);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgPacman(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M16 12l.011.01M19 12l.011.01M22 12l.011.01M2 12c0 5.523 4.477 10 10 10a9.985 9.985 0 008-3.999L12 12l8-6.001A9.985 9.985 0 0012 2C6.477 2 2 6.477 2 12z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPacman);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from 'react';
function SvgPasteClipboard(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M8.5 4H6a2 2 0 00-2 2v14a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-2.5"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M8 6.4V4.5a.5.5 0 01.5-.5c.276 0 .504-.224.552-.496C9.2 2.652 9.774 1 12 1s2.8 1.652 2.948 2.504c.048.272.276.496.552.496a.5.5 0 01.5.5v1.9a.6.6 0 01-.6.6H8.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPasteClipboard);
export default ForwardRef;

View file

@ -0,0 +1,44 @@
import * as React from 'react';
function SvgPeaceHand(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M14.149 9.472v-5.86c0-.89-.722-1.612-1.612-1.612v0c-.89 0-1.611.722-1.611 1.612v4.834"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M16.346 12.841l2.176-7.252a1.584 1.584 0 00-1.083-1.98v0a1.585 1.585 0 00-1.961 1.098l-1.33 4.764M7.62 9.25l1.055 2.341a1.612 1.612 0 01-2.938 1.325L4.68 10.575A1.612 1.612 0 017.62 9.25z"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M11.72 12.261v0a2.322 2.322 0 00-.068-1.742l-1.073-2.38a1.584 1.584 0 00-2.101-.79v0a1.584 1.584 0 00-.764 2.14l.135.276"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M13.857 17.677l.492-.984a.176.176 0 00-.108-.248l-3.55-1.044a1.537 1.537 0 01-1.095-1.635v0a1.537 1.537 0 011.67-1.37l4.788.446s3.81.586 2.49 4.395c-1.318 3.81-1.757 5.128-4.687 5.128H8.876a4.249 4.249 0 01-4.249-4.249v0L4.48 9.912"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPeaceHand);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgPinterest(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M8 14.5c-3-4.5 1.462-8 4.5-8 3.038 0 5.5 1.654 5.5 5.5 0 3.038-2 5-4 5s-3-2-2.5-5M12 10L9 21.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPinterest);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgPlaystationGamepad(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M17.5 17.5c2.5 3.5 6.449.915 5.5-2.5-1.425-5.129-2.2-7.984-2.603-9.492A2.032 2.032 0 0018.438 4H5.562c-.918 0-1.718.625-1.941 1.515C2.78 8.863 2.033 11.802 1.144 15c-.948 3.415 3 6 5.5 2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M16 4v2a2 2 0 01-2 2h-4a2 2 0 01-2-2V4M8 16a2 2 0 100-4 2 2 0 000 4zM16 16a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPlaystationGamepad);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
function SvgPodcast(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M6 19a9.985 9.985 0 01-4-8C2 5.477 6.477 1 12 1s10 4.477 10 10a9.985 9.985 0 01-4 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M6 19a9.985 9.985 0 01-4-8C2 5.477 6.477 1 12 1s10 4.477 10 10a9.985 9.985 0 01-4 8M7.528 15a6 6 0 118.944 0"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 13a2 2 0 100-4 2 2 0 000 4zM10.076 16.283l.815-.543a2 2 0 012.218 0l.815.543a2 2 0 01.863 1.993l-.509 3.053A2 2 0 0112.306 23h-.612a2 2 0 01-1.973-1.671l-.508-3.053a2 2 0 01.863-1.993z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPodcast);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgPrivateWifi(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 18.51l.01-.011M2 7c6-4.5 14-4.5 20 0M5 11c4-3 10-3 14 0M8.5 14.5c2.25-1.4 4.75-1.4 7 0M21.167 18.5h.233a.6.6 0 01.6.6v2.3a.6.6 0 01-.6.6h-3.8a.6.6 0 01-.6-.6v-2.3a.6.6 0 01.6-.6h.233m3.334 0v-1.75c0-.583-.334-1.75-1.667-1.75s-1.667 1.167-1.667 1.75v1.75m3.334 0h-3.334"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPrivateWifi);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgStackoverflow(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M19 15v6H5v-6M16 17H8M15.913 14.663L8.087 13M16.713 12.38L9.463 9M18.173 10.642L12.044 5.5M20.034 8.804L15.109 2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgStackoverflow);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgTournament(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 3h5v6H3M8 6h7v12H8M15 12h7M3 15h5v6H3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgTournament);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgWifiError(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 18.51l.01-.011M2 7c6-4.5 14-4.5 20 0M5 11c4-3 10-3 14 0M8.5 14.5c2.25-1.4 4.75-1.4 7 0M17.121 21.364l2.122-2.121m2.121-2.122l-2.121 2.122m0 0L17.12 17.12m2.122 2.122l2.121 2.121"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgWifiError);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgXboxA(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15 16l-3-8-3 8M14 14h-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgXboxA);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgXboxB(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12.599 11.826c2.535 0 2.535 4.174 0 4.174H9.5v-4.174m3.099 0H9.5m3.099 0c2.535 0 2.535-3.826 0-3.826H9.5v3.826"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgXboxB);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgXboxX(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zM15 16L9 8M9 16l6-8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgXboxX);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgXboxY(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zM9 8l3 5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 16v-3l3-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgXboxY);
export default ForwardRef;

View file

@ -57,6 +57,7 @@ export { default as AppleSwift } from './AppleSwift'
export { default as AppleWallet } from './AppleWallet'
export { default as Apple } from './Apple'
export { default as ArSymbol } from './ArSymbol'
export { default as Arcade } from './Arcade'
export { default as Archery } from './Archery'
export { default as Archive } from './Archive'
export { default as AreaSearch } from './AreaSearch'
@ -96,6 +97,8 @@ export { default as BatteryWarning } from './BatteryWarning'
export { default as Bbq } from './Bbq'
export { default as BeachBagBig } from './BeachBagBig'
export { default as BeachBag } from './BeachBag'
export { default as BehanceSquared } from './BehanceSquared'
export { default as Behance } from './Behance'
export { default as BellNotification } from './BellNotification'
export { default as BellOff } from './BellOff'
export { default as Bell } from './Bell'
@ -176,6 +179,7 @@ export { default as Church } from './Church'
export { default as CinemaOld } from './CinemaOld'
export { default as Circle } from './Circle'
export { default as City } from './City'
export { default as ClipboardCheck } from './ClipboardCheck'
export { default as ClockOutline } from './ClockOutline'
export { default as Closet } from './Closet'
export { default as CloudBookAlt } from './CloudBookAlt'
@ -199,6 +203,7 @@ export { default as ColorPickerEmpty } from './ColorPickerEmpty'
export { default as ColorPicker } from './ColorPicker'
export { default as Combine } from './Combine'
export { default as CompactDisc } from './CompactDisc'
export { default as Compass } from './Compass'
export { default as CompressLines } from './CompressLines'
export { default as Compress } from './Compress'
export { default as Computer } from './Computer'
@ -257,6 +262,13 @@ export { default as DeliveryTruck } from './DeliveryTruck'
export { default as Delivery } from './Delivery'
export { default as DesignPencil } from './DesignPencil'
export { default as Dialpad } from './Dialpad'
export { default as DiceFive } from './DiceFive'
export { default as DiceFour } from './DiceFour'
export { default as DiceOne } from './DiceOne'
export { default as DiceSix } from './DiceSix'
export { default as DiceThree } from './DiceThree'
export { default as DiceTwo } from './DiceTwo'
export { default as Discord } from './Discord'
export { default as Dishwasher } from './Dishwasher'
export { default as Display4K } from './Display4K'
export { default as DivideSelection1 } from './DivideSelection1'
@ -316,6 +328,7 @@ export { default as Emoji } from './Emoji'
export { default as EmptyPage } from './EmptyPage'
export { default as EnlargeRoundArrow } from './EnlargeRoundArrow'
export { default as Enlarge } from './Enlarge'
export { default as Erase } from './Erase'
export { default as EuroSquare } from './EuroSquare'
export { default as Euro } from './Euro'
export { default as EvChargeAlt } from './EvChargeAlt'
@ -391,6 +404,7 @@ export { default as Frame } from './Frame'
export { default as Fridge } from './Fridge'
export { default as FxRounded } from './FxRounded'
export { default as Fx } from './Fx'
export { default as Gamepad } from './Gamepad'
export { default as Garage } from './Garage'
export { default as GasTankDrop } from './GasTankDrop'
export { default as GasTank } from './GasTank'
@ -446,6 +460,7 @@ export { default as Heptagon } from './Heptagon'
export { default as HerSlips } from './HerSlips'
export { default as HesaWarningOutline } from './HesaWarningOutline'
export { default as HexagonAlt } from './HexagonAlt'
export { default as HexagonDice } from './HexagonDice'
export { default as Hexagon } from './Hexagon'
export { default as HighPriority } from './HighPriority'
export { default as HistoricShieldAlt } from './HistoricShieldAlt'
@ -594,6 +609,7 @@ export { default as MoreHorizCircledOutline } from './MoreHorizCircledOutline'
export { default as MoreHoriz } from './MoreHoriz'
export { default as MoreVertCircledOutline } from './MoreVertCircledOutline'
export { default as MoreVert } from './MoreVert'
export { default as Motorcycle } from './Motorcycle'
export { default as MouseButtonLeft } from './MouseButtonLeft'
export { default as MouseButtonRight } from './MouseButtonRight'
export { default as MouseScrollWheel } from './MouseScrollWheel'
@ -631,6 +647,7 @@ export { default as NoBattery } from './NoBattery'
export { default as NoCoin } from './NoCoin'
export { default as NoCreditCard } from './NoCreditCard'
export { default as NoLock } from './NoLock'
export { default as NoSmokingCircled } from './NoSmokingCircled'
export { default as NoSmoking } from './NoSmoking'
export { default as Notes } from './Notes'
export { default as NumberedListLeft } from './NumberedListLeft'
@ -644,6 +661,7 @@ export { default as OnePointCircle } from './OnePointCircle'
export { default as OpenBook } from './OpenBook'
export { default as OpenInBrowser } from './OpenInBrowser'
export { default as OpenInWindow } from './OpenInWindow'
export { default as OpenNewWindow } from './OpenNewWindow'
export { default as OpenSelectHandGesture } from './OpenSelectHandGesture'
export { default as OpenVpn } from './OpenVpn'
export { default as OrangeHalf } from './OrangeHalf'
@ -654,6 +672,7 @@ export { default as Oxygen } from './Oxygen'
export { default as PackageLock } from './PackageLock'
export { default as Package } from './Package'
export { default as Packages } from './Packages'
export { default as Pacman } from './Pacman'
export { default as PageEdit } from './PageEdit'
export { default as PageFlip } from './PageFlip'
export { default as PageSearch } from './PageSearch'
@ -668,12 +687,14 @@ export { default as Parking } from './Parking'
export { default as PasswordCursor } from './PasswordCursor'
export { default as PasswordError } from './PasswordError'
export { default as PasswordPass } from './PasswordPass'
export { default as PasteClipboard } from './PasteClipboard'
export { default as PauseOutline } from './PauseOutline'
export { default as PcCheck } from './PcCheck'
export { default as PcFirewall } from './PcFirewall'
export { default as PcMouse } from './PcMouse'
export { default as PcNoEntry } from './PcNoEntry'
export { default as PcWarning } from './PcWarning'
export { default as PeaceHand } from './PeaceHand'
export { default as PenConnectBluetooth } from './PenConnectBluetooth'
export { default as PenConnectWifi } from './PenConnectWifi'
export { default as PenTabletConnectUsb } from './PenTabletConnectUsb'
@ -698,6 +719,7 @@ export { default as Phone } from './Phone'
export { default as PiggyBank } from './PiggyBank'
export { default as PinAlt } from './PinAlt'
export { default as Pin } from './Pin'
export { default as Pinterest } from './Pinterest'
export { default as PizzaSlice } from './PizzaSlice'
export { default as PlanetAlt } from './PlanetAlt'
export { default as PlanetSat } from './PlanetSat'
@ -706,12 +728,14 @@ export { default as PlayOutline } from './PlayOutline'
export { default as PlaylistAdd } from './PlaylistAdd'
export { default as PlaylistPlay } from './PlaylistPlay'
export { default as Playlist } from './Playlist'
export { default as PlaystationGamepad } from './PlaystationGamepad'
export { default as PlugTypeA } from './PlugTypeA'
export { default as PlugTypeC } from './PlugTypeC'
export { default as PlugTypeG } from './PlugTypeG'
export { default as PlugTypeL } from './PlugTypeL'
export { default as Plus } from './Plus'
export { default as Pocket } from './Pocket'
export { default as Podcast } from './Podcast'
export { default as PositionAlign } from './PositionAlign'
export { default as Position } from './Position'
export { default as Pound } from './Pound'
@ -721,6 +745,7 @@ export { default as Printer } from './Printer'
export { default as PrintingPage } from './PrintingPage'
export { default as PriorityDown } from './PriorityDown'
export { default as PriorityUp } from './PriorityUp'
export { default as PrivateWifi } from './PrivateWifi'
export { default as ProfileCircled } from './ProfileCircled'
export { default as Prohibition } from './Prohibition'
export { default as Puzzle } from './Puzzle'
@ -864,6 +889,7 @@ export { default as SoundMin } from './SoundMin'
export { default as SoundOff } from './SoundOff'
export { default as SpockHandGesture } from './SpockHandGesture'
export { default as Square } from './Square'
export { default as Stackoverflow } from './Stackoverflow'
export { default as StarDashed } from './StarDashed'
export { default as StarHalfDashed } from './StarHalfDashed'
export { default as StarOutline } from './StarOutline'
@ -913,6 +939,7 @@ export { default as Thunderstorm } from './Thunderstorm'
export { default as TikTok } from './TikTok'
export { default as TimerOff } from './TimerOff'
export { default as Timer } from './Timer'
export { default as Tournament } from './Tournament'
export { default as TowerCheck } from './TowerCheck'
export { default as TowerNoAccess } from './TowerNoAccess'
export { default as TowerWarning } from './TowerWarning'
@ -998,6 +1025,7 @@ export { default as WebWindow } from './WebWindow'
export { default as WeightAlt } from './WeightAlt'
export { default as Weight } from './Weight'
export { default as WhiteFlag } from './WhiteFlag'
export { default as WifiError } from './WifiError'
export { default as WifiIssue } from './WifiIssue'
export { default as WifiOff } from './WifiOff'
export { default as WifiRounded } from './WifiRounded'
@ -1008,6 +1036,10 @@ export { default as Windows } from './Windows'
export { default as WrapText } from './WrapText'
export { default as Wristwatch } from './Wristwatch'
export { default as Www } from './Www'
export { default as XboxA } from './XboxA'
export { default as XboxB } from './XboxB'
export { default as XboxX } from './XboxX'
export { default as XboxY } from './XboxY'
export { default as XrayView } from './XrayView'
export { default as YenSquare } from './YenSquare'
export { default as Yen } from './Yen'