diff --git a/react/bin/build.js b/react/bin/build.js index f08715e..4f1db98 100644 --- a/react/bin/build.js +++ b/react/bin/build.js @@ -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 ( diff --git a/react/package.json b/react/package.json index 9fbe868..79c0f2b 100644 --- a/react/package.json +++ b/react/package.json @@ -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", diff --git a/react/src/icons/alarm_clock.js b/react/src/icons/alarm_clock.js index accf92d..742c5bb 100644 --- a/react/src/icons/alarm_clock.js +++ b/react/src/icons/alarm_clock.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const Archive = forwardRef( > diff --git a/react/src/icons/arrow_down.js b/react/src/icons/arrow_down.js index 7c6977e..9a7d451 100644 --- a/react/src/icons/arrow_down.js +++ b/react/src/icons/arrow_down.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const ArrowDownCircle = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ArrowLeft = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ArrowLeftCircle = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ArrowRight = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ArrowRightCircle = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ArrowUp = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ArrowUpCircle = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Backward = forwardRef( > ) diff --git a/react/src/icons/bag.js b/react/src/icons/bag.js index ec16db8..0f8c197 100644 --- a/react/src/icons/bag.js +++ b/react/src/icons/bag.js @@ -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( ) diff --git a/react/src/icons/battery_75.js b/react/src/icons/battery_75.js index e42cdb1..0ccdaee 100644 --- a/react/src/icons/battery_75.js +++ b/react/src/icons/battery_75.js @@ -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} > - + diff --git a/react/src/icons/battery_charging.js b/react/src/icons/battery_charging.js index e5ddce4..8ca90c0 100644 --- a/react/src/icons/battery_charging.js +++ b/react/src/icons/battery_charging.js @@ -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( > diff --git a/react/src/icons/battery_empty.js b/react/src/icons/battery_empty.js index e48073a..564366f 100644 --- a/react/src/icons/battery_empty.js +++ b/react/src/icons/battery_empty.js @@ -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( > diff --git a/react/src/icons/battery_full.js b/react/src/icons/battery_full.js index e8667e2..a1c52ec 100644 --- a/react/src/icons/battery_full.js +++ b/react/src/icons/battery_full.js @@ -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} > - + diff --git a/react/src/icons/battery_half.js b/react/src/icons/battery_half.js index cd4711b..d2c1d7b 100644 --- a/react/src/icons/battery_half.js +++ b/react/src/icons/battery_half.js @@ -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} > - + diff --git a/react/src/icons/battery_low.js b/react/src/icons/battery_low.js index b19f35f..3961b1b 100644 --- a/react/src/icons/battery_low.js +++ b/react/src/icons/battery_low.js @@ -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} > - + diff --git a/react/src/icons/bell.js b/react/src/icons/bell.js index 034f759..5bfccf1 100644 --- a/react/src/icons/bell.js +++ b/react/src/icons/bell.js @@ -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( ) diff --git a/react/src/icons/bell_disabled.js b/react/src/icons/bell_disabled.js index f517e52..0d7be51 100644 --- a/react/src/icons/bell_disabled.js +++ b/react/src/icons/bell_disabled.js @@ -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( > diff --git a/react/src/icons/bell_ringing.js b/react/src/icons/bell_ringing.js index 1c4cd40..7c18c2b 100644 --- a/react/src/icons/bell_ringing.js +++ b/react/src/icons/bell_ringing.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const BellSnooze = forwardRef( > { return ( @@ -18,11 +19,11 @@ const BookmarkBook = forwardRef( > diff --git a/react/src/icons/branch.js b/react/src/icons/branch.js index a97eac5..4fddf0f 100644 --- a/react/src/icons/branch.js +++ b/react/src/icons/branch.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const Browser = forwardRef( > { return ( @@ -18,11 +19,11 @@ const BrowserAlt = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ButtonAdd = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ButtonMinus = forwardRef( > diff --git a/react/src/icons/calendar.js b/react/src/icons/calendar.js index b6ac283..e347189 100644 --- a/react/src/icons/calendar.js +++ b/react/src/icons/calendar.js @@ -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( > diff --git a/react/src/icons/calendar_add.js b/react/src/icons/calendar_add.js index d6f522f..1eef783 100644 --- a/react/src/icons/calendar_add.js +++ b/react/src/icons/calendar_add.js @@ -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( > diff --git a/react/src/icons/calendar_date.js b/react/src/icons/calendar_date.js index 67247e7..df20082 100644 --- a/react/src/icons/calendar_date.js +++ b/react/src/icons/calendar_date.js @@ -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} > - + diff --git a/react/src/icons/calendar_day.js b/react/src/icons/calendar_day.js index 9361c4d..ae703c9 100644 --- a/react/src/icons/calendar_day.js +++ b/react/src/icons/calendar_day.js @@ -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} > - + - + ) diff --git a/react/src/icons/calendar_days.js b/react/src/icons/calendar_days.js index 724d1e4..b631441 100644 --- a/react/src/icons/calendar_days.js +++ b/react/src/icons/calendar_days.js @@ -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} > - + - + diff --git a/react/src/icons/calendar_last_day.js b/react/src/icons/calendar_last_day.js index 4a62a8c..95bf790 100644 --- a/react/src/icons/calendar_last_day.js +++ b/react/src/icons/calendar_last_day.js @@ -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} > - + - + ) diff --git a/react/src/icons/calendar_month.js b/react/src/icons/calendar_month.js index 08f1fd4..5fc3907 100644 --- a/react/src/icons/calendar_month.js +++ b/react/src/icons/calendar_month.js @@ -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} > - + - + diff --git a/react/src/icons/calendar_move.js b/react/src/icons/calendar_move.js index be6b941..9a89df5 100644 --- a/react/src/icons/calendar_move.js +++ b/react/src/icons/calendar_move.js @@ -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( > diff --git a/react/src/icons/calendar_remove.js b/react/src/icons/calendar_remove.js index ca52993..01291db 100644 --- a/react/src/icons/calendar_remove.js +++ b/react/src/icons/calendar_remove.js @@ -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( > diff --git a/react/src/icons/calendar_split.js b/react/src/icons/calendar_split.js index 1244c63..cfe46be 100644 --- a/react/src/icons/calendar_split.js +++ b/react/src/icons/calendar_split.js @@ -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( > diff --git a/react/src/icons/calendar_week.js b/react/src/icons/calendar_week.js index d0410a5..b8323ed 100644 --- a/react/src/icons/calendar_week.js +++ b/react/src/icons/calendar_week.js @@ -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( > diff --git a/react/src/icons/capture.js b/react/src/icons/capture.js index 1880e4b..af898bf 100644 --- a/react/src/icons/capture.js +++ b/react/src/icons/capture.js @@ -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( > { return ( @@ -16,16 +17,16 @@ const Cart = forwardRef( strokeLinejoin="round" {...rest} > - + - - - + + + diff --git a/react/src/icons/chain.js b/react/src/icons/chain.js index a1e4a73..0ae6697 100644 --- a/react/src/icons/chain.js +++ b/react/src/icons/chain.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const ChatAdd = forwardRef( > diff --git a/react/src/icons/check.js b/react/src/icons/check.js index 3c2089b..4c2411b 100644 --- a/react/src/icons/check.js +++ b/react/src/icons/check.js @@ -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( ) diff --git a/react/src/icons/check_circle.js b/react/src/icons/check_circle.js index b87044a..c1b1f73 100644 --- a/react/src/icons/check_circle.js +++ b/react/src/icons/check_circle.js @@ -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( > diff --git a/react/src/icons/chevron_down.js b/react/src/icons/chevron_down.js index 641a21f..1e48fbf 100644 --- a/react/src/icons/chevron_down.js +++ b/react/src/icons/chevron_down.js @@ -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( ) diff --git a/react/src/icons/chevron_down_circle.js b/react/src/icons/chevron_down_circle.js index cba380a..f574650 100644 --- a/react/src/icons/chevron_down_circle.js +++ b/react/src/icons/chevron_down_circle.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const ChevronDownDouble = forwardRef( > diff --git a/react/src/icons/chevron_left.js b/react/src/icons/chevron_left.js index 481f917..425a184 100644 --- a/react/src/icons/chevron_left.js +++ b/react/src/icons/chevron_left.js @@ -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( ) diff --git a/react/src/icons/chevron_left_circle.js b/react/src/icons/chevron_left_circle.js index 41ff72a..9d68e48 100644 --- a/react/src/icons/chevron_left_circle.js +++ b/react/src/icons/chevron_left_circle.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const ChevronLeftDouble = forwardRef( > diff --git a/react/src/icons/chevron_right.js b/react/src/icons/chevron_right.js index b023765..f7c089b 100644 --- a/react/src/icons/chevron_right.js +++ b/react/src/icons/chevron_right.js @@ -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( ) diff --git a/react/src/icons/chevron_right_circle.js b/react/src/icons/chevron_right_circle.js index 14d16f2..34994d1 100644 --- a/react/src/icons/chevron_right_circle.js +++ b/react/src/icons/chevron_right_circle.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const ChevronRightDouble = forwardRef( > diff --git a/react/src/icons/chevron_up.js b/react/src/icons/chevron_up.js index 2bcef04..8691bf1 100644 --- a/react/src/icons/chevron_up.js +++ b/react/src/icons/chevron_up.js @@ -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( > ) diff --git a/react/src/icons/chevron_up_circle.js b/react/src/icons/chevron_up_circle.js index 2eb4bea..08781d2 100644 --- a/react/src/icons/chevron_up_circle.js +++ b/react/src/icons/chevron_up_circle.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const ChevronUpDouble = forwardRef( > { 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" > ) diff --git a/react/src/icons/code.js b/react/src/icons/code.js index 1490b51..d23025c 100644 --- a/react/src/icons/code.js +++ b/react/src/icons/code.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const Coffee = forwardRef( > diff --git a/react/src/icons/coin.js b/react/src/icons/coin.js index 81890b2..ed0deec 100644 --- a/react/src/icons/coin.js +++ b/react/src/icons/coin.js @@ -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( > diff --git a/react/src/icons/coins.js b/react/src/icons/coins.js index 345d721..eac6b13 100644 --- a/react/src/icons/coins.js +++ b/react/src/icons/coins.js @@ -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( > diff --git a/react/src/icons/compass.js b/react/src/icons/compass.js index 4ff7e42..4c5c1f9 100644 --- a/react/src/icons/compass.js +++ b/react/src/icons/compass.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const ComponentAdd = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Contract = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Create = forwardRef( > { return ( @@ -16,14 +17,14 @@ const CreditCard = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/cross.js b/react/src/icons/cross.js index 17c066b..efcf1cb 100644 --- a/react/src/icons/cross.js +++ b/react/src/icons/cross.js @@ -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( > diff --git a/react/src/icons/cross_circle.js b/react/src/icons/cross_circle.js index 1adc038..86f0b3b 100644 --- a/react/src/icons/cross_circle.js +++ b/react/src/icons/cross_circle.js @@ -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( > diff --git a/react/src/icons/crosshair.js b/react/src/icons/crosshair.js index 8ccc157..8877642 100644 --- a/react/src/icons/crosshair.js +++ b/react/src/icons/crosshair.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const Cylinder = forwardRef( > diff --git a/react/src/icons/database.js b/react/src/icons/database.js index 643791a..22e22fc 100644 --- a/react/src/icons/database.js +++ b/react/src/icons/database.js @@ -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( > diff --git a/react/src/icons/diamond.js b/react/src/icons/diamond.js index fea726d..6e0da50 100644 --- a/react/src/icons/diamond.js +++ b/react/src/icons/diamond.js @@ -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( > diff --git a/react/src/icons/disc.js b/react/src/icons/disc.js index 8dfe43c..7673883 100644 --- a/react/src/icons/disc.js +++ b/react/src/icons/disc.js @@ -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( > diff --git a/react/src/icons/display.js b/react/src/icons/display.js index f5dacdb..662e2f6 100644 --- a/react/src/icons/display.js +++ b/react/src/icons/display.js @@ -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( > diff --git a/react/src/icons/display_alt.js b/react/src/icons/display_alt.js index b63cc64..4409d38 100644 --- a/react/src/icons/display_alt.js +++ b/react/src/icons/display_alt.js @@ -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( > diff --git a/react/src/icons/document.js b/react/src/icons/document.js index 3a8f098..035962a 100644 --- a/react/src/icons/document.js +++ b/react/src/icons/document.js @@ -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( > diff --git a/react/src/icons/download.js b/react/src/icons/download.js index 0091b97..561cdfc 100644 --- a/react/src/icons/download.js +++ b/react/src/icons/download.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const DownloadAlt = forwardRef( > { return ( @@ -18,10 +19,10 @@ const Drag = forwardRef( > diff --git a/react/src/icons/drag_circle.js b/react/src/icons/drag_circle.js index 5605674..6f670bf 100644 --- a/react/src/icons/drag_circle.js +++ b/react/src/icons/drag_circle.js @@ -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( > diff --git a/react/src/icons/enter.js b/react/src/icons/enter.js index 96aa0ee..1391b1d 100644 --- a/react/src/icons/enter.js +++ b/react/src/icons/enter.js @@ -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( > { return ( @@ -18,11 +19,11 @@ const EnterAlt = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ExitLeft = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ExitRight = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Expand = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ExpandHeight = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ExpandWidth = forwardRef( > { return ( @@ -16,22 +17,22 @@ const FaceDelighted = forwardRef( strokeLinejoin="round" {...rest} > - + - - + + diff --git a/react/src/icons/face_happy.js b/react/src/icons/face_happy.js index f848b38..82c02ce 100644 --- a/react/src/icons/face_happy.js +++ b/react/src/icons/face_happy.js @@ -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} > - + - - + + diff --git a/react/src/icons/face_neutral.js b/react/src/icons/face_neutral.js index 8d87d0f..dd0650a 100644 --- a/react/src/icons/face_neutral.js +++ b/react/src/icons/face_neutral.js @@ -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} > - + - - + + diff --git a/react/src/icons/face_sad.js b/react/src/icons/face_sad.js index 742c68e..7a725ce 100644 --- a/react/src/icons/face_sad.js +++ b/react/src/icons/face_sad.js @@ -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} > - + - - + + diff --git a/react/src/icons/filter.js b/react/src/icons/filter.js index db834cd..f6c2af5 100644 --- a/react/src/icons/filter.js +++ b/react/src/icons/filter.js @@ -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( > diff --git a/react/src/icons/filter_circle.js b/react/src/icons/filter_circle.js index 5320aee..796c507 100644 --- a/react/src/icons/filter_circle.js +++ b/react/src/icons/filter_circle.js @@ -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( > diff --git a/react/src/icons/fingerprint.js b/react/src/icons/fingerprint.js index 23bfefa..44e0626 100644 --- a/react/src/icons/fingerprint.js +++ b/react/src/icons/fingerprint.js @@ -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( > diff --git a/react/src/icons/folder_add.js b/react/src/icons/folder_add.js index 23520ca..e78ce83 100644 --- a/react/src/icons/folder_add.js +++ b/react/src/icons/folder_add.js @@ -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( > diff --git a/react/src/icons/folder_closed.js b/react/src/icons/folder_closed.js index 4931a82..27c20c3 100644 --- a/react/src/icons/folder_closed.js +++ b/react/src/icons/folder_closed.js @@ -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( > diff --git a/react/src/icons/folder_minus.js b/react/src/icons/folder_minus.js index 570e946..bc08a10 100644 --- a/react/src/icons/folder_minus.js +++ b/react/src/icons/folder_minus.js @@ -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( > diff --git a/react/src/icons/folder_open.js b/react/src/icons/folder_open.js index c2b9377..79ee86c 100644 --- a/react/src/icons/folder_open.js +++ b/react/src/icons/folder_open.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const FolderOpen = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const FolderOpen = forwardRef( > diff --git a/react/src/icons/forward.js b/react/src/icons/forward.js index 40c3036..e923e69 100644 --- a/react/src/icons/forward.js +++ b/react/src/icons/forward.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Forward = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,10 +20,10 @@ const Forward = forwardRef( ) diff --git a/react/src/icons/fullscreen.js b/react/src/icons/fullscreen.js index 7f3fd26..5e0ea5d 100644 --- a/react/src/icons/fullscreen.js +++ b/react/src/icons/fullscreen.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Fullscreen = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Fullscreen = forwardRef( > { return ( @@ -19,10 +20,10 @@ const Funnel = forwardRef( ) diff --git a/react/src/icons/gauge.js b/react/src/icons/gauge.js index 5be469b..3d64288 100644 --- a/react/src/icons/gauge.js +++ b/react/src/icons/gauge.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Gauge = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,20 +17,20 @@ const Gauge = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/graph_bar.js b/react/src/icons/graph_bar.js index 54ea844..1b7f971 100644 --- a/react/src/icons/graph_bar.js +++ b/react/src/icons/graph_bar.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const GraphBar = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const GraphBar = forwardRef( > diff --git a/react/src/icons/graph_box.js b/react/src/icons/graph_box.js index f4c4e09..5ca53cf 100644 --- a/react/src/icons/graph_box.js +++ b/react/src/icons/graph_box.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const GraphBox = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const GraphBox = forwardRef( > diff --git a/react/src/icons/grid.js b/react/src/icons/grid.js index 1780189..95cd9b8 100644 --- a/react/src/icons/grid.js +++ b/react/src/icons/grid.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Grid = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,10 +20,10 @@ const Grid = forwardRef( ) diff --git a/react/src/icons/grid_small.js b/react/src/icons/grid_small.js index cf37a00..30b5b81 100644 --- a/react/src/icons/grid_small.js +++ b/react/src/icons/grid_small.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const GridSmall = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,7 +17,7 @@ const GridSmall = forwardRef( strokeLinejoin="round" {...rest} > - + diff --git a/react/src/icons/heart_rate.js b/react/src/icons/heart_rate.js index 49fc022..620d1e5 100644 --- a/react/src/icons/heart_rate.js +++ b/react/src/icons/heart_rate.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const HeartRate = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,10 +20,10 @@ const HeartRate = forwardRef( ) diff --git a/react/src/icons/height.js b/react/src/icons/height.js index 01e499f..57cea78 100644 --- a/react/src/icons/height.js +++ b/react/src/icons/height.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Height = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Height = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Heirarchy = forwardRef( > diff --git a/react/src/icons/inbox.js b/react/src/icons/inbox.js index a245250..ef04f74 100644 --- a/react/src/icons/inbox.js +++ b/react/src/icons/inbox.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Inbox = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Inbox = forwardRef( > diff --git a/react/src/icons/inbox_alt.js b/react/src/icons/inbox_alt.js index 491436f..b94700d 100644 --- a/react/src/icons/inbox_alt.js +++ b/react/src/icons/inbox_alt.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const InboxAlt = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const InboxAlt = forwardRef( > { return ( @@ -16,22 +17,22 @@ const InfoCircle = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/iphone_landscape.js b/react/src/icons/iphone_landscape.js index 8bc7d55..c099401 100644 --- a/react/src/icons/iphone_landscape.js +++ b/react/src/icons/iphone_landscape.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const IphoneLandscape = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,14 +17,14 @@ const IphoneLandscape = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/iphone_portrait.js b/react/src/icons/iphone_portrait.js index b13763d..f9cd8a9 100644 --- a/react/src/icons/iphone_portrait.js +++ b/react/src/icons/iphone_portrait.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const IphonePortrait = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,14 +17,14 @@ const IphonePortrait = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/jump_backward.js b/react/src/icons/jump_backward.js index 223e2fb..37f485f 100644 --- a/react/src/icons/jump_backward.js +++ b/react/src/icons/jump_backward.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const JumpBackward = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const JumpBackward = forwardRef( > ) diff --git a/react/src/icons/jump_down.js b/react/src/icons/jump_down.js index 23c8908..d3204b8 100644 --- a/react/src/icons/jump_down.js +++ b/react/src/icons/jump_down.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const JumpDown = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const JumpDown = forwardRef( > ) diff --git a/react/src/icons/jump_forward.js b/react/src/icons/jump_forward.js index e8dc7e2..6910d5a 100644 --- a/react/src/icons/jump_forward.js +++ b/react/src/icons/jump_forward.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const JumpForward = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,10 +20,10 @@ const JumpForward = forwardRef( ) diff --git a/react/src/icons/jump_up.js b/react/src/icons/jump_up.js index ec24e25..1cf2ecb 100644 --- a/react/src/icons/jump_up.js +++ b/react/src/icons/jump_up.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const JumpUp = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const JumpUp = forwardRef( > ) diff --git a/react/src/icons/laptop.js b/react/src/icons/laptop.js index ada1356..594d9e4 100644 --- a/react/src/icons/laptop.js +++ b/react/src/icons/laptop.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Laptop = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Laptop = forwardRef( > { return ( @@ -19,10 +20,10 @@ const Lightning = forwardRef( ) diff --git a/react/src/icons/lightning_alt.js b/react/src/icons/lightning_alt.js index db15ed4..440c234 100644 --- a/react/src/icons/lightning_alt.js +++ b/react/src/icons/lightning_alt.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const LightningAlt = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,10 +20,10 @@ const LightningAlt = forwardRef( ) diff --git a/react/src/icons/link.js b/react/src/icons/link.js index 8f5ed96..e1c9650 100644 --- a/react/src/icons/link.js +++ b/react/src/icons/link.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Link = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Link = forwardRef( > { return ( @@ -18,11 +19,11 @@ const LinkBroken = forwardRef( > { return ( @@ -16,15 +17,15 @@ const List = forwardRef( strokeLinejoin="round" {...rest} > - - + + diff --git a/react/src/icons/list_add.js b/react/src/icons/list_add.js index be13ba5..1520f4f 100644 --- a/react/src/icons/list_add.js +++ b/react/src/icons/list_add.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const ListAdd = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const ListAdd = forwardRef( > diff --git a/react/src/icons/list_numbered.js b/react/src/icons/list_numbered.js index 9dbbce0..d40e2ee 100644 --- a/react/src/icons/list_numbered.js +++ b/react/src/icons/list_numbered.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const ListNumbered = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,19 +17,19 @@ const ListNumbered = forwardRef( strokeLinejoin="round" {...rest} > - - + + diff --git a/react/src/icons/location.js b/react/src/icons/location.js index 60823c0..4ee92b2 100644 --- a/react/src/icons/location.js +++ b/react/src/icons/location.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Location = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Location = forwardRef( > diff --git a/react/src/icons/lock.js b/react/src/icons/lock.js index 03796dd..3504e49 100644 --- a/react/src/icons/lock.js +++ b/react/src/icons/lock.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Lock = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,14 +17,14 @@ const Lock = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/lock_open.js b/react/src/icons/lock_open.js index 63eb7be..f7fba28 100644 --- a/react/src/icons/lock_open.js +++ b/react/src/icons/lock_open.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const LockOpen = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,14 +17,14 @@ const LockOpen = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/mail.js b/react/src/icons/mail.js index 8ecb478..babfacc 100644 --- a/react/src/icons/mail.js +++ b/react/src/icons/mail.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Mail = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Mail = forwardRef( > diff --git a/react/src/icons/mail_add.js b/react/src/icons/mail_add.js index d2efbc5..5e7e66e 100644 --- a/react/src/icons/mail_add.js +++ b/react/src/icons/mail_add.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const MailAdd = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const MailAdd = forwardRef( > diff --git a/react/src/icons/mail_delete.js b/react/src/icons/mail_delete.js index 8073eb6..7528296 100644 --- a/react/src/icons/mail_delete.js +++ b/react/src/icons/mail_delete.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const MailDelete = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const MailDelete = forwardRef( > diff --git a/react/src/icons/mail_minus.js b/react/src/icons/mail_minus.js index 5142d80..236f0f5 100644 --- a/react/src/icons/mail_minus.js +++ b/react/src/icons/mail_minus.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const MailMinus = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const MailMinus = forwardRef( > diff --git a/react/src/icons/mail_new.js b/react/src/icons/mail_new.js index 4433ba2..43d95df 100644 --- a/react/src/icons/mail_new.js +++ b/react/src/icons/mail_new.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const MailNew = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const MailNew = forwardRef( > diff --git a/react/src/icons/mail_open.js b/react/src/icons/mail_open.js index 62bdcc8..f33a313 100644 --- a/react/src/icons/mail_open.js +++ b/react/src/icons/mail_open.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const MailOpen = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const MailOpen = forwardRef( > { return ( @@ -18,11 +19,11 @@ const MailRemove = forwardRef( > diff --git a/react/src/icons/marquee.js b/react/src/icons/marquee.js index 568f0bf..a5183e7 100644 --- a/react/src/icons/marquee.js +++ b/react/src/icons/marquee.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Marquee = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Marquee = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Maximise = forwardRef( > { return ( @@ -16,28 +17,28 @@ const Message = forwardRef( strokeLinejoin="round" {...rest} > - + diff --git a/react/src/icons/message_writing.js b/react/src/icons/message_writing.js index 9597ca8..3c23f22 100644 --- a/react/src/icons/message_writing.js +++ b/react/src/icons/message_writing.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const MessageWriting = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,16 +17,16 @@ const MessageWriting = forwardRef( strokeLinejoin="round" {...rest} > - + diff --git a/react/src/icons/microphone.js b/react/src/icons/microphone.js index b9fe350..52fabe6 100644 --- a/react/src/icons/microphone.js +++ b/react/src/icons/microphone.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Microphone = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Microphone = forwardRef( > diff --git a/react/src/icons/microphone_disabled.js b/react/src/icons/microphone_disabled.js index 7ae3a09..ddce8ef 100644 --- a/react/src/icons/microphone_disabled.js +++ b/react/src/icons/microphone_disabled.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const MicrophoneDisabled = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const MicrophoneDisabled = forwardRef( > diff --git a/react/src/icons/microphone_muted.js b/react/src/icons/microphone_muted.js index 6a03f39..36f845a 100644 --- a/react/src/icons/microphone_muted.js +++ b/react/src/icons/microphone_muted.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const MicrophoneMuted = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const MicrophoneMuted = forwardRef( > diff --git a/react/src/icons/minimise.js b/react/src/icons/minimise.js index 674af27..202e9b5 100644 --- a/react/src/icons/minimise.js +++ b/react/src/icons/minimise.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Minimise = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Minimise = forwardRef( > diff --git a/react/src/icons/minus.js b/react/src/icons/minus.js index b4d02a8..69cba82 100644 --- a/react/src/icons/minus.js +++ b/react/src/icons/minus.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Minus = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,9 +20,9 @@ const Minus = forwardRef( ) diff --git a/react/src/icons/minus_circle.js b/react/src/icons/minus_circle.js index 10def97..998c1a9 100644 --- a/react/src/icons/minus_circle.js +++ b/react/src/icons/minus_circle.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const MinusCircle = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const MinusCircle = forwardRef( > diff --git a/react/src/icons/move.js b/react/src/icons/move.js index a0e1637..f90ac27 100644 --- a/react/src/icons/move.js +++ b/react/src/icons/move.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Move = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Move = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Newspaper = forwardRef( > diff --git a/react/src/icons/paper.js b/react/src/icons/paper.js index e561542..79a5e8f 100644 --- a/react/src/icons/paper.js +++ b/react/src/icons/paper.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Paper = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,10 +20,10 @@ const Paper = forwardRef( ) diff --git a/react/src/icons/paper_folded.js b/react/src/icons/paper_folded.js index 1bead75..d2c8525 100644 --- a/react/src/icons/paper_folded.js +++ b/react/src/icons/paper_folded.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const PaperFolded = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const PaperFolded = forwardRef( > diff --git a/react/src/icons/paperclip.js b/react/src/icons/paperclip.js index aa392a3..b13ee0b 100644 --- a/react/src/icons/paperclip.js +++ b/react/src/icons/paperclip.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Paperclip = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,10 +20,10 @@ const Paperclip = forwardRef( ) diff --git a/react/src/icons/pen.js b/react/src/icons/pen.js index d67766a..9a90691 100644 --- a/react/src/icons/pen.js +++ b/react/src/icons/pen.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Pen = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Pen = forwardRef( > { return ( @@ -18,11 +19,11 @@ const PhoneLandscape = forwardRef( > diff --git a/react/src/icons/phone_portrait.js b/react/src/icons/phone_portrait.js index fbd14a8..4b8d0b4 100644 --- a/react/src/icons/phone_portrait.js +++ b/react/src/icons/phone_portrait.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const PhonePortrait = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,10 +19,10 @@ const PhonePortrait = forwardRef( > diff --git a/react/src/icons/plus.js b/react/src/icons/plus.js index a2dda8b..71c8dd4 100644 --- a/react/src/icons/plus.js +++ b/react/src/icons/plus.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Plus = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,10 +19,10 @@ const Plus = forwardRef( > diff --git a/react/src/icons/plus_circle.js b/react/src/icons/plus_circle.js index b76c701..fd3f8b9 100644 --- a/react/src/icons/plus_circle.js +++ b/react/src/icons/plus_circle.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const PlusCircle = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const PlusCircle = forwardRef( > diff --git a/react/src/icons/printer.js b/react/src/icons/printer.js index dd30dea..fde5420 100644 --- a/react/src/icons/printer.js +++ b/react/src/icons/printer.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Printer = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,20 +17,20 @@ const Printer = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/projector.js b/react/src/icons/projector.js index 92ddc1a..2df9aaa 100644 --- a/react/src/icons/projector.js +++ b/react/src/icons/projector.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Projector = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Projector = forwardRef( > { return ( @@ -18,11 +19,11 @@ const PushLeft = forwardRef( > { return ( @@ -18,11 +19,11 @@ const PushRight = forwardRef( > { return ( @@ -16,22 +17,22 @@ const QuestionCircle = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/record.js b/react/src/icons/record.js index 765e4c3..3c5ed71 100644 --- a/react/src/icons/record.js +++ b/react/src/icons/record.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Record = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,16 +17,16 @@ const Record = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/redo.js b/react/src/icons/redo.js index f67b0f9..f797298 100644 --- a/react/src/icons/redo.js +++ b/react/src/icons/redo.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Redo = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Redo = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Refresh = forwardRef( > diff --git a/react/src/icons/replicate.js b/react/src/icons/replicate.js index 758e0c3..e5bb76f 100644 --- a/react/src/icons/replicate.js +++ b/react/src/icons/replicate.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Replicate = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Replicate = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ReplicateAlt = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Reset = forwardRef( > diff --git a/react/src/icons/reset_alt.js b/react/src/icons/reset_alt.js index e831bab..ec8c991 100644 --- a/react/src/icons/reset_alt.js +++ b/react/src/icons/reset_alt.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const ResetAlt = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const ResetAlt = forwardRef( > diff --git a/react/src/icons/reuse.js b/react/src/icons/reuse.js index 919a638..71ab1c0 100644 --- a/react/src/icons/reuse.js +++ b/react/src/icons/reuse.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Reuse = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Reuse = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Reverse = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ReverseAlt = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Revert = forwardRef( > { return ( @@ -18,10 +19,10 @@ const Search = forwardRef( > diff --git a/react/src/icons/server.js b/react/src/icons/server.js index e140995..f36dbb3 100644 --- a/react/src/icons/server.js +++ b/react/src/icons/server.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Server = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,25 +17,21 @@ const Server = forwardRef( strokeLinejoin="round" {...rest} > - + - + - + ) diff --git a/react/src/icons/share.js b/react/src/icons/share.js index 6a82a00..b4afa6e 100644 --- a/react/src/icons/share.js +++ b/react/src/icons/share.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Share = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Share = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Shuffle = forwardRef( > { return ( @@ -16,15 +17,15 @@ const SideMenu = forwardRef( strokeLinejoin="round" {...rest} > - - + + diff --git a/react/src/icons/sliders.js b/react/src/icons/sliders.js index 7f4e009..56b113c 100644 --- a/react/src/icons/sliders.js +++ b/react/src/icons/sliders.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Sliders = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,10 +19,10 @@ const Sliders = forwardRef( > diff --git a/react/src/icons/sort.js b/react/src/icons/sort.js index 5215432..a1759a3 100644 --- a/react/src/icons/sort.js +++ b/react/src/icons/sort.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Sort = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Sort = forwardRef( > { return ( @@ -18,10 +19,10 @@ const SortAlt = forwardRef( > { return ( @@ -19,10 +20,10 @@ const SpeechBubble = forwardRef( ) diff --git a/react/src/icons/speech_typing.js b/react/src/icons/speech_typing.js index c751716..9c18875 100644 --- a/react/src/icons/speech_typing.js +++ b/react/src/icons/speech_typing.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const SpeechTyping = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,16 +17,16 @@ const SpeechTyping = forwardRef( strokeLinejoin="round" {...rest} > - + diff --git a/react/src/icons/star.js b/react/src/icons/star.js index ac3c940..4e8a72f 100644 --- a/react/src/icons/star.js +++ b/react/src/icons/star.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Star = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,10 +20,10 @@ const Star = forwardRef( ) diff --git a/react/src/icons/support.js b/react/src/icons/support.js index 003e3d6..03e7e50 100644 --- a/react/src/icons/support.js +++ b/react/src/icons/support.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Support = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Support = forwardRef( > diff --git a/react/src/icons/tag.js b/react/src/icons/tag.js index 6274dfa..7843ce8 100644 --- a/react/src/icons/tag.js +++ b/react/src/icons/tag.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Tag = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,15 +17,15 @@ const Tag = forwardRef( strokeLinejoin="round" {...rest} > - + { return ( @@ -16,21 +17,21 @@ const Tags = forwardRef( strokeLinejoin="round" {...rest} > - + { return ( @@ -18,10 +19,10 @@ const Target = forwardRef( > diff --git a/react/src/icons/thread.js b/react/src/icons/thread.js index 28bc27b..e5426ce 100644 --- a/react/src/icons/thread.js +++ b/react/src/icons/thread.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Thread = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Thread = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ThumbsDown = forwardRef( > diff --git a/react/src/icons/thumbs_up.js b/react/src/icons/thumbs_up.js index 8d2ff86..6adf0e3 100644 --- a/react/src/icons/thumbs_up.js +++ b/react/src/icons/thumbs_up.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const ThumbsUp = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const ThumbsUp = forwardRef( > diff --git a/react/src/icons/ticket.js b/react/src/icons/ticket.js index f1968a5..c84397b 100644 --- a/react/src/icons/ticket.js +++ b/react/src/icons/ticket.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Ticket = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Ticket = forwardRef( > diff --git a/react/src/icons/toggle.js b/react/src/icons/toggle.js index 5014cfd..e29f229 100644 --- a/react/src/icons/toggle.js +++ b/react/src/icons/toggle.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Toggle = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Toggle = forwardRef( > diff --git a/react/src/icons/trash.js b/react/src/icons/trash.js index a14d002..e6769c0 100644 --- a/react/src/icons/trash.js +++ b/react/src/icons/trash.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Trash = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Trash = forwardRef( > diff --git a/react/src/icons/unarchive.js b/react/src/icons/unarchive.js index fe80531..db67c38 100644 --- a/react/src/icons/unarchive.js +++ b/react/src/icons/unarchive.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Unarchive = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Unarchive = forwardRef( > diff --git a/react/src/icons/undo.js b/react/src/icons/undo.js index 45f3b30..50cc31f 100644 --- a/react/src/icons/undo.js +++ b/react/src/icons/undo.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Undo = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Undo = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Upload = forwardRef( > { return ( @@ -18,11 +19,11 @@ const UploadAlt = forwardRef( > { return ( @@ -18,19 +19,19 @@ const User = forwardRef( > diff --git a/react/src/icons/user_circle.js b/react/src/icons/user_circle.js index 35dd037..8e53b47 100644 --- a/react/src/icons/user_circle.js +++ b/react/src/icons/user_circle.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const UserCircle = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,20 +19,20 @@ const UserCircle = forwardRef( > - + diff --git a/react/src/icons/user_male.js b/react/src/icons/user_male.js index 15d4463..b8d122a 100644 --- a/react/src/icons/user_male.js +++ b/react/src/icons/user_male.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const UserMale = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,10 +20,10 @@ const UserMale = forwardRef( ) diff --git a/react/src/icons/user_male_circle.js b/react/src/icons/user_male_circle.js index 3a2b22f..494fbb8 100644 --- a/react/src/icons/user_male_circle.js +++ b/react/src/icons/user_male_circle.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const UserMaleCircle = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const UserMaleCircle = forwardRef( > diff --git a/react/src/icons/users.js b/react/src/icons/users.js index 86db76c..95ff645 100644 --- a/react/src/icons/users.js +++ b/react/src/icons/users.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Users = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,16 +19,16 @@ const Users = forwardRef( > diff --git a/react/src/icons/venn.js b/react/src/icons/venn.js index 85db63a..f910a0d 100644 --- a/react/src/icons/venn.js +++ b/react/src/icons/venn.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Venn = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,10 +19,10 @@ const Venn = forwardRef( > diff --git a/react/src/icons/version.js b/react/src/icons/version.js index 9d62812..064e678 100644 --- a/react/src/icons/version.js +++ b/react/src/icons/version.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Version = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Version = forwardRef( > diff --git a/react/src/icons/versions.js b/react/src/icons/versions.js index aca3c9c..95cb126 100644 --- a/react/src/icons/versions.js +++ b/react/src/icons/versions.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Versions = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Versions = forwardRef( > diff --git a/react/src/icons/volume_0.js b/react/src/icons/volume_0.js index 6b38e27..bcb2d11 100644 --- a/react/src/icons/volume_0.js +++ b/react/src/icons/volume_0.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Volume0 = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -19,10 +20,10 @@ const Volume0 = forwardRef( ) diff --git a/react/src/icons/volume_add.js b/react/src/icons/volume_add.js index 7644784..54f52f0 100644 --- a/react/src/icons/volume_add.js +++ b/react/src/icons/volume_add.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const VolumeAdd = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const VolumeAdd = forwardRef( > diff --git a/react/src/icons/volume_disabled.js b/react/src/icons/volume_disabled.js index 68630d8..7e4f4de 100644 --- a/react/src/icons/volume_disabled.js +++ b/react/src/icons/volume_disabled.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const VolumeDisabled = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const VolumeDisabled = forwardRef( > diff --git a/react/src/icons/volume_high.js b/react/src/icons/volume_high.js index fe34857..545d307 100644 --- a/react/src/icons/volume_high.js +++ b/react/src/icons/volume_high.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const VolumeHigh = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const VolumeHigh = forwardRef( > diff --git a/react/src/icons/volume_low.js b/react/src/icons/volume_low.js index 72baafc..5e0e3b3 100644 --- a/react/src/icons/volume_low.js +++ b/react/src/icons/volume_low.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const VolumeLow = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const VolumeLow = forwardRef( > diff --git a/react/src/icons/volume_minus.js b/react/src/icons/volume_minus.js index c3d90cd..32ecd40 100644 --- a/react/src/icons/volume_minus.js +++ b/react/src/icons/volume_minus.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const VolumeMinus = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const VolumeMinus = forwardRef( > { return ( @@ -18,11 +19,11 @@ const VolumeMuted = forwardRef( > diff --git a/react/src/icons/warning_circle.js b/react/src/icons/warning_circle.js index 42799fe..793d236 100644 --- a/react/src/icons/warning_circle.js +++ b/react/src/icons/warning_circle.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const WarningCircle = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,22 +17,22 @@ const WarningCircle = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/warning_hex.js b/react/src/icons/warning_hex.js index 1fe3e56..d4ddfee 100644 --- a/react/src/icons/warning_hex.js +++ b/react/src/icons/warning_hex.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const WarningHex = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,24 +17,24 @@ const WarningHex = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/warning_triangle.js b/react/src/icons/warning_triangle.js index 45bec59..ada24cb 100644 --- a/react/src/icons/warning_triangle.js +++ b/react/src/icons/warning_triangle.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const WarningTriangle = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -16,20 +17,20 @@ const WarningTriangle = forwardRef( strokeLinejoin="round" {...rest} > - + - + ) diff --git a/react/src/icons/width.js b/react/src/icons/width.js index d375f2b..8523885 100644 --- a/react/src/icons/width.js +++ b/react/src/icons/width.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const Width = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const Width = forwardRef( > { return ( @@ -18,11 +19,11 @@ const Write = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ZoomCancel = forwardRef( > { return ( @@ -18,11 +19,11 @@ const ZoomIn = forwardRef( > diff --git a/react/src/icons/zoom_out.js b/react/src/icons/zoom_out.js index e09991e..6644c2f 100644 --- a/react/src/icons/zoom_out.js +++ b/react/src/icons/zoom_out.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const ZoomOut = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const ZoomOut = forwardRef( > diff --git a/react/src/icons/zoom_reset.js b/react/src/icons/zoom_reset.js index 84196c9..4ee95dc 100644 --- a/react/src/icons/zoom_reset.js +++ b/react/src/icons/zoom_reset.js @@ -1,5 +1,6 @@ import React, { forwardRef } from 'react' import PropTypes from 'prop-types' + const ZoomReset = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( @@ -18,11 +19,11 @@ const ZoomReset = forwardRef( > diff --git a/react/yarn.lock b/react/yarn.lock index f497fe8..2679283 100644 --- a/react/yarn.lock +++ b/react/yarn.lock @@ -1677,6 +1677,11 @@ camelcase@^5.0.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== +camelcase@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.0.0.tgz#5259f7c30e35e278f1bdc2a4d91230b37cad981e" + integrity sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w== + caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30001093: version "1.0.30001109" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001109.tgz#a9f3f26a0c3753b063d7acbb48dfb9c0e46f2b19"