-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2fc587
commit 52bd04d
Showing
21 changed files
with
285 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import React from 'react'; | ||
|
||
export default function AccessPointOff({ | ||
size = 24, | ||
color = 'currentColor', | ||
...restProps | ||
}) { | ||
return ( | ||
<svg | ||
xmlns='http://www.w3.org/2000/svg' | ||
className='icon icon-tabler icon-tabler-access-point-off' | ||
width={size} | ||
height={size} | ||
viewBox='0 0 24 24' | ||
stroke={color} | ||
strokeWidth='2' | ||
fill='none' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
{...restProps} | ||
> | ||
<path stroke='none' d='M0 0h24v24H0z' fill='none' /> | ||
<line x1='3' y1='3' x2='21' y2='21' /> | ||
<path d='M14.828 9.172a4 4 0 0 1 1.172 2.828' /> | ||
<path d='M17.657 6.343a8 8 0 0 1 1.635 8.952' /> | ||
<path d='M9.168 14.828a4 4 0 0 1 0 -5.656' /> | ||
<path d='M6.337 17.657a8 8 0 0 1 0 -11.314' /> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import React from 'react'; | ||
|
||
export default function AccessPoint({ | ||
size = 24, | ||
color = 'currentColor', | ||
...restProps | ||
}) { | ||
return ( | ||
<svg | ||
xmlns='http://www.w3.org/2000/svg' | ||
className='icon icon-tabler icon-tabler-access-point' | ||
width={size} | ||
height={size} | ||
viewBox='0 0 24 24' | ||
stroke={color} | ||
strokeWidth='2' | ||
fill='none' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
{...restProps} | ||
> | ||
<path stroke='none' d='M0 0h24v24H0z' fill='none' /> | ||
<line x1='12' y1='12' x2='12' y2='12.01' /> | ||
<path d='M14.828 9.172a4 4 0 0 1 0 5.656' /> | ||
<path d='M17.657 6.343a8 8 0 0 1 0 11.314' /> | ||
<path d='M9.168 14.828a4 4 0 0 1 0 -5.656' /> | ||
<path d='M6.337 17.657a8 8 0 0 1 0 -11.314' /> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from 'react'; | ||
|
||
export default function BatteryOff({ | ||
size = 24, | ||
color = 'currentColor', | ||
...restProps | ||
}) { | ||
return ( | ||
<svg | ||
xmlns='http://www.w3.org/2000/svg' | ||
className='icon icon-tabler icon-tabler-battery-off' | ||
width={size} | ||
height={size} | ||
viewBox='0 0 24 24' | ||
stroke={color} | ||
strokeWidth='2' | ||
fill='none' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
{...restProps} | ||
> | ||
<path stroke='none' d='M0 0h24v24H0z' fill='none' /> | ||
<line x1='3' y1='3' x2='21' y2='21' /> | ||
<path d='M11 7h6a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1' /> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
|
||
export default function HeadphonesOff({ | ||
size = 24, | ||
color = 'currentColor', | ||
...restProps | ||
}) { | ||
return ( | ||
<svg | ||
xmlns='http://www.w3.org/2000/svg' | ||
className='icon icon-tabler icon-tabler-headphones-off' | ||
width={size} | ||
height={size} | ||
viewBox='0 0 24 24' | ||
stroke={color} | ||
strokeWidth='2' | ||
fill='none' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
{...restProps} | ||
> | ||
<path stroke='none' d='M0 0h24v24H0z' fill='none' /> | ||
<line x1='3' y1='3' x2='21' y2='21' /> | ||
<rect x='4' y='13' width='5' height='7' rx='2' /> | ||
<path d='M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361.36-.86.583-1.411.583h-1a2 2 0 0 1 -2 -2v-3' /> | ||
<path d='M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3' /> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
|
||
export default function LockOff({ | ||
size = 24, | ||
color = 'currentColor', | ||
...restProps | ||
}) { | ||
return ( | ||
<svg | ||
xmlns='http://www.w3.org/2000/svg' | ||
className='icon icon-tabler icon-tabler-lock-off' | ||
width={size} | ||
height={size} | ||
viewBox='0 0 24 24' | ||
stroke={color} | ||
strokeWidth='2' | ||
fill='none' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
{...restProps} | ||
> | ||
<path stroke='none' d='M0 0h24v24H0z' fill='none' /> | ||
<line x1='3' y1='3' x2='21' y2='21' /> | ||
<path d='M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4m4 0h2a2 2 0 0 1 2 2v2' /> | ||
<circle cx='12' cy='16' r='1' /> | ||
<path d='M8 11v-3m.712 -3.278a4 4 0 0 1 7.288 2.278v4' /> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
|
||
export default function VideoMinus({ | ||
size = 24, | ||
color = 'currentColor', | ||
...restProps | ||
}) { | ||
return ( | ||
<svg | ||
xmlns='http://www.w3.org/2000/svg' | ||
className='icon icon-tabler icon-tabler-video-minus' | ||
width={size} | ||
height={size} | ||
viewBox='0 0 24 24' | ||
stroke={color} | ||
strokeWidth='2' | ||
fill='none' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
{...restProps} | ||
> | ||
<path stroke='none' d='M0 0h24v24H0z' fill='none' /> | ||
<path d='M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z' /> | ||
<rect x='3' y='6' width='12' height='12' rx='2' /> | ||
<line x1='7' y1='12' x2='11' y2='12' /> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
|
||
export default function VideoOff({ | ||
size = 24, | ||
color = 'currentColor', | ||
...restProps | ||
}) { | ||
return ( | ||
<svg | ||
xmlns='http://www.w3.org/2000/svg' | ||
className='icon icon-tabler icon-tabler-video-off' | ||
width={size} | ||
height={size} | ||
viewBox='0 0 24 24' | ||
stroke={color} | ||
strokeWidth='2' | ||
fill='none' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
{...restProps} | ||
> | ||
<path stroke='none' d='M0 0h24v24H0z' fill='none' /> | ||
<line x1='3' y1='3' x2='21' y2='21' /> | ||
<path d='M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946' /> | ||
<path d='M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1' /> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
|
||
export default function VideoPlus({ | ||
size = 24, | ||
color = 'currentColor', | ||
...restProps | ||
}) { | ||
return ( | ||
<svg | ||
xmlns='http://www.w3.org/2000/svg' | ||
className='icon icon-tabler icon-tabler-video-plus' | ||
width={size} | ||
height={size} | ||
viewBox='0 0 24 24' | ||
stroke={color} | ||
strokeWidth='2' | ||
fill='none' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
{...restProps} | ||
> | ||
<path stroke='none' d='M0 0h24v24H0z' fill='none' /> | ||
<path d='M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z' /> | ||
<rect x='3' y='6' width='12' height='12' rx='2' /> | ||
<line x1='7' y1='12' x2='11' y2='12' /> | ||
<line x1='9' y1='10' x2='9' y2='14' /> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from 'react'; | ||
|
||
export default function Video({ | ||
size = 24, | ||
color = 'currentColor', | ||
...restProps | ||
}) { | ||
return ( | ||
<svg | ||
xmlns='http://www.w3.org/2000/svg' | ||
className='icon icon-tabler icon-tabler-video' | ||
width={size} | ||
height={size} | ||
viewBox='0 0 24 24' | ||
stroke={color} | ||
strokeWidth='2' | ||
fill='none' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
{...restProps} | ||
> | ||
<path stroke='none' d='M0 0h24v24H0z' fill='none' /> | ||
<path d='M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z' /> | ||
<rect x='3' y='6' width='12' height='12' rx='2' /> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.