camelcase svg attributes, fix colours

This commit is contained in:
Alex Louden 2020-08-03 13:09:39 +08:00
parent 199b5a4193
commit 671e3ba8de
No known key found for this signature in database
GPG key ID: E5E90055152127FE
225 changed files with 1223 additions and 978 deletions

View file

@ -4,6 +4,7 @@ const path = require('path')
const fs = require('fs')
const format = require('prettier-eslint')
const upperCamelCase = require('uppercamelcase')
const camelCase = require('camelcase')
const cheerio = require('cheerio')
const rootDir = path.join(__dirname, '..')
@ -51,7 +52,26 @@ const attrsToString = (attrs) => {
const getIconContents = (path) => {
const icon = fs.readFileSync(path, 'utf8')
return cheerio.load(icon)('svg').html()
const $ = cheerio.load(icon)
const svg = $('svg')
svg.find('*').map((i, el) => {
Object.entries(el.attribs).map(([attr, value]) => {
if (attr.includes('-')) {
// camel case attributes
$(el).attr(attr, null) // remove old attribute
$(el).attr(camelCase(attr), value) // add new one
}
if (attr === 'fill' || attr === 'stroke') {
// set non-none fill/stroke to current color
if (value !== 'none') {
$(el).attr(attr, 'currentColor')
}
}
})
})
return svg.html().replace('"currentColor"', '{color}')
}
icons.forEach((i) => {
@ -78,6 +98,7 @@ icons.forEach((i) => {
const element = `
import React, {forwardRef} from 'react';
import PropTypes from 'prop-types';
const ${ComponentName} = forwardRef(({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
<svg ref={ref} ${attrsToString(defaultAttrs)}>

View file

@ -29,6 +29,7 @@
"@babel/preset-react": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"camelcase": "^6.0.0",
"cheerio": "^1.0.0-rc.3",
"concurrently": "^5.1.0",
"prettier-eslint": "^9.0.0",

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const AlarmClock = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const AlarmClock = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(-1 0 0 1 20 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m8.5 2.56534572h2c3.3137085 0 6 2.6862915 6 6v1.93465428c0 3.3137085-2.6862915 6-6 6h-2c-3.3137085 0-6-2.6862915-6-6v-1.93465428c0-3.3137085 2.6862915-6 6-6z"></path>
<path

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Archive = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Archive = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m1.5 4.5h14v7.9976807c0 1.1045695-.8954305 2-2 2h-10c-1.1045695 0-2-.8954305-2-2zm0-3.9777832h14c.5522847 0 1 .44771525 1 1v1.9777832c0 .55228475-.4477153 1-1 1h-14c-.55228475 0-1-.44771525-1-1v-1.9777832c0-.55228475.44771525-1 1-1z"></path>
<path d="m6.5 7.5h4"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ArrowDown = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ArrowDown = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(6 4)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m7.328 6.67.001 5.658-5.658-.001"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ArrowDownCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ArrowDownCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(0 1 -1 0 20 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<path

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ArrowLeft = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ArrowLeft = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 6)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<polyline
points="1.67 1.669 7.327 1.671 7.328 7.328"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ArrowLeftCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ArrowLeftCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(-1 0 0 1 20 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<path

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ArrowRight = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ArrowRight = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4 6)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<polyline
points="12.329 7.328 12.328 1.67 6.671 1.669"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ArrowRightCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ArrowRightCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<path

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ArrowUp = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ArrowUp = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(6 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<polyline
points="7.324 1.661 7.324 7.318 1.647 7.339"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ArrowUpCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ArrowUpCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(0 -1 1 0 2 19)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<path

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Backward = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Backward = forwardRef(
>
<path
fill="none"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
d="M2.88383653,4.5350696 C6.21696198,0.535925111 9.98791618,-0.406545601 14.1966991,1.70765746 C9.87317822,1.47889363 7.0447511,3.36451171 5.71141777,7.36451171 L5.7106703,7.3629127 L7.83273811,9.48583206 L0.761670299,9.48583206 L0.761670299,2.41476425 Z"
transform="rotate(45 2.114 12.799)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Bag = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -19,10 +20,10 @@ const Bag = forwardRef(
<path
d="m2.42575356.50254623 8.09559774-.00228582c.5209891-.0001471.9548019.39973171.9969972.91900928l.8938128 10.99973961c.0447299.5504704-.3652538 1.0329756-.9157242 1.0777056-.0269414.0021892-.0539605.0032851-.0809907.0032851h-9.83555122c-.55228475 0-1-.4477152-1-1 0-.0255993.00098299-.0511891.00294679-.076713l.84614072-10.99745378c.0400765-.52088193.4743495-.92313949.99677087-.92328699zm7.07424644 3.64272599v1c0 1.10456949-1.8954305 1.35472778-3 1.35472778s-3-.3954305-3-1.5v-1"
fill="none"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4 4)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Battery75 = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,22 +17,22 @@ const Battery75 = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 6)">
<g fill="none" transform="translate(2 6)" fillRule="evenodd">
<path
d="m2.5.5h10c1.1045695 0 2 .8954305 2 2v3c0 1.1045695-.8954305 2-2 2h-10c-1.1045695 0-2-.8954305-2-2v-3c0-1.1045695.8954305-2 2-2z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path
d="m3 2h7c.5522847 0 1 .44771525 1 1v2.04629283c0 .55228475-.4477153 1-1 1h-7c-.55228475 0-1-.44771525-1-1v-2.04629283c0-.55228475.44771525-1 1-1z"
fill="#2a2e3b"
fill="currentColor"
></path>
<path
d="m16.5 2.5v3"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const BatteryCharging = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const BatteryCharging = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 4)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m10 2.5 2.5000003-.00147233c1.1045687-.00182804 2.0005264.89307496 2.0011769 1.99764427.0000002.00039262.0000003.00078524-.0011772.00117786v3c0 1.1045695-.8954305 2-2 2h-2.5m-4 .0026502h-3.51261486c-1.1045695 0-2-.8954305-2-2v-3c0-1.1045695.8954305-2 2-2h2.51261486"></path>
<path d="m8.5 5.5h2.5l-3.6 6.5.1-5.5h-3l4-6z"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const BatteryEmpty = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const BatteryEmpty = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 6)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2.5.5h10c1.1045695 0 2 .8954305 2 2v3c0 1.1045695-.8954305 2-2 2h-10c-1.1045695 0-2-.8954305-2-2v-3c0-1.1045695.8954305-2 2-2z"></path>
<path d="m16.5 2.5v3"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const BatteryFull = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,22 +17,22 @@ const BatteryFull = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 6)">
<g fill="none" transform="translate(2 6)" fillRule="evenodd">
<path
d="m2.5.5h10c1.1045695 0 2 .8954305 2 2v3c0 1.1045695-.8954305 2-2 2h-10c-1.1045695 0-2-.8954305-2-2v-3c0-1.1045695.8954305-2 2-2z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path
d="m3 2h9c.5522847 0 1 .44771525 1 1v2c0 .55228475-.4477153 1-1 1h-9c-.55228475 0-1-.44771525-1-1v-2c0-.55228475.44771525-1 1-1z"
fill="#2a2e3b"
fill="currentColor"
></path>
<path
d="m16.5 2.5v3"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const BatteryHalf = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,22 +17,22 @@ const BatteryHalf = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 6)">
<g fill="none" transform="translate(2 6)" fillRule="evenodd">
<path
d="m2.5.5h10c1.1045695 0 2 .8954305 2 2v3c0 1.1045695-.8954305 2-2 2h-10c-1.1045695 0-2-.8954305-2-2v-3c0-1.1045695.8954305-2 2-2z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path
d="m3 2h4c.55228475 0 1 .44771525 1 1v2c0 .55228475-.44771525 1-1 1h-4c-.55228475 0-1-.44771525-1-1v-2c0-.55228475.44771525-1 1-1z"
fill="#2a2e3b"
fill="currentColor"
></path>
<path
d="m16.5 2.5v3"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const BatteryLow = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,22 +17,22 @@ const BatteryLow = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 6)">
<g fill="none" transform="translate(2 6)" fillRule="evenodd">
<path
d="m2.5.49734981h10c1.1045695 0 2 .8954305 2 2v3.00265019c0 1.1045695-.8954305 2-2 2h-10c-1.1045695 0-2-.8954305-2-2v-3.00265019c0-1.1045695.8954305-2 2-2z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path
d="m3 2c.55228475 0 1 .44771525 1 1v2c0 .55228475-.44771525 1-1 1s-1-.44771525-1-1v-2c0-.55228475.44771525-1 1-1z"
fill="#2a2e3b"
fill="currentColor"
></path>
<path
d="m16.5 2.5v1.5 1.5"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Bell = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -19,10 +20,10 @@ const Bell = forwardRef(
<path
d="m2.41547595 3.5h10.16904815c.9116644 0 1.6507144.73905002 1.6507144 1.65071443 0 .299182-.0813106.59273912-.2352385.84928557-.9815222 1.63587038-1.5 3.50773964-1.5 5.4154759v1.0845241c0 2.209139-1.790861 4-4 4h-2c-2.209139 0-4-1.790861-4-4v-1.0845241c0-1.90773626-.51847777-3.77960552-1.5-5.4154759-.46904747-.78174578-.2155554-1.79571405.56619038-2.26476152.25654645-.15392786.55010357-.23523848.84928557-.23523848zm2.58452405-1.5c.66666667-1 1.5-1.5 2.5-1.5s1.83333333.5 2.5 1.5"
fill="none"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(-1 0 0 -1 18 19)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const BellDisabled = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const BellDisabled = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(-1 0 0 -1 18 19)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2.5 3.5h10.0845241c.9116644 0 1.6507144.73905002 1.6507144 1.65071443 0 .299182-.0813106.59273912-.2352385.84928557-.9815222 1.63587038-1.5 3.50773964-1.5 5.4154759v1.0845241c0 .2743851-.0276272.5423176-.0802516.8011674m-1.2832087 2.207002c-.7039698.6174972-1.62653961.9918306-2.6365397.9918306h-2c-2.209139 0-4-1.790861-4-4v-1.0845241c0-1.90773626-.51847777-3.77960552-1.5-5.4154759-.23818692-.39697819-.29005196-.85383979-.18103675-1.26881839"></path>
<path d="m1 1.929 13 13.071"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const BellRinging = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const BellRinging = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(-1 0 0 -1 19 19)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m3.41547595 3.5h10.16904815c.9116644 0 1.6507144.73905002 1.6507144 1.65071443 0 .299182-.0813106.59273912-.2352385.84928557-.9815222 1.63587038-1.5 3.50773964-1.5 5.4154759v1.0845241c0 2.209139-1.790861 4-4 4h-2c-2.209139 0-4-1.790861-4-4v-1.0845241c0-1.90773626-.51847777-3.77960552-1.5-5.4154759-.46904747-.78174578-.2155554-1.79571405.56619038-2.26476152.25654645-.15392786.55010357-.23523848.84928557-.23523848z"></path>
<path

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const BellSnooze = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const BellSnooze = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 1)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m2.5 9.41547595c0-1.90773631-.51847777-3.77960557-1.5-5.41547595-.46904747-.78174578-.2155554-1.79571405.56619038-2.26476152.25654645-.15392786.55010357-.23523848.84928557-.23523848h10.16904815c.9116644 0 1.6507144.73905002 1.6507144 1.65071443 0 .299182-.0813106.59273912-.2352385.84928557-.9815222 1.63587038-1.5 3.50773964-1.5 5.41547595v1.08452405c0 2.209139-1.790861 4-4 4h-2c-.80352907 0-1.55172031-.2369294-2.17852351-.644738"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const BookmarkBook = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const BookmarkBook = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2.5.5h8c1.1045695 0 2 .8954305 2 2v10c0 1.1045695-.8954305 2-2 2h-8c-1.1045695 0-2-.8954305-2-2v-10c0-1.1045695.8954305-2 2-2z"></path>
<path d="m3.5.5h4v5.012l-2-2.012-2 2.012z"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Branch = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Branch = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(-1 0 0 1 17.335 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m12.835.5v5h-5" transform="matrix(1 0 0 -1 0 6)"></path>
<path

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Browser = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Browser = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m13-1h-9c-1.1045695 0-2 .8954305-2 2v12c0 1.1045695.8954305 2 2 2h9c1.1045695 0 2-.8954305 2-2v-12c0-1.1045695-.8954305-2-2-2z"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const BrowserAlt = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const BrowserAlt = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m13-1h-9c-1.1045695 0-2 .8954305-2 2v12c0 1.1045695.8954305 2 2 2h9c1.1045695 0 2-.8954305 2-2v-12c0-1.1045695-.8954305-2-2-2z"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ButtonAdd = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ButtonAdd = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4 4)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m10.5.5h-8c-1.1045695 0-2 .8954305-2 2v8c0 1.1045695.8954305 2 2 2h8c1.1045695 0 2-.8954305 2-2v-8c0-1.1045695-.8954305-2-2-2z"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ButtonMinus = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ButtonMinus = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(0 1 -1 0 17 4)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m10.5.5h-8c-1.1045695 0-2 .8954305-2 2v8c0 1.1045695.8954305 2 2 2h8c1.1045695 0 2-.8954305 2-2v-8c0-1.1045695-.8954305-2-2-2z"></path>
<path d="m6.5 3.5v6"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Calendar = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Calendar = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v12c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-12c0-1.1045695.8954305-2 2-2z"></path>
<path d="m.5 4.5h16"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarAdd = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const CalendarAdd = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v12c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-12c0-1.1045695.8954305-2 2-2z"></path>
<path d="m.5 4.5h16"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarDate = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,22 +17,22 @@ const CalendarDate = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<g fill="none" transform="translate(2 2)" fillRule="evenodd">
<path
d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v11.9903615c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-11.9903615c0-1.1045695.8954305-2 2-2z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path
d="m.659 4.5h15.841"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path
d="m4.81640625 11.1552734v-1.0791015h.87890625c.66894531 0 1.12304688-.39550784 1.12304688-.97167971 0-.52734375-.41503907-.92773438-1.10351563-.92773438-.71289063 0-1.15234375.36621094-1.20117187.99609375h-1.36230469c.04882812-1.29882812 1.04980469-2.17285156 2.63671875-2.17285156 1.5625 0 2.43164062.86425781 2.42675781 1.89453125-.00488281.85449219-.54199219 1.41601565-1.29882813 1.60156255v.0927734c.98144532.1416016 1.57714844.7666016 1.57714844 1.7089844 0 1.2353515-1.16210937 2.109375-2.75390625 2.109375-1.59179687 0-2.67578125-.8691407-2.73925781-2.2021485h1.41113281c.04394531.5957031.55175781.9765625 1.30859375.9765625.74707032 0 1.26953125-.4052734 1.26953125-1.015625 0-.625-.48828125-1.0107422-1.27929687-1.0107422zm6.69433595 3.0712891v-5.61035156h-.0878906l-1.72851566 1.19140625v-1.37207031l1.82128906-1.25488282h1.4697266v7.04589844z"
fill="#2a2e3b"
fill="currentColor"
></path>
</g>
</svg>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarDay = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,20 +17,20 @@ const CalendarDay = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<g fill="none" transform="translate(2 2)" fillRule="evenodd">
<path
d="m2.5.5h12.0269119c1.1045695 0 2 .8954305 2 2v11.9907459c0 1.1045695-.8954305 2-2 2-.0031997 0-.0063994-.0000077-.0095991-.000023l-12.02691193-.0577246c-1.10080997-.0052835-1.99040087-.8991544-1.99040087-1.999977v-11.9330213c0-1.1045695.8954305-2 2-2z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path
d="m.5 4.5h16.027"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
<circle cx="4.5" cy="8.5" fill="#2a2e3b" r="1"></circle>
<circle cx="4.5" cy="8.5" fill="currentColor" r="1"></circle>
</g>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarDays = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,20 +17,20 @@ const CalendarDays = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<g fill="none" transform="translate(2 2)" fillRule="evenodd">
<path
d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v12c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-12c0-1.1045695.8954305-2 2-2z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path
d="m.5 4.5h16"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
<g fill="#2a2e3b">
<g fill="currentColor">
<g>
<circle cx="8.5" cy="8.5" r="1"></circle>
<circle cx="4.5" cy="8.5" r="1"></circle>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarLastDay = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,20 +17,20 @@ const CalendarLastDay = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<g fill="none" transform="translate(2 2)" fillRule="evenodd">
<path
d="m2.5.5h12.0269119c1.1045695 0 2 .8954305 2 2v11.9907459c0 1.1045695-.8954305 2-2 2-.0031997 0-.0063994-.0000077-.0095991-.000023l-12.02691193-.0577246c-1.10080997-.0052835-1.99040087-.8991544-1.99040087-1.999977v-11.9330213c0-1.1045695.8954305-2 2-2z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path
d="m.5 4.5h16.027"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
<circle cx="12.5" cy="12.5" fill="#2a2e3b" r="1"></circle>
<circle cx="12.5" cy="12.5" fill="currentColor" r="1"></circle>
</g>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarMonth = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,20 +17,20 @@ const CalendarMonth = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<g fill="none" transform="translate(2 2)" fillRule="evenodd">
<path
d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v12c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-12c0-1.1045695.8954305-2 2-2z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path
d="m.5 4.5h16"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
<g fill="#2a2e3b">
<g fill="currentColor">
<g>
<circle cx="8.5" cy="8.5" r="1"></circle>
<circle cx="4.5" cy="8.5" r="1"></circle>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarMove = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const CalendarMove = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(1 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m1.5 8.46153846v-6.02882304c0-1.1045695.8954305-2 2-2 .00320511 0 .00641021.00000771.00961527.00002312l12.00000003.0576923c1.1008036.00529233 1.9903847.89916054 1.9903847 1.99997689v11.99995377c0 1.1045695-.8954305 2-2 2-.0032051 0-.0064102-.0000077-.0096153-.0000231l-11.99999997-.0576923c-1.10080364-.0052923-1.99038473-.8991606-1.99038473-1.9999769v-1.9326692"></path>
<path d="m1.5 4.5h16"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarRemove = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const CalendarRemove = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v12c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-12c0-1.1045695.8954305-2 2-2z"></path>
<path d="m.5 4.5h16"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarSplit = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const CalendarSplit = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v12c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-12c0-1.1045695.8954305-2 2-2z"></path>
<path d="m.5 4.5h16"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarWeek = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const CalendarWeek = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v12c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-12c0-1.1045695.8954305-2 2-2z"></path>
<path d="m.5 4.5h16"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Capture = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Capture = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m16.5.48528137v3.00587879c0 1.10227101-.8918463 1.99674656-1.9941126 1.99999133l-3.0058874.00884851"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Cart = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,16 +17,16 @@ const Cart = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(3 4)">
<g fill="none" transform="translate(3 4)" fillRule="evenodd">
<path
d="m2.5.6151756h11v5.8848244c0 1.1045695-.8954305 2-2 2h-6.23763117c-1.00727706 0-1.85737301-.74909131-1.98410666-1.74836387z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path d="m12 10h2v2h-2z" fill="#2a2e3b"></path>
<path d="m5 10h2v2h-2z" fill="#2a2e3b"></path>
<g stroke="#2a2e3b" stroke-linecap="round" stroke-linejoin="round">
<path d="m12 10h2v2h-2z" fill="currentColor"></path>
<path d="m5 10h2v2h-2z" fill="currentColor"></path>
<g stroke="currentColor" strokeLinecap="round" strokeLinejoin="round">
<path d="m.5.5h13"></path>
<path d="m3 3.5h10.5"></path>
</g>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Chain = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Chain = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4 4)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m5.5 7.5c.96940983 1.36718798 3.01111566 1.12727011 4.01111565 0l1.98888435-2c1.1243486-1.22807966 1.1641276-2.81388365 0-4-1.135619-1.15706921-2.86438099-1.15706947-4 0l-2 2"></path>
<path

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChatAdd = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ChatAdd = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m11.4182262 1.21376122c-.904128-.29938651-1.88845542-.46376122-2.9182262-.46376122-4.418278 0-8 3.02593755-8 6.75862069 0 1.45741942.54603279 2.80709561 1.47469581 3.91098161l-.97469581 4.5803977 3.91607376-2.4472652c1.07810761.4571647 2.29544433.7145066 3.58392624.7145066 4.418278 0 8-3.0259376 8-6.75862071 0-.68476204-.1205394-1.34573924-.3446699-1.96861327"></path>
<path d="m14.5.5v4"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Check = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -19,10 +20,10 @@ const Check = forwardRef(
<path
d="m.5 5.5 3 3 8.028-8"
fill="none"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(5 6)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CheckCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const CheckCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<path d="m5.5 9.5 2 2 5-5"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronDown = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -19,10 +20,10 @@ const ChevronDown = forwardRef(
<path
d="m8.5.5-4 4-4-4"
fill="none"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(6 8)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronDownCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ChevronDownCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="rotate(90 8.5 10.5)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<polyline

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronDownDouble = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ChevronDownDouble = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(6 6)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m8.5.5-4 4-4-4"></path>
<path d="m8.5 4.5-4 4-4-4"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronLeft = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -19,10 +20,10 @@ const ChevronLeft = forwardRef(
<path
d="m4.5 8.5-4-4 4-4"
fill="none"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(7 6)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronLeftCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ChevronLeftCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(-1 0 0 1 19 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<polyline

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronLeftDouble = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ChevronLeftDouble = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(5 6)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m8.5 8.5-4-4 4-4"></path>
<path d="m4.5 8.5-4-4 4-4"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronRight = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -19,10 +20,10 @@ const ChevronRight = forwardRef(
<path
d="m.5 8.5 4-4-4-4"
fill="none"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(9 6)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronRightCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ChevronRightCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<polyline

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronRightDouble = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ChevronRightDouble = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(7 6)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m.5 8.5 4-4-4-4"></path>
<path d="m4.5 8.5 4-4-4-4"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronUp = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ChevronUp = forwardRef(
>
<polyline
fill="none"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
points="7.328 1.672 7.328 7.328 1.672 7.328"
transform="rotate(-135 9.157 7.258)"
strokeLinecap="round"
strokeLinejoin="round"
></polyline>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronUpCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ChevronUpCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="rotate(-90 10.5 8.5)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<polyline

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronUpDouble = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ChevronUpDouble = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(6 6)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<polyline
points="7.328 5.672 7.328 11.328 1.672 11.328"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Circle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -21,9 +22,9 @@ const Circle = forwardRef(
cy="10.5"
fill="none"
r="8"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></circle>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Code = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Code = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<line x1="10.5" x2="6.5" y1=".5" y2="14.5"></line>
<polyline

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Coffee = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Coffee = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2.5 6.5h6c1.1045695 0 2 .8954305 2 2v2.5c0 2.4852814-2.01471863 4.5-4.5 4.5h-1c-2.48528137 0-4.5-2.0147186-4.5-4.5v-2.5c0-1.1045695.8954305-2 2-2zm8 2h1c1.1045695 0 2 .8954305 2 2s-.8954305 2-2 2h-1"></path>
<path d="m4.5 4.5v-4"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Coin = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Coin = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 6)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m.5 3.5c0-1.29949353 3.13400675-3 7-3 3.8659932 0 7 1.70050647 7 3v3c0 1.29949353-3.1340068 3-7 3-3.86599325 0-7-1.70050647-7-3 0-.64128315 0-2.35871685 0-3z"></path>
<path d="m7.5 6.48363266c3.8659932 0 7-1.60524012 7-2.985952 0-1.38071187-3.1340068-2.99768066-7-2.99768066-3.86599325 0-7 1.61696879-7 2.99768066 0 1.38071188 3.13400675 2.985952 7 2.985952z"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Coins = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Coins = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(1 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m17.5 8.5v3c0 1.2994935-3.1340068 3-7 3-3.86599325 0-7-1.7005065-7-3 0-.4275221 0-1.2608554 0-2.5"></path>
<path d="m3.79385803 9.25873308c.86480173 1.14823502 3.53999333 2.22489962 6.70614197 2.22489962 3.8659932 0 7-1.60524016 7-2.98595204 0-.77476061-.9867994-1.62391104-2.5360034-2.22001882"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Compass = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Compass = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<polygon

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ComponentAdd = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ComponentAdd = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m.5 9v3.5c0 1.1045695.8954305 2 2 2h7c1.1045695 0 2-.8954305 2-2v-7c0-1.1045695-.8954305-2-2-2h-3.5"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Contract = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Contract = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m7.5.5v5.056h-5.5"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Create = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Create = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m7 2.5h-4.5c-1.1045695 0-2 .8954305-2 2v9.0003682c0 1.1045695.8954305 2 2 2h10c1.1045695 0 2-.8954305 2-2v-4.5003682"></path>
<path

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CreditCard = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,14 +17,14 @@ const CreditCard = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 5)">
<g fill="none" transform="translate(2 5)" fillRule="evenodd">
<path
d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v7c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-7c0-1.1045695.8954305-2 2-2z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<path d="m0 4h17v2h-17z" fill="#2a2e3b"></path>
<path d="m0 4h17v2h-17z" fill="currentColor"></path>
</g>
</svg>
)

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Cross = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Cross = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(5 5)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m.5 10.5 10-10"></path>
<path d="m10.5 10.5-10-10z"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CrossCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const CrossCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<g transform="matrix(0 1 -1 0 17 0)">

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Crosshair = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Crosshair = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m16.5.5v3c0 1.1045695-.8954305 2-2 2h-3"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Cylinder = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Cylinder = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(5 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m.5 3.35294118c0-1.29949353 2-2.85294118 5-2.85294118s5 1.55344765 5 2.85294118v10.29411762c0 1.2994936-2 2.8529412-5 2.8529412s-5-1.5534476-5-2.8529412c0-.6412831 0-9.65283447 0-10.29411762z"></path>
<path d="m.5 3.5c0 1.38071187 2 3 5 3s5-1.61928813 5-3"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Database = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Database = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m.5 3.20588235c0-1.29949353 2.5-2.74110534 6-2.70588235s6 1.55344765 6 2.85294118v10.29411762c0 1.2994936-2.5 2.8529412-6 2.8529412s-6-1.7005065-6-3c0-.6412832 0-9.65283449 0-10.29411765z"></path>
<path d="m.5 3.5c0 1.38071187 2 3 6 3s6-1.63689962 6-3.0176115m-12 5.0176115c0 1.38071187 2 3 6 3s6-1.63689962 6-3.0176115"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Diamond = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Diamond = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 4)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m13.5 0 3 4-8 10-8-10 3.009-4z"></path>
<path d="m.5 4h16"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Disc = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,10 +19,10 @@ const Disc = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="10.5" cy="10.5" r="8"></circle>
<circle cx="10.5" cy="10.5" r="2.5"></circle>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Display = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Display = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2 .5h11c1.1045695 0 2 .8954305 2 2v6.04882185c0 1.1045695-.8954305 1.99999995-2 1.99999995-.0025044 0-.0050088-.0000047-.0075132-.0000141l-10.99999997-.0413227c-1.10162878-.0041384-1.99248683-.89834933-1.99248683-1.99998589v-6.00749911c0-1.1045695.8954305-2 2-2z"></path>
<path d="m2.464 12.5h10.036"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const DisplayAlt = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const DisplayAlt = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2 4.5h11c1.1045695 0 2 .8954305 2 2v6.0488218c0 1.1045695-.8954305 2-2 2-.0025044 0-.0050088-.0000047-.0075132-.0000141l-10.99999997-.0413227c-1.10162878-.0041384-1.99248683-.8983493-1.99248683-1.9999859v-6.0074991c0-1.1045695.8954305-2 2-2z"></path>
<path d="m2.464 2.5h10.036"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Document = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Document = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m12.5 12.5v-7l-5-5h-5c-1.1045695 0-2 .8954305-2 2v10c0 1.1045695.8954305 2 2 2h8c1.1045695 0 2-.8954305 2-2z"></path>
<path d="m2.5 7.5h5"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Download = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Download = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m9.221 4.716.165 5.821-5.792-.135"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const DownloadAlt = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const DownloadAlt = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m10.334 5.685-5.641-.016-.016 5.673"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Drag = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,10 +19,10 @@ const Drag = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m4.5 7.5h12"></path>
<path d="m4.498 10.5h11.997"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const DragCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,10 +19,10 @@ const DragCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="10.5" cy="10.5" r="8"></circle>
<path d="m6.5 8.5h8"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Enter = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Enter = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m8.621 5.379v4.242h-4.242"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const EnterAlt = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const EnterAlt = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(-1 0 0 1 19 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m9.634 5.384-.025 4.267h-4.243"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ExitLeft = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ExitLeft = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="matrix(-1 0 0 1 18 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m12.717 5.379-.068 4.175-4.175.067"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ExitRight = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ExitRight = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4 3)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m12.717 5.379-.068 4.175-4.175.067"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Expand = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Expand = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<polyline
points="16.5 .522 16.5 5.5 11 5.487"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ExpandHeight = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ExpandHeight = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2A2E3B"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="rotate(-90 11.5 9.5)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<line
x1="14.243"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ExpandWidth = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const ExpandWidth = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(1 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m9.45.814v5.657h-5.657"

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const FaceDelighted = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,22 +17,22 @@ const FaceDelighted = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<g fill="none" transform="translate(2 2)" fillRule="evenodd">
<circle
cx="8.5"
cy="8.5"
r="8"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></circle>
<circle cx="6" cy="6" fill="#2a2e3b" r="1"></circle>
<circle cx="11" cy="6" fill="#2a2e3b" r="1"></circle>
<circle cx="6" cy="6" fill="currentColor" r="1"></circle>
<circle cx="11" cy="6" fill="currentColor" r="1"></circle>
<path
d="m5 10c.33294678 2.3333333 1.49961344 3.5 3.5 3.5 2.0003866 0 3.1670532-1.1666667 3.5-3.5z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const FaceHappy = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,22 +17,22 @@ const FaceHappy = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<g fill="none" transform="translate(2 2)" fillRule="evenodd">
<circle
cx="8.5"
cy="8.5"
r="8"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></circle>
<circle cx="6" cy="6" fill="#2a2e3b" r="1"></circle>
<circle cx="11" cy="6" fill="#2a2e3b" r="1"></circle>
<circle cx="6" cy="6" fill="currentColor" r="1"></circle>
<circle cx="11" cy="6" fill="currentColor" r="1"></circle>
<path
d="m5 10c.93619792 1 2.10286458 1.5 3.5 1.5s2.5638021-.5 3.5-1.5"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const FaceNeutral = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,23 +17,23 @@ const FaceNeutral = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<g fill="none" transform="translate(2 2)" fillRule="evenodd">
<circle
cx="8.5"
cy="8.5"
r="8"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></circle>
<circle cx="6" cy="6" fill="#2a2e3b" r="1"></circle>
<circle cx="11" cy="6" fill="#2a2e3b" r="1"></circle>
<circle cx="6" cy="6" fill="currentColor" r="1"></circle>
<circle cx="11" cy="6" fill="currentColor" r="1"></circle>
<path
d="m5.5 10.5h6"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
transform="matrix(1 0 0 -1 0 21)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const FaceSad = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -16,21 +17,21 @@ const FaceSad = forwardRef(
strokeLinejoin="round"
{...rest}
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<g fill="none" transform="translate(2 2)" fillRule="evenodd">
<path
d="m8.5 16.5c4.418278 0 8-3.581722 8-8s-3.581722-8-8-8-8 3.581722-8 8 3.581722 8 8 8z"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></path>
<circle cx="6" cy="6" fill="#2a2e3b" r="1"></circle>
<circle cx="11" cy="6" fill="#2a2e3b" r="1"></circle>
<circle cx="6" cy="6" fill="currentColor" r="1"></circle>
<circle cx="11" cy="6" fill="currentColor" r="1"></circle>
<path
d="m5 10c.93619792 1 2.10286458 1.5 3.5 1.5s2.5638021-.5 3.5-1.5"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke="currentColor"
transform="matrix(1 0 0 -1 0 21.5)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Filter = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,10 +19,10 @@ const Filter = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m4.5 7.5h12"></path>
<path d="m6.5 10.5h8"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const FilterCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,10 +19,10 @@ const FilterCircle = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="10.5" cy="10.5" r="8"></circle>
<path d="m6.5 8.5h8"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Fingerprint = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const Fingerprint = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(4.5 2.5)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m12 10.03c0 2.7448552-1.2554932 5.97-6 5.97-.75780542 0-1.42660143-.0822778-2.01548904-.2317346m-1.76100565-.7815476c-1.68909404-1.1706539-2.22350531-3.1659055-2.22350531-4.9567178v-4.03c0-1.56622031.65466451-2.97953554 1.70527792-3.98123005m1.67130335-1.35397567c.77973587-.42395337 1.6734516-.66479428 2.62341873-.66479428 1.75280799 0 3.49283909.72275393 4.5 2m1.2058722 1.22085393c.1906672.55804827.2941278 1.15651492.2941278 1.77914607 0-.66666667 0 .33333333 0 3"></path>
<path d="m2.5 13.015c-.32893023-.6677284-.5-1.4021207-.5-2.1464703v-1.8685297-3c0-2.209139 1.790861-4 4-4s4 1.790861 4 4v4.03"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const FolderAdd = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const FolderAdd = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 4)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m.5 1.5v9c0 1.1045695.8954305 2 2 2h10c1.1045695 0 2-.8954305 2-2v-6.00280762c.000802-1.1045695-.8946285-2-1.999198-2-.0002674 0-.0005348.00000006-.0008018.00080218l-5.0000002.00200544-2-2h-4c-.55228475 0-1 .44771525-1 1z"></path>
<path d="m5.5 7.5h4"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const FolderClosed = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const FolderClosed = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 4)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m.5 1.5v9c0 1.1045695.8954305 2 2 2h10c1.1045695 0 2-.8954305 2-2v-6.00280762c.000802-1.1045695-.8946285-2-1.999198-2-.0002674 0-.0005348.00000006-.0008018.00080218l-5.0000002.00200544-2-2h-4c-.55228475 0-1 .44771525-1 1z"></path>
<path d="m.5 2.5h7"></path>

View file

@ -1,5 +1,6 @@
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const FolderMinus = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
@ -18,11 +19,11 @@ const FolderMinus = forwardRef(
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
stroke={color}
transform="translate(3 4)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m.5 1.5v9c0 1.1045695.8954305 2 2 2h10c1.1045695 0 2-.8954305 2-2v-6.00280762c.000802-1.1045695-.8946285-2-1.999198-2-.0002674 0-.0005348.00000006-.0008018.00080218l-5.0000002.00200544-2-2h-4c-.55228475 0-1 .44771525-1 1z"></path>
<path d="m5.5 7.5h4"></path>

Some files were not shown because too many files have changed in this diff Show more