diff --git a/bin/template.js b/bin/template.js
index 4d6042f9..2c99f0f0 100644
--- a/bin/template.js
+++ b/bin/template.js
@@ -27,7 +27,7 @@ const getElementCode = (ComponentName, attrs, svgCode) => `
const ${ComponentName} = (props) => {
const { color, size, ...otherProps } = props;
return (
-
@@ -25,8 +24,7 @@ AndroidFill.propTypes = {
AndroidFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default AndroidFill;
diff --git a/src/icons/angular-fill.js b/src/icons/angular-fill.js
new file mode 100644
index 00000000..8f80ccfe
--- /dev/null
+++ b/src/icons/angular-fill.js
@@ -0,0 +1,31 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const AngularFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+ );
+};
+
+AngularFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+AngularFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default AngularFill;
diff --git a/src/icons/arrow-back-thick-fill.js b/src/icons/arrow-back-thick-fill.js
index e52ac989..7cc2ca67 100644
--- a/src/icons/arrow-back-thick-fill.js
+++ b/src/icons/arrow-back-thick-fill.js
@@ -11,7 +11,6 @@ const ArrowBackThickFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="ArrowBackThickFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowBackThick"
>
@@ -29,8 +28,7 @@ ArrowBackThick.propTypes = {
ArrowBackThick.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowBackThick;
diff --git a/src/icons/arrow-back.js b/src/icons/arrow-back.js
index b6d91da5..4719093b 100644
--- a/src/icons/arrow-back.js
+++ b/src/icons/arrow-back.js
@@ -15,7 +15,6 @@ const ArrowBack = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowBack"
>
@@ -30,8 +29,7 @@ ArrowBack.propTypes = {
ArrowBack.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowBack;
diff --git a/src/icons/arrow-clockwise.js b/src/icons/arrow-clockwise.js
index be2d68c9..f0c463af 100644
--- a/src/icons/arrow-clockwise.js
+++ b/src/icons/arrow-clockwise.js
@@ -15,7 +15,6 @@ const ArrowClockwise = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowClockwise"
>
@@ -30,8 +29,7 @@ ArrowClockwise.propTypes = {
ArrowClockwise.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowClockwise;
diff --git a/src/icons/arrow-counter-clockwise.js b/src/icons/arrow-counter-clockwise.js
index 96818673..5c897429 100644
--- a/src/icons/arrow-counter-clockwise.js
+++ b/src/icons/arrow-counter-clockwise.js
@@ -15,7 +15,6 @@ const ArrowCounterClockwise = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowCounterClockwise"
>
@@ -30,8 +29,7 @@ ArrowCounterClockwise.propTypes = {
ArrowCounterClockwise.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowCounterClockwise;
diff --git a/src/icons/arrow-cycle.js b/src/icons/arrow-cycle.js
index 28ae6865..302cec0a 100644
--- a/src/icons/arrow-cycle.js
+++ b/src/icons/arrow-cycle.js
@@ -15,7 +15,6 @@ const ArrowCycle = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowCycle"
>
@@ -32,8 +31,7 @@ ArrowCycle.propTypes = {
ArrowCycle.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowCycle;
diff --git a/src/icons/arrow-down-left.js b/src/icons/arrow-down-left.js
index 9dae04b3..24815fee 100644
--- a/src/icons/arrow-down-left.js
+++ b/src/icons/arrow-down-left.js
@@ -15,7 +15,6 @@ const ArrowDownLeft = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowDownLeft"
>
@@ -30,8 +29,7 @@ ArrowDownLeft.propTypes = {
ArrowDownLeft.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowDownLeft;
diff --git a/src/icons/arrow-down-right.js b/src/icons/arrow-down-right.js
index 8e5f599c..7d94f077 100644
--- a/src/icons/arrow-down-right.js
+++ b/src/icons/arrow-down-right.js
@@ -15,7 +15,6 @@ const ArrowDownRight = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowDownRight"
>
@@ -30,8 +29,7 @@ ArrowDownRight.propTypes = {
ArrowDownRight.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowDownRight;
diff --git a/src/icons/arrow-down-thick.js b/src/icons/arrow-down-thick.js
index 0e419b6a..188fad03 100644
--- a/src/icons/arrow-down-thick.js
+++ b/src/icons/arrow-down-thick.js
@@ -15,7 +15,6 @@ const ArrowDownThick = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowDownThick"
>
@@ -29,8 +28,7 @@ ArrowDownThick.propTypes = {
ArrowDownThick.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowDownThick;
diff --git a/src/icons/arrow-down.js b/src/icons/arrow-down.js
index 75331507..ca5119c7 100644
--- a/src/icons/arrow-down.js
+++ b/src/icons/arrow-down.js
@@ -15,7 +15,6 @@ const ArrowDown = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowDown"
>
@@ -30,8 +29,7 @@ ArrowDown.propTypes = {
ArrowDown.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowDown;
diff --git a/src/icons/arrow-forward-thick-fill.js b/src/icons/arrow-forward-thick-fill.js
index 7078053b..4fb29cdd 100644
--- a/src/icons/arrow-forward-thick-fill.js
+++ b/src/icons/arrow-forward-thick-fill.js
@@ -11,7 +11,6 @@ const ArrowForwardThickFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="ArrowForwardThickFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowForwardThick"
>
@@ -29,8 +28,7 @@ ArrowForwardThick.propTypes = {
ArrowForwardThick.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowForwardThick;
diff --git a/src/icons/arrow-forward.js b/src/icons/arrow-forward.js
index ce5ffb92..3778289b 100644
--- a/src/icons/arrow-forward.js
+++ b/src/icons/arrow-forward.js
@@ -15,7 +15,6 @@ const ArrowForward = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowForward"
>
@@ -30,8 +29,7 @@ ArrowForward.propTypes = {
ArrowForward.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowForward;
diff --git a/src/icons/arrow-left-thick.js b/src/icons/arrow-left-thick.js
index f14e31ad..fa8aca66 100644
--- a/src/icons/arrow-left-thick.js
+++ b/src/icons/arrow-left-thick.js
@@ -15,7 +15,6 @@ const ArrowLeftThick = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowLeftThick"
>
@@ -29,8 +28,7 @@ ArrowLeftThick.propTypes = {
ArrowLeftThick.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowLeftThick;
diff --git a/src/icons/arrow-left.js b/src/icons/arrow-left.js
index 674b7532..2c287ef5 100644
--- a/src/icons/arrow-left.js
+++ b/src/icons/arrow-left.js
@@ -15,7 +15,6 @@ const ArrowLeft = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowLeft"
>
@@ -30,8 +29,7 @@ ArrowLeft.propTypes = {
ArrowLeft.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowLeft;
diff --git a/src/icons/arrow-repeat.js b/src/icons/arrow-repeat.js
index 0fb7c8b2..6cf87fa4 100644
--- a/src/icons/arrow-repeat.js
+++ b/src/icons/arrow-repeat.js
@@ -15,7 +15,6 @@ const ArrowRepeat = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowRepeat"
>
@@ -32,8 +31,7 @@ ArrowRepeat.propTypes = {
ArrowRepeat.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowRepeat;
diff --git a/src/icons/arrow-right-left.js b/src/icons/arrow-right-left.js
index 1c1def44..2faeb601 100644
--- a/src/icons/arrow-right-left.js
+++ b/src/icons/arrow-right-left.js
@@ -15,7 +15,6 @@ const ArrowRightLeft = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowRightLeft"
>
@@ -30,8 +29,7 @@ ArrowRightLeft.propTypes = {
ArrowRightLeft.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowRightLeft;
diff --git a/src/icons/arrow-right-thick.js b/src/icons/arrow-right-thick.js
index c255ec70..719ece38 100644
--- a/src/icons/arrow-right-thick.js
+++ b/src/icons/arrow-right-thick.js
@@ -15,7 +15,6 @@ const ArrowRightThick = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowRightThick"
>
@@ -29,8 +28,7 @@ ArrowRightThick.propTypes = {
ArrowRightThick.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowRightThick;
diff --git a/src/icons/arrow-right.js b/src/icons/arrow-right.js
index 027e373b..41bae145 100644
--- a/src/icons/arrow-right.js
+++ b/src/icons/arrow-right.js
@@ -15,7 +15,6 @@ const ArrowRight = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowRight"
>
@@ -30,8 +29,7 @@ ArrowRight.propTypes = {
ArrowRight.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowRight;
diff --git a/src/icons/arrow-shuffle.js b/src/icons/arrow-shuffle.js
index d06adfe0..89ab4dd8 100644
--- a/src/icons/arrow-shuffle.js
+++ b/src/icons/arrow-shuffle.js
@@ -15,7 +15,6 @@ const ArrowShuffle = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowShuffle"
>
@@ -31,8 +30,7 @@ ArrowShuffle.propTypes = {
ArrowShuffle.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowShuffle;
diff --git a/src/icons/arrow-up-down.js b/src/icons/arrow-up-down.js
index 81bcb04b..592225d4 100644
--- a/src/icons/arrow-up-down.js
+++ b/src/icons/arrow-up-down.js
@@ -15,7 +15,6 @@ const ArrowUpDown = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowUpDown"
>
@@ -30,8 +29,7 @@ ArrowUpDown.propTypes = {
ArrowUpDown.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowUpDown;
diff --git a/src/icons/arrow-up-left.js b/src/icons/arrow-up-left.js
index 6befbb81..96b41140 100644
--- a/src/icons/arrow-up-left.js
+++ b/src/icons/arrow-up-left.js
@@ -15,7 +15,6 @@ const ArrowUpLeft = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowUpLeft"
>
@@ -30,8 +29,7 @@ ArrowUpLeft.propTypes = {
ArrowUpLeft.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowUpLeft;
diff --git a/src/icons/arrow-up-right.js b/src/icons/arrow-up-right.js
index e16746c8..7c009623 100644
--- a/src/icons/arrow-up-right.js
+++ b/src/icons/arrow-up-right.js
@@ -15,7 +15,6 @@ const ArrowUpRight = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowUpRight"
>
@@ -30,8 +29,7 @@ ArrowUpRight.propTypes = {
ArrowUpRight.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowUpRight;
diff --git a/src/icons/arrow-up-thick.js b/src/icons/arrow-up-thick.js
index f56b0020..067066f0 100644
--- a/src/icons/arrow-up-thick.js
+++ b/src/icons/arrow-up-thick.js
@@ -15,7 +15,6 @@ const ArrowUpThick = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowUpThick"
>
@@ -29,8 +28,7 @@ ArrowUpThick.propTypes = {
ArrowUpThick.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowUpThick;
diff --git a/src/icons/arrow-up.js b/src/icons/arrow-up.js
index 73463cae..28fc6f2b 100644
--- a/src/icons/arrow-up.js
+++ b/src/icons/arrow-up.js
@@ -15,7 +15,6 @@ const ArrowUp = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ArrowUp"
>
@@ -30,8 +29,7 @@ ArrowUp.propTypes = {
ArrowUp.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ArrowUp;
diff --git a/src/icons/attach.js b/src/icons/attach.js
index d3e51783..421d42a7 100644
--- a/src/icons/attach.js
+++ b/src/icons/attach.js
@@ -15,7 +15,6 @@ const Attach = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Attach"
>
@@ -29,8 +28,7 @@ Attach.propTypes = {
Attach.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Attach;
diff --git a/src/icons/backspace-fill.js b/src/icons/backspace-fill.js
index 490f6d72..e54e7525 100644
--- a/src/icons/backspace-fill.js
+++ b/src/icons/backspace-fill.js
@@ -11,7 +11,6 @@ const BackspaceFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="BackspaceFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Backspace"
>
@@ -30,8 +29,7 @@ Backspace.propTypes = {
Backspace.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Backspace;
diff --git a/src/icons/basket.js b/src/icons/basket.js
index d63d0be4..962eff93 100644
--- a/src/icons/basket.js
+++ b/src/icons/basket.js
@@ -15,7 +15,6 @@ const Basket = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Basket"
>
@@ -33,8 +32,7 @@ Basket.propTypes = {
Basket.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Basket;
diff --git a/src/icons/battery-charging.js b/src/icons/battery-charging.js
index cdffbc65..ad862c48 100644
--- a/src/icons/battery-charging.js
+++ b/src/icons/battery-charging.js
@@ -15,7 +15,6 @@ const BatteryCharging = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="BatteryCharging"
>
@@ -31,8 +30,7 @@ BatteryCharging.propTypes = {
BatteryCharging.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default BatteryCharging;
diff --git a/src/icons/battery-empty.js b/src/icons/battery-empty.js
index 8c993a38..45732eec 100644
--- a/src/icons/battery-empty.js
+++ b/src/icons/battery-empty.js
@@ -15,7 +15,6 @@ const BatteryEmpty = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="BatteryEmpty"
>
@@ -30,8 +29,7 @@ BatteryEmpty.propTypes = {
BatteryEmpty.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default BatteryEmpty;
diff --git a/src/icons/battery-full.js b/src/icons/battery-full.js
index 2df7a76a..8679a480 100644
--- a/src/icons/battery-full.js
+++ b/src/icons/battery-full.js
@@ -15,7 +15,6 @@ const BatteryFull = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="BatteryFull"
>
@@ -33,8 +32,7 @@ BatteryFull.propTypes = {
BatteryFull.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default BatteryFull;
diff --git a/src/icons/battery-low.js b/src/icons/battery-low.js
index 76c927ec..bb40c8b0 100644
--- a/src/icons/battery-low.js
+++ b/src/icons/battery-low.js
@@ -15,7 +15,6 @@ const BatteryLow = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="BatteryLow"
>
@@ -31,8 +30,7 @@ BatteryLow.propTypes = {
BatteryLow.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default BatteryLow;
diff --git a/src/icons/battery-medium.js b/src/icons/battery-medium.js
index fea06381..a21fa22d 100644
--- a/src/icons/battery-medium.js
+++ b/src/icons/battery-medium.js
@@ -15,7 +15,6 @@ const BatteryMedium = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="BatteryMedium"
>
@@ -32,8 +31,7 @@ BatteryMedium.propTypes = {
BatteryMedium.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default BatteryMedium;
diff --git a/src/icons/bell.js b/src/icons/bell.js
index 05877928..fccdcd5b 100644
--- a/src/icons/bell.js
+++ b/src/icons/bell.js
@@ -15,7 +15,6 @@ const Bell = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Bell"
>
@@ -31,8 +30,7 @@ Bell.propTypes = {
Bell.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Bell;
diff --git a/src/icons/bicycle.js b/src/icons/bicycle.js
index 98055bf8..6d3f5058 100644
--- a/src/icons/bicycle.js
+++ b/src/icons/bicycle.js
@@ -15,7 +15,6 @@ const Bicycle = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Bicycle"
>
@@ -34,8 +33,7 @@ Bicycle.propTypes = {
Bicycle.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Bicycle;
diff --git a/src/icons/bitcoin-fill.js b/src/icons/bitcoin-fill.js
index 05336d3b..fbc47412 100644
--- a/src/icons/bitcoin-fill.js
+++ b/src/icons/bitcoin-fill.js
@@ -11,7 +11,6 @@ const BitcoinFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="BitcoinFill"
>
@@ -38,8 +37,7 @@ BitcoinFill.propTypes = {
BitcoinFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default BitcoinFill;
diff --git a/src/icons/block.js b/src/icons/block.js
index e26974cb..130f78a0 100644
--- a/src/icons/block.js
+++ b/src/icons/block.js
@@ -15,7 +15,6 @@ const Block = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Block"
>
@@ -30,8 +29,7 @@ Block.propTypes = {
Block.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Block;
diff --git a/src/icons/bluetooth.js b/src/icons/bluetooth.js
index b6253ffd..c4244cd0 100644
--- a/src/icons/bluetooth.js
+++ b/src/icons/bluetooth.js
@@ -15,7 +15,6 @@ const Bluetooth = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Bluetooth"
>
@@ -29,8 +28,7 @@ Bluetooth.propTypes = {
Bluetooth.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Bluetooth;
diff --git a/src/icons/book.js b/src/icons/book.js
index 42401cd0..dfa27a3e 100644
--- a/src/icons/book.js
+++ b/src/icons/book.js
@@ -15,7 +15,6 @@ const Book = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Book"
>
@@ -30,8 +29,7 @@ Book.propTypes = {
Book.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Book;
diff --git a/src/icons/bootstrap-fill.js b/src/icons/bootstrap-fill.js
new file mode 100644
index 00000000..1cb55360
--- /dev/null
+++ b/src/icons/bootstrap-fill.js
@@ -0,0 +1,34 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const BootstrapFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+ );
+};
+
+BootstrapFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+BootstrapFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default BootstrapFill;
diff --git a/src/icons/box.js b/src/icons/box.js
index 3d8764e0..782ad34d 100644
--- a/src/icons/box.js
+++ b/src/icons/box.js
@@ -15,7 +15,6 @@ const Box = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Box"
>
@@ -29,8 +28,7 @@ Box.propTypes = {
Box.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Box;
diff --git a/src/icons/bug.js b/src/icons/bug.js
index 42fbeab6..191b6a2f 100644
--- a/src/icons/bug.js
+++ b/src/icons/bug.js
@@ -15,7 +15,6 @@ const Bug = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Bug"
>
@@ -37,8 +36,7 @@ Bug.propTypes = {
Bug.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Bug;
diff --git a/src/icons/calculator.js b/src/icons/calculator.js
index 97183efc..91195f3a 100644
--- a/src/icons/calculator.js
+++ b/src/icons/calculator.js
@@ -15,7 +15,6 @@ const Calculator = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Calculator"
>
@@ -33,8 +32,7 @@ Calculator.propTypes = {
Calculator.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Calculator;
diff --git a/src/icons/calendar.js b/src/icons/calendar.js
index edcb38fd..8ceacd82 100644
--- a/src/icons/calendar.js
+++ b/src/icons/calendar.js
@@ -15,7 +15,6 @@ const Calendar = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Calendar"
>
@@ -32,8 +31,7 @@ Calendar.propTypes = {
Calendar.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Calendar;
diff --git a/src/icons/camera.js b/src/icons/camera.js
index 10505296..e2f64357 100644
--- a/src/icons/camera.js
+++ b/src/icons/camera.js
@@ -15,7 +15,6 @@ const Camera = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Camera"
>
@@ -31,8 +30,7 @@ Camera.propTypes = {
Camera.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Camera;
diff --git a/src/icons/cart.js b/src/icons/cart.js
index e58e57b3..2d4c64ed 100644
--- a/src/icons/cart.js
+++ b/src/icons/cart.js
@@ -15,7 +15,6 @@ const Cart = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Cart"
>
@@ -32,8 +31,7 @@ Cart.propTypes = {
Cart.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Cart;
diff --git a/src/icons/chat-add.js b/src/icons/chat-add.js
index 85a620b4..e2390864 100644
--- a/src/icons/chat-add.js
+++ b/src/icons/chat-add.js
@@ -15,7 +15,6 @@ const ChatAdd = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChatAdd"
>
@@ -31,8 +30,7 @@ ChatAdd.propTypes = {
ChatAdd.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChatAdd;
diff --git a/src/icons/chat-bubble.js b/src/icons/chat-bubble.js
index f1969406..15300c54 100644
--- a/src/icons/chat-bubble.js
+++ b/src/icons/chat-bubble.js
@@ -15,7 +15,6 @@ const ChatBubble = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChatBubble"
>
@@ -30,8 +29,7 @@ ChatBubble.propTypes = {
ChatBubble.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChatBubble;
diff --git a/src/icons/chat-dots.js b/src/icons/chat-dots.js
index cf055739..ea4bec03 100644
--- a/src/icons/chat-dots.js
+++ b/src/icons/chat-dots.js
@@ -15,7 +15,6 @@ const ChatDots = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChatDots"
>
@@ -33,8 +32,7 @@ ChatDots.propTypes = {
ChatDots.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChatDots;
diff --git a/src/icons/chat-error.js b/src/icons/chat-error.js
index dedd6ecc..5885d69e 100644
--- a/src/icons/chat-error.js
+++ b/src/icons/chat-error.js
@@ -15,7 +15,6 @@ const ChatError = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChatError"
>
@@ -31,8 +30,7 @@ ChatError.propTypes = {
ChatError.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChatError;
diff --git a/src/icons/chat-remove.js b/src/icons/chat-remove.js
index 3c0212ef..68356698 100644
--- a/src/icons/chat-remove.js
+++ b/src/icons/chat-remove.js
@@ -15,7 +15,6 @@ const ChatRemove = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChatRemove"
>
@@ -31,8 +30,7 @@ ChatRemove.propTypes = {
ChatRemove.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChatRemove;
diff --git a/src/icons/check-box-fill.js b/src/icons/check-box-fill.js
index 3ff57123..e666b2eb 100644
--- a/src/icons/check-box-fill.js
+++ b/src/icons/check-box-fill.js
@@ -11,7 +11,6 @@ const CheckBoxFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CheckBoxFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CheckBox"
>
@@ -30,8 +29,7 @@ CheckBox.propTypes = {
CheckBox.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CheckBox;
diff --git a/src/icons/check.js b/src/icons/check.js
index 189c6c36..9ee5cdec 100644
--- a/src/icons/check.js
+++ b/src/icons/check.js
@@ -15,7 +15,6 @@ const Check = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Check"
>
@@ -29,8 +28,7 @@ Check.propTypes = {
Check.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Check;
diff --git a/src/icons/chess.js b/src/icons/chess.js
index af769d1a..34bf8c78 100644
--- a/src/icons/chess.js
+++ b/src/icons/chess.js
@@ -15,7 +15,6 @@ const Chess = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Chess"
>
@@ -30,8 +29,7 @@ Chess.propTypes = {
Chess.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Chess;
diff --git a/src/icons/chevron-down.js b/src/icons/chevron-down.js
index c063fa71..17a55a31 100644
--- a/src/icons/chevron-down.js
+++ b/src/icons/chevron-down.js
@@ -15,7 +15,6 @@ const ChevronDown = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChevronDown"
>
@@ -29,8 +28,7 @@ ChevronDown.propTypes = {
ChevronDown.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChevronDown;
diff --git a/src/icons/chevron-horizontal.js b/src/icons/chevron-horizontal.js
index 1a8cb0b8..cf6bc48d 100644
--- a/src/icons/chevron-horizontal.js
+++ b/src/icons/chevron-horizontal.js
@@ -15,7 +15,6 @@ const ChevronHorizontal = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChevronHorizontal"
>
@@ -30,8 +29,7 @@ ChevronHorizontal.propTypes = {
ChevronHorizontal.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChevronHorizontal;
diff --git a/src/icons/chevron-left.js b/src/icons/chevron-left.js
index afcfe1dd..bf778fca 100644
--- a/src/icons/chevron-left.js
+++ b/src/icons/chevron-left.js
@@ -15,7 +15,6 @@ const ChevronLeft = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChevronLeft"
>
@@ -29,8 +28,7 @@ ChevronLeft.propTypes = {
ChevronLeft.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChevronLeft;
diff --git a/src/icons/chevron-right.js b/src/icons/chevron-right.js
index 4bb0c994..d2ec3283 100644
--- a/src/icons/chevron-right.js
+++ b/src/icons/chevron-right.js
@@ -15,7 +15,6 @@ const ChevronRight = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChevronRight"
>
@@ -29,8 +28,7 @@ ChevronRight.propTypes = {
ChevronRight.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChevronRight;
diff --git a/src/icons/chevron-up.js b/src/icons/chevron-up.js
index ba3da00d..f1685a23 100644
--- a/src/icons/chevron-up.js
+++ b/src/icons/chevron-up.js
@@ -15,7 +15,6 @@ const ChevronUp = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChevronUp"
>
@@ -29,8 +28,7 @@ ChevronUp.propTypes = {
ChevronUp.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChevronUp;
diff --git a/src/icons/chevron-vertical.js b/src/icons/chevron-vertical.js
index 1b44f471..42388e14 100644
--- a/src/icons/chevron-vertical.js
+++ b/src/icons/chevron-vertical.js
@@ -15,7 +15,6 @@ const ChevronVertical = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ChevronVertical"
>
@@ -30,8 +29,7 @@ ChevronVertical.propTypes = {
ChevronVertical.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ChevronVertical;
diff --git a/src/icons/circle-alert-fill.js b/src/icons/circle-alert-fill.js
index dcb21534..2a55d372 100644
--- a/src/icons/circle-alert-fill.js
+++ b/src/icons/circle-alert-fill.js
@@ -11,7 +11,6 @@ const CircleAlertFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleAlertFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleAlert"
>
@@ -30,8 +29,7 @@ CircleAlert.propTypes = {
CircleAlert.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleAlert;
diff --git a/src/icons/circle-check-fill.js b/src/icons/circle-check-fill.js
index fa47a095..021082fa 100644
--- a/src/icons/circle-check-fill.js
+++ b/src/icons/circle-check-fill.js
@@ -11,7 +11,6 @@ const CircleCheckFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleCheckFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleCheck"
>
@@ -30,8 +29,7 @@ CircleCheck.propTypes = {
CircleCheck.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleCheck;
diff --git a/src/icons/circle-chevron-down-fill.js b/src/icons/circle-chevron-down-fill.js
index 6dde3d95..3f69ac7a 100644
--- a/src/icons/circle-chevron-down-fill.js
+++ b/src/icons/circle-chevron-down-fill.js
@@ -11,7 +11,6 @@ const CircleChevronDownFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleChevronDownFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleChevronDown"
>
@@ -30,8 +29,7 @@ CircleChevronDown.propTypes = {
CircleChevronDown.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleChevronDown;
diff --git a/src/icons/circle-chevron-left-fill.js b/src/icons/circle-chevron-left-fill.js
index c0794be8..880fb777 100644
--- a/src/icons/circle-chevron-left-fill.js
+++ b/src/icons/circle-chevron-left-fill.js
@@ -11,7 +11,6 @@ const CircleChevronLeftFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleChevronLeftFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleChevronLeft"
>
@@ -30,8 +29,7 @@ CircleChevronLeft.propTypes = {
CircleChevronLeft.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleChevronLeft;
diff --git a/src/icons/circle-chevron-right-fill.js b/src/icons/circle-chevron-right-fill.js
index 38b73bfc..3f3b6dff 100644
--- a/src/icons/circle-chevron-right-fill.js
+++ b/src/icons/circle-chevron-right-fill.js
@@ -11,7 +11,6 @@ const CircleChevronRightFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleChevronRightFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleChevronRight"
>
@@ -30,8 +29,7 @@ CircleChevronRight.propTypes = {
CircleChevronRight.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleChevronRight;
diff --git a/src/icons/circle-chevron-up-fill.js b/src/icons/circle-chevron-up-fill.js
index b6776356..3fe66379 100644
--- a/src/icons/circle-chevron-up-fill.js
+++ b/src/icons/circle-chevron-up-fill.js
@@ -11,7 +11,6 @@ const CircleChevronUpFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleChevronUpFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleChevronUp"
>
@@ -30,8 +29,7 @@ CircleChevronUp.propTypes = {
CircleChevronUp.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleChevronUp;
diff --git a/src/icons/circle-fill.js b/src/icons/circle-fill.js
index 3ab95516..40219d2c 100644
--- a/src/icons/circle-fill.js
+++ b/src/icons/circle-fill.js
@@ -11,7 +11,6 @@ const CircleFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleFill"
>
@@ -25,8 +24,7 @@ CircleFill.propTypes = {
CircleFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleFill;
diff --git a/src/icons/circle-minus-fill.js b/src/icons/circle-minus-fill.js
index 6be5d677..992ab918 100644
--- a/src/icons/circle-minus-fill.js
+++ b/src/icons/circle-minus-fill.js
@@ -11,7 +11,6 @@ const CircleMinusFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleMinusFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleMinus"
>
@@ -30,8 +29,7 @@ CircleMinus.propTypes = {
CircleMinus.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleMinus;
diff --git a/src/icons/circle-plus-fill.js b/src/icons/circle-plus-fill.js
index 9c952a37..ce25b6b2 100644
--- a/src/icons/circle-plus-fill.js
+++ b/src/icons/circle-plus-fill.js
@@ -11,7 +11,6 @@ const CirclePlusFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CirclePlusFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CirclePlus"
>
@@ -30,8 +29,7 @@ CirclePlus.propTypes = {
CirclePlus.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CirclePlus;
diff --git a/src/icons/circle-triangle-down-fill.js b/src/icons/circle-triangle-down-fill.js
index 5310af50..71f3038b 100644
--- a/src/icons/circle-triangle-down-fill.js
+++ b/src/icons/circle-triangle-down-fill.js
@@ -11,7 +11,6 @@ const CircleTriangleDownFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleTriangleDownFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleTriangleDown"
>
@@ -30,8 +29,7 @@ CircleTriangleDown.propTypes = {
CircleTriangleDown.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleTriangleDown;
diff --git a/src/icons/circle-triangle-left-fill.js b/src/icons/circle-triangle-left-fill.js
index 71d58c45..133b9eb4 100644
--- a/src/icons/circle-triangle-left-fill.js
+++ b/src/icons/circle-triangle-left-fill.js
@@ -11,7 +11,6 @@ const CircleTriangleLeftFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleTriangleLeftFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleTriangleLeft"
>
@@ -30,8 +29,7 @@ CircleTriangleLeft.propTypes = {
CircleTriangleLeft.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleTriangleLeft;
diff --git a/src/icons/circle-triangle-right-fill.js b/src/icons/circle-triangle-right-fill.js
index 4a34c079..e66c9832 100644
--- a/src/icons/circle-triangle-right-fill.js
+++ b/src/icons/circle-triangle-right-fill.js
@@ -11,7 +11,6 @@ const CircleTriangleRightFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleTriangleRightFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleTriangleRight"
>
@@ -30,8 +29,7 @@ CircleTriangleRight.propTypes = {
CircleTriangleRight.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleTriangleRight;
diff --git a/src/icons/circle-triangle-up-fill.js b/src/icons/circle-triangle-up-fill.js
index 7d1922a2..19341b7a 100644
--- a/src/icons/circle-triangle-up-fill.js
+++ b/src/icons/circle-triangle-up-fill.js
@@ -11,7 +11,6 @@ const CircleTriangleUpFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleTriangleUpFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleTriangleUp"
>
@@ -30,8 +29,7 @@ CircleTriangleUp.propTypes = {
CircleTriangleUp.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleTriangleUp;
diff --git a/src/icons/circle-x-fill.js b/src/icons/circle-x-fill.js
index 68a0e2da..460a5b1b 100644
--- a/src/icons/circle-x-fill.js
+++ b/src/icons/circle-x-fill.js
@@ -11,7 +11,6 @@ const CircleXFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CircleXFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CircleX"
>
@@ -30,8 +29,7 @@ CircleX.propTypes = {
CircleX.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CircleX;
diff --git a/src/icons/circle.js b/src/icons/circle.js
index 3c6141c6..fb100a82 100644
--- a/src/icons/circle.js
+++ b/src/icons/circle.js
@@ -15,7 +15,6 @@ const Circle = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Circle"
>
@@ -29,8 +28,7 @@ Circle.propTypes = {
Circle.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Circle;
diff --git a/src/icons/clipboard.js b/src/icons/clipboard.js
index aa4094b1..0ecbb011 100644
--- a/src/icons/clipboard.js
+++ b/src/icons/clipboard.js
@@ -15,7 +15,6 @@ const Clipboard = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Clipboard"
>
@@ -32,8 +31,7 @@ Clipboard.propTypes = {
Clipboard.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Clipboard;
diff --git a/src/icons/clock.js b/src/icons/clock.js
index 7bde6ddc..a12547b8 100644
--- a/src/icons/clock.js
+++ b/src/icons/clock.js
@@ -15,7 +15,6 @@ const Clock = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Clock"
>
@@ -30,8 +29,7 @@ Clock.propTypes = {
Clock.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Clock;
diff --git a/src/icons/cloud-download.js b/src/icons/cloud-download.js
index bc1f192a..9fd70a3e 100644
--- a/src/icons/cloud-download.js
+++ b/src/icons/cloud-download.js
@@ -15,7 +15,6 @@ const CloudDownload = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CloudDownload"
>
@@ -32,8 +31,7 @@ CloudDownload.propTypes = {
CloudDownload.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CloudDownload;
diff --git a/src/icons/cloud-upload.js b/src/icons/cloud-upload.js
index 174a4be6..1c0d2a4d 100644
--- a/src/icons/cloud-upload.js
+++ b/src/icons/cloud-upload.js
@@ -15,7 +15,6 @@ const CloudUpload = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CloudUpload"
>
@@ -32,8 +31,7 @@ CloudUpload.propTypes = {
CloudUpload.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CloudUpload;
diff --git a/src/icons/cloud.js b/src/icons/cloud.js
index 89616106..11e43474 100644
--- a/src/icons/cloud.js
+++ b/src/icons/cloud.js
@@ -15,7 +15,6 @@ const Cloud = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Cloud"
>
@@ -30,8 +29,7 @@ Cloud.propTypes = {
Cloud.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Cloud;
diff --git a/src/icons/codepen-fill.js b/src/icons/codepen-fill.js
index 1e31e75c..c60b5767 100644
--- a/src/icons/codepen-fill.js
+++ b/src/icons/codepen-fill.js
@@ -11,7 +11,6 @@ const CodepenFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="CodepenFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Coffee"
>
@@ -34,8 +33,7 @@ Coffee.propTypes = {
Coffee.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Coffee;
diff --git a/src/icons/coin.js b/src/icons/coin.js
index a30e299b..3df6b4a8 100644
--- a/src/icons/coin.js
+++ b/src/icons/coin.js
@@ -15,7 +15,6 @@ const Coin = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Coin"
>
@@ -31,8 +30,7 @@ Coin.propTypes = {
Coin.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Coin;
diff --git a/src/icons/command.js b/src/icons/command.js
index bfcfa6dd..202e76d0 100644
--- a/src/icons/command.js
+++ b/src/icons/command.js
@@ -15,7 +15,6 @@ const Command = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Command"
>
@@ -29,8 +28,7 @@ Command.propTypes = {
Command.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Command;
diff --git a/src/icons/computing.js b/src/icons/computing.js
index 86d6c358..e74df42e 100644
--- a/src/icons/computing.js
+++ b/src/icons/computing.js
@@ -15,7 +15,6 @@ const Computing = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Computing"
>
@@ -37,8 +36,7 @@ Computing.propTypes = {
Computing.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Computing;
diff --git a/src/icons/copy.js b/src/icons/copy.js
index 16de104e..cb7e16c9 100644
--- a/src/icons/copy.js
+++ b/src/icons/copy.js
@@ -15,7 +15,6 @@ const Copy = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Copy"
>
@@ -30,8 +29,7 @@ Copy.propTypes = {
Copy.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Copy;
diff --git a/src/icons/credit-card.js b/src/icons/credit-card.js
index 6a5bc9b3..ccd73844 100644
--- a/src/icons/credit-card.js
+++ b/src/icons/credit-card.js
@@ -15,7 +15,6 @@ const CreditCard = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="CreditCard"
>
@@ -30,8 +29,7 @@ CreditCard.propTypes = {
CreditCard.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default CreditCard;
diff --git a/src/icons/cross.js b/src/icons/cross.js
index 03db1e84..6e8c59d5 100644
--- a/src/icons/cross.js
+++ b/src/icons/cross.js
@@ -15,7 +15,6 @@ const Cross = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Cross"
>
@@ -29,8 +28,7 @@ Cross.propTypes = {
Cross.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Cross;
diff --git a/src/icons/css-fill.js b/src/icons/css-fill.js
new file mode 100644
index 00000000..71ca1949
--- /dev/null
+++ b/src/icons/css-fill.js
@@ -0,0 +1,37 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const CssFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+
+
+ );
+};
+
+CssFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+CssFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default CssFill;
diff --git a/src/icons/desktop-device.js b/src/icons/desktop-device.js
index 4f191182..cd41ab1e 100644
--- a/src/icons/desktop-device.js
+++ b/src/icons/desktop-device.js
@@ -15,7 +15,6 @@ const DesktopDevice = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="DesktopDevice"
>
@@ -30,8 +29,7 @@ DesktopDevice.propTypes = {
DesktopDevice.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default DesktopDevice;
diff --git a/src/icons/devices.js b/src/icons/devices.js
index 30692d2d..b6a8a61f 100644
--- a/src/icons/devices.js
+++ b/src/icons/devices.js
@@ -15,7 +15,6 @@ const Devices = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Devices"
>
@@ -32,8 +31,7 @@ Devices.propTypes = {
Devices.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Devices;
diff --git a/src/icons/diamond.js b/src/icons/diamond.js
index 9f3cc843..5d457e40 100644
--- a/src/icons/diamond.js
+++ b/src/icons/diamond.js
@@ -15,7 +15,6 @@ const Diamond = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Diamond"
>
@@ -29,8 +28,7 @@ Diamond.propTypes = {
Diamond.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Diamond;
diff --git a/src/icons/discord-fill.js b/src/icons/discord-fill.js
index fadd344d..31137cfe 100644
--- a/src/icons/discord-fill.js
+++ b/src/icons/discord-fill.js
@@ -11,7 +11,6 @@ const DiscordFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="DiscordFill"
>
@@ -25,8 +24,7 @@ DiscordFill.propTypes = {
DiscordFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default DiscordFill;
diff --git a/src/icons/django-fill.js b/src/icons/django-fill.js
new file mode 100644
index 00000000..cc2da954
--- /dev/null
+++ b/src/icons/django-fill.js
@@ -0,0 +1,36 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const DjangoFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+
+ );
+};
+
+DjangoFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+DjangoFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default DjangoFill;
diff --git a/src/icons/door.js b/src/icons/door.js
index 74fe7f8a..e8454ea7 100644
--- a/src/icons/door.js
+++ b/src/icons/door.js
@@ -15,7 +15,6 @@ const Door = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Door"
>
@@ -31,8 +30,7 @@ Door.propTypes = {
Door.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Door;
diff --git a/src/icons/dot-grid.js b/src/icons/dot-grid.js
index cdde9cd5..a2f076d1 100644
--- a/src/icons/dot-grid.js
+++ b/src/icons/dot-grid.js
@@ -15,7 +15,6 @@ const DotGrid = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="DotGrid"
>
@@ -37,8 +36,7 @@ DotGrid.propTypes = {
DotGrid.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default DotGrid;
diff --git a/src/icons/double-check.js b/src/icons/double-check.js
index b2bed182..445e149d 100644
--- a/src/icons/double-check.js
+++ b/src/icons/double-check.js
@@ -15,7 +15,6 @@ const DoubleCheck = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="DoubleCheck"
>
@@ -31,8 +30,7 @@ DoubleCheck.propTypes = {
DoubleCheck.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default DoubleCheck;
diff --git a/src/icons/download.js b/src/icons/download.js
index ee877c9c..93fc6c0e 100644
--- a/src/icons/download.js
+++ b/src/icons/download.js
@@ -15,7 +15,6 @@ const Download = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Download"
>
@@ -30,8 +29,7 @@ Download.propTypes = {
Download.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Download;
diff --git a/src/icons/draft.js b/src/icons/draft.js
index 9bac805f..38873011 100644
--- a/src/icons/draft.js
+++ b/src/icons/draft.js
@@ -15,7 +15,6 @@ const Draft = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Draft"
>
@@ -30,8 +29,7 @@ Draft.propTypes = {
Draft.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Draft;
diff --git a/src/icons/drag-horizontal-fill.js b/src/icons/drag-horizontal-fill.js
index 6305c44c..5629aceb 100644
--- a/src/icons/drag-horizontal-fill.js
+++ b/src/icons/drag-horizontal-fill.js
@@ -11,7 +11,6 @@ const DragHorizontalFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="DragHorizontalFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="DragVerticalFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="DribbbleFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="DropboxFill"
>
@@ -25,8 +24,7 @@ DropboxFill.propTypes = {
DropboxFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default DropboxFill;
diff --git a/src/icons/edit.js b/src/icons/edit.js
index 71b2a9bf..b79d915a 100644
--- a/src/icons/edit.js
+++ b/src/icons/edit.js
@@ -15,7 +15,6 @@ const Edit = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Edit"
>
@@ -30,8 +29,7 @@ Edit.propTypes = {
Edit.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Edit;
diff --git a/src/icons/enlarge.js b/src/icons/enlarge.js
index 71e79a78..9e4f530c 100644
--- a/src/icons/enlarge.js
+++ b/src/icons/enlarge.js
@@ -15,7 +15,6 @@ const Enlarge = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Enlarge"
>
@@ -29,8 +28,7 @@ Enlarge.propTypes = {
Enlarge.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Enlarge;
diff --git a/src/icons/envelope.js b/src/icons/envelope.js
index 995e0604..0f73afa2 100644
--- a/src/icons/envelope.js
+++ b/src/icons/envelope.js
@@ -15,7 +15,6 @@ const Envelope = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Envelope"
>
@@ -30,8 +29,7 @@ Envelope.propTypes = {
Envelope.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Envelope;
diff --git a/src/icons/eye-closed.js b/src/icons/eye-closed.js
index 0ba19546..60d3bb28 100644
--- a/src/icons/eye-closed.js
+++ b/src/icons/eye-closed.js
@@ -15,7 +15,6 @@ const EyeClosed = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="EyeClosed"
>
@@ -33,8 +32,7 @@ EyeClosed.propTypes = {
EyeClosed.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default EyeClosed;
diff --git a/src/icons/eye-open.js b/src/icons/eye-open.js
index 89d5e056..cc07e690 100644
--- a/src/icons/eye-open.js
+++ b/src/icons/eye-open.js
@@ -15,7 +15,6 @@ const EyeOpen = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="EyeOpen"
>
@@ -30,8 +29,7 @@ EyeOpen.propTypes = {
EyeOpen.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default EyeOpen;
diff --git a/src/icons/eye-slashed.js b/src/icons/eye-slashed.js
index ac724026..1302dd7b 100644
--- a/src/icons/eye-slashed.js
+++ b/src/icons/eye-slashed.js
@@ -15,7 +15,6 @@ const EyeSlashed = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="EyeSlashed"
>
@@ -32,8 +31,7 @@ EyeSlashed.propTypes = {
EyeSlashed.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default EyeSlashed;
diff --git a/src/icons/face-happy.js b/src/icons/face-happy.js
index 09026f82..e0be0cd0 100644
--- a/src/icons/face-happy.js
+++ b/src/icons/face-happy.js
@@ -15,7 +15,6 @@ const FaceHappy = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="FaceHappy"
>
@@ -32,8 +31,7 @@ FaceHappy.propTypes = {
FaceHappy.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default FaceHappy;
diff --git a/src/icons/face-neutral.js b/src/icons/face-neutral.js
index 4e85093b..7298bc02 100644
--- a/src/icons/face-neutral.js
+++ b/src/icons/face-neutral.js
@@ -15,7 +15,6 @@ const FaceNeutral = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="FaceNeutral"
>
@@ -32,8 +31,7 @@ FaceNeutral.propTypes = {
FaceNeutral.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default FaceNeutral;
diff --git a/src/icons/face-sad.js b/src/icons/face-sad.js
index a08aff76..ee23fe7f 100644
--- a/src/icons/face-sad.js
+++ b/src/icons/face-sad.js
@@ -15,7 +15,6 @@ const FaceSad = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="FaceSad"
>
@@ -32,8 +31,7 @@ FaceSad.propTypes = {
FaceSad.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default FaceSad;
diff --git a/src/icons/face-very-happy.js b/src/icons/face-very-happy.js
index 90e87204..54c1b035 100644
--- a/src/icons/face-very-happy.js
+++ b/src/icons/face-very-happy.js
@@ -15,7 +15,6 @@ const FaceVeryHappy = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="FaceVeryHappy"
>
@@ -32,8 +31,7 @@ FaceVeryHappy.propTypes = {
FaceVeryHappy.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default FaceVeryHappy;
diff --git a/src/icons/face-very-sad.js b/src/icons/face-very-sad.js
index 81fc0dc0..8a883684 100644
--- a/src/icons/face-very-sad.js
+++ b/src/icons/face-very-sad.js
@@ -15,7 +15,6 @@ const FaceVerySad = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="FaceVerySad"
>
@@ -32,8 +31,7 @@ FaceVerySad.propTypes = {
FaceVerySad.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default FaceVerySad;
diff --git a/src/icons/face-wink.js b/src/icons/face-wink.js
index 876aa3dd..8e69acba 100644
--- a/src/icons/face-wink.js
+++ b/src/icons/face-wink.js
@@ -15,7 +15,6 @@ const FaceWink = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="FaceWink"
>
@@ -32,8 +31,7 @@ FaceWink.propTypes = {
FaceWink.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default FaceWink;
diff --git a/src/icons/facebook-fill.js b/src/icons/facebook-fill.js
index aef9cfc4..76f07899 100644
--- a/src/icons/facebook-fill.js
+++ b/src/icons/facebook-fill.js
@@ -11,7 +11,6 @@ const FacebookFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="FacebookFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="FigmaFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="File"
>
@@ -32,8 +31,7 @@ File.propTypes = {
File.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default File;
diff --git a/src/icons/fire.js b/src/icons/fire.js
index c5bda66b..41b9123a 100644
--- a/src/icons/fire.js
+++ b/src/icons/fire.js
@@ -15,7 +15,6 @@ const Fire = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Fire"
>
@@ -30,8 +29,7 @@ Fire.propTypes = {
Fire.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Fire;
diff --git a/src/icons/flag.js b/src/icons/flag.js
index 27e0d0e9..4fca714c 100644
--- a/src/icons/flag.js
+++ b/src/icons/flag.js
@@ -15,7 +15,6 @@ const Flag = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Flag"
>
@@ -29,8 +28,7 @@ Flag.propTypes = {
Flag.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Flag;
diff --git a/src/icons/flashlight.js b/src/icons/flashlight.js
index e386a51c..d9d91a06 100644
--- a/src/icons/flashlight.js
+++ b/src/icons/flashlight.js
@@ -15,7 +15,6 @@ const Flashlight = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Flashlight"
>
@@ -31,8 +30,7 @@ Flashlight.propTypes = {
Flashlight.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Flashlight;
diff --git a/src/icons/folder-add.js b/src/icons/folder-add.js
index 6a9842de..fcfcf431 100644
--- a/src/icons/folder-add.js
+++ b/src/icons/folder-add.js
@@ -15,7 +15,6 @@ const FolderAdd = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="FolderAdd"
>
@@ -30,8 +29,7 @@ FolderAdd.propTypes = {
FolderAdd.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default FolderAdd;
diff --git a/src/icons/folder.js b/src/icons/folder.js
index 4f762b37..f438f9cd 100644
--- a/src/icons/folder.js
+++ b/src/icons/folder.js
@@ -15,7 +15,6 @@ const Folder = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Folder"
>
@@ -29,8 +28,7 @@ Folder.propTypes = {
Folder.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Folder;
diff --git a/src/icons/full-screen.js b/src/icons/full-screen.js
index 3fb0512b..fc73fc39 100644
--- a/src/icons/full-screen.js
+++ b/src/icons/full-screen.js
@@ -15,7 +15,6 @@ const FullScreen = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="FullScreen"
>
@@ -32,8 +31,7 @@ FullScreen.propTypes = {
FullScreen.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default FullScreen;
diff --git a/src/icons/game-controller.js b/src/icons/game-controller.js
index 26089a8d..defb984e 100644
--- a/src/icons/game-controller.js
+++ b/src/icons/game-controller.js
@@ -15,7 +15,6 @@ const GameController = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="GameController"
>
@@ -30,8 +29,7 @@ GameController.propTypes = {
GameController.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default GameController;
diff --git a/src/icons/gatsby-fill.js b/src/icons/gatsby-fill.js
new file mode 100644
index 00000000..47e3a377
--- /dev/null
+++ b/src/icons/gatsby-fill.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const GatsbyFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+ );
+};
+
+GatsbyFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+GatsbyFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default GatsbyFill;
diff --git a/src/icons/gear.js b/src/icons/gear.js
index d0f47285..0e429b16 100644
--- a/src/icons/gear.js
+++ b/src/icons/gear.js
@@ -15,7 +15,6 @@ const Gear = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Gear"
>
@@ -30,8 +29,7 @@ Gear.propTypes = {
Gear.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Gear;
diff --git a/src/icons/gift.js b/src/icons/gift.js
index c6ed34e6..57a8fa0f 100644
--- a/src/icons/gift.js
+++ b/src/icons/gift.js
@@ -15,7 +15,6 @@ const Gift = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Gift"
>
@@ -33,8 +32,7 @@ Gift.propTypes = {
Gift.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Gift;
diff --git a/src/icons/github-fill.js b/src/icons/github-fill.js
index 432f22b0..af266fb5 100644
--- a/src/icons/github-fill.js
+++ b/src/icons/github-fill.js
@@ -11,7 +11,6 @@ const GithubFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="GithubFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Glasses"
>
@@ -33,8 +32,7 @@ Glasses.propTypes = {
Glasses.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Glasses;
diff --git a/src/icons/globe.js b/src/icons/globe.js
index 3b36e4e8..8cc60103 100644
--- a/src/icons/globe.js
+++ b/src/icons/globe.js
@@ -15,7 +15,6 @@ const Globe = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Globe"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="GoogleContainedFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="GoogleFill"
>
@@ -25,8 +24,7 @@ GoogleFill.propTypes = {
GoogleFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default GoogleFill;
diff --git a/src/icons/graphql-fill.js b/src/icons/graphql-fill.js
new file mode 100644
index 00000000..9910b880
--- /dev/null
+++ b/src/icons/graphql-fill.js
@@ -0,0 +1,41 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const GraphqlFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+GraphqlFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+GraphqlFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default GraphqlFill;
diff --git a/src/icons/grid.js b/src/icons/grid.js
index 0b960cf9..ae3addba 100644
--- a/src/icons/grid.js
+++ b/src/icons/grid.js
@@ -15,7 +15,6 @@ const Grid = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Grid"
>
@@ -32,8 +31,7 @@ Grid.propTypes = {
Grid.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Grid;
diff --git a/src/icons/hashtag.js b/src/icons/hashtag.js
index 63a4bc68..0a9663d9 100644
--- a/src/icons/hashtag.js
+++ b/src/icons/hashtag.js
@@ -15,7 +15,6 @@ const Hashtag = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Hashtag"
>
@@ -32,8 +31,7 @@ Hashtag.propTypes = {
Hashtag.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Hashtag;
diff --git a/src/icons/headphone.js b/src/icons/headphone.js
index 18522e37..1e4e2f3a 100644
--- a/src/icons/headphone.js
+++ b/src/icons/headphone.js
@@ -15,7 +15,6 @@ const Headphone = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Headphone"
>
@@ -31,8 +30,7 @@ Headphone.propTypes = {
Headphone.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Headphone;
diff --git a/src/icons/health.js b/src/icons/health.js
index ac583537..c1eb442a 100644
--- a/src/icons/health.js
+++ b/src/icons/health.js
@@ -15,7 +15,6 @@ const Health = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Health"
>
@@ -29,8 +28,7 @@ Health.propTypes = {
Health.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Health;
diff --git a/src/icons/heart.js b/src/icons/heart.js
index 5378f0a6..b291ff5b 100644
--- a/src/icons/heart.js
+++ b/src/icons/heart.js
@@ -15,7 +15,6 @@ const Heart = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Heart"
>
@@ -29,8 +28,7 @@ Heart.propTypes = {
Heart.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Heart;
diff --git a/src/icons/height.js b/src/icons/height.js
index 2f3ca2f4..81a04fb5 100644
--- a/src/icons/height.js
+++ b/src/icons/height.js
@@ -15,7 +15,6 @@ const Height = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Height"
>
@@ -29,8 +28,7 @@ Height.propTypes = {
Height.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Height;
diff --git a/src/icons/heptagon-fill.js b/src/icons/heptagon-fill.js
index b31bf1c6..3405adc6 100644
--- a/src/icons/heptagon-fill.js
+++ b/src/icons/heptagon-fill.js
@@ -11,7 +11,6 @@ const HeptagonFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="HeptagonFill"
>
@@ -25,8 +24,7 @@ HeptagonFill.propTypes = {
HeptagonFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default HeptagonFill;
diff --git a/src/icons/heptagon.js b/src/icons/heptagon.js
index 3d03135d..654aeaab 100644
--- a/src/icons/heptagon.js
+++ b/src/icons/heptagon.js
@@ -15,7 +15,6 @@ const Heptagon = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Heptagon"
>
@@ -29,8 +28,7 @@ Heptagon.propTypes = {
Heptagon.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Heptagon;
diff --git a/src/icons/hexagon-fill.js b/src/icons/hexagon-fill.js
index eee81246..0951dd6e 100644
--- a/src/icons/hexagon-fill.js
+++ b/src/icons/hexagon-fill.js
@@ -11,7 +11,6 @@ const HexagonFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="HexagonFill"
>
@@ -25,8 +24,7 @@ HexagonFill.propTypes = {
HexagonFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default HexagonFill;
diff --git a/src/icons/hexagon.js b/src/icons/hexagon.js
index 4dcac0c3..0ac2281e 100644
--- a/src/icons/hexagon.js
+++ b/src/icons/hexagon.js
@@ -15,7 +15,6 @@ const Hexagon = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Hexagon"
>
@@ -29,8 +28,7 @@ Hexagon.propTypes = {
Hexagon.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Hexagon;
diff --git a/src/icons/home.js b/src/icons/home.js
index 2aedd11f..1e4314e3 100644
--- a/src/icons/home.js
+++ b/src/icons/home.js
@@ -15,7 +15,6 @@ const Home = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Home"
>
@@ -29,8 +28,7 @@ Home.propTypes = {
Home.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Home;
diff --git a/src/icons/html-fill.js b/src/icons/html-fill.js
new file mode 100644
index 00000000..dd01b7f9
--- /dev/null
+++ b/src/icons/html-fill.js
@@ -0,0 +1,45 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const HtmlFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+HtmlFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+HtmlFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default HtmlFill;
diff --git a/src/icons/image.js b/src/icons/image.js
index a05a5e45..dd456821 100644
--- a/src/icons/image.js
+++ b/src/icons/image.js
@@ -15,7 +15,6 @@ const Image = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Image"
>
@@ -31,8 +30,7 @@ Image.propTypes = {
Image.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Image;
diff --git a/src/icons/inbox.js b/src/icons/inbox.js
index 2fee4103..f2e20a1c 100644
--- a/src/icons/inbox.js
+++ b/src/icons/inbox.js
@@ -15,7 +15,6 @@ const Inbox = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Inbox"
>
@@ -30,8 +29,7 @@ Inbox.propTypes = {
Inbox.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Inbox;
diff --git a/src/icons/infinite.js b/src/icons/infinite.js
index aa900648..5d070b40 100644
--- a/src/icons/infinite.js
+++ b/src/icons/infinite.js
@@ -15,7 +15,6 @@ const Infinite = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Infinite"
>
@@ -29,8 +28,7 @@ Infinite.propTypes = {
Infinite.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Infinite;
diff --git a/src/icons/info-fill.js b/src/icons/info-fill.js
index 9f6623db..542804a7 100644
--- a/src/icons/info-fill.js
+++ b/src/icons/info-fill.js
@@ -11,7 +11,6 @@ const InfoFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="InfoFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Info"
>
@@ -32,8 +31,7 @@ Info.propTypes = {
Info.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Info;
diff --git a/src/icons/instagram-fill.js b/src/icons/instagram-fill.js
index 393e79d9..dcb75c24 100644
--- a/src/icons/instagram-fill.js
+++ b/src/icons/instagram-fill.js
@@ -11,7 +11,6 @@ const InstagramFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="InstagramFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Jar"
>
@@ -32,8 +31,7 @@ Jar.propTypes = {
Jar.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Jar;
diff --git a/src/icons/javascript-fill.js b/src/icons/javascript-fill.js
new file mode 100644
index 00000000..51d5bfb0
--- /dev/null
+++ b/src/icons/javascript-fill.js
@@ -0,0 +1,34 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const JavascriptFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+ );
+};
+
+JavascriptFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+JavascriptFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default JavascriptFill;
diff --git a/src/icons/jquery-fill.js b/src/icons/jquery-fill.js
new file mode 100644
index 00000000..37da2137
--- /dev/null
+++ b/src/icons/jquery-fill.js
@@ -0,0 +1,32 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const JqueryFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+
+ );
+};
+
+JqueryFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+JqueryFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default JqueryFill;
diff --git a/src/icons/key-cap.js b/src/icons/key-cap.js
index 37ae82c6..755a0d3f 100644
--- a/src/icons/key-cap.js
+++ b/src/icons/key-cap.js
@@ -15,7 +15,6 @@ const KeyCap = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="KeyCap"
>
@@ -32,8 +31,7 @@ KeyCap.propTypes = {
KeyCap.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default KeyCap;
diff --git a/src/icons/laptop-device.js b/src/icons/laptop-device.js
index b427f10f..ae182366 100644
--- a/src/icons/laptop-device.js
+++ b/src/icons/laptop-device.js
@@ -15,7 +15,6 @@ const LaptopDevice = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="LaptopDevice"
>
@@ -30,8 +29,7 @@ LaptopDevice.propTypes = {
LaptopDevice.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default LaptopDevice;
diff --git a/src/icons/leaf.js b/src/icons/leaf.js
index 09d68ba4..7b38e4f2 100644
--- a/src/icons/leaf.js
+++ b/src/icons/leaf.js
@@ -15,7 +15,6 @@ const Leaf = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Leaf"
>
@@ -30,8 +29,7 @@ Leaf.propTypes = {
Leaf.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Leaf;
diff --git a/src/icons/lifesaver.js b/src/icons/lifesaver.js
index c3f0d0d5..cd73b8d5 100644
--- a/src/icons/lifesaver.js
+++ b/src/icons/lifesaver.js
@@ -15,7 +15,6 @@ const Lifesaver = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Lifesaver"
>
@@ -41,8 +40,7 @@ Lifesaver.propTypes = {
Lifesaver.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Lifesaver;
diff --git a/src/icons/light-bulb.js b/src/icons/light-bulb.js
index f117e7d7..3367ded8 100644
--- a/src/icons/light-bulb.js
+++ b/src/icons/light-bulb.js
@@ -15,7 +15,6 @@ const LightBulb = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="LightBulb"
>
@@ -30,8 +29,7 @@ LightBulb.propTypes = {
LightBulb.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default LightBulb;
diff --git a/src/icons/link-chain.js b/src/icons/link-chain.js
index 7c3ac33b..1704c1a4 100644
--- a/src/icons/link-chain.js
+++ b/src/icons/link-chain.js
@@ -15,7 +15,6 @@ const LinkChain = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="LinkChain"
>
@@ -30,8 +29,7 @@ LinkChain.propTypes = {
LinkChain.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default LinkChain;
diff --git a/src/icons/link-off.js b/src/icons/link-off.js
index 8b814854..8110c197 100644
--- a/src/icons/link-off.js
+++ b/src/icons/link-off.js
@@ -15,7 +15,6 @@ const LinkOff = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="LinkOff"
>
@@ -30,8 +29,7 @@ LinkOff.propTypes = {
LinkOff.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default LinkOff;
diff --git a/src/icons/link-on.js b/src/icons/link-on.js
index 1ffd62d4..29003460 100644
--- a/src/icons/link-on.js
+++ b/src/icons/link-on.js
@@ -15,7 +15,6 @@ const LinkOn = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="LinkOn"
>
@@ -31,8 +30,7 @@ LinkOn.propTypes = {
LinkOn.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default LinkOn;
diff --git a/src/icons/link-out.js b/src/icons/link-out.js
index 431780e2..b7e6a7d5 100644
--- a/src/icons/link-out.js
+++ b/src/icons/link-out.js
@@ -15,7 +15,6 @@ const LinkOut = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="LinkOut"
>
@@ -31,8 +30,7 @@ LinkOut.propTypes = {
LinkOut.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default LinkOut;
diff --git a/src/icons/linkedInV1-fill.js b/src/icons/linkedInV1-fill.js
index 3ddfd0bd..9bd89188 100644
--- a/src/icons/linkedInV1-fill.js
+++ b/src/icons/linkedInV1-fill.js
@@ -11,7 +11,6 @@ const LinkedInV1Fill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="LinkedInV1Fill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="LinkedInV2Fill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Location"
>
@@ -30,8 +29,7 @@ Location.propTypes = {
Location.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Location;
diff --git a/src/icons/lock-off.js b/src/icons/lock-off.js
index 74249711..3ec283d3 100644
--- a/src/icons/lock-off.js
+++ b/src/icons/lock-off.js
@@ -15,7 +15,6 @@ const LockOff = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="LockOff"
>
@@ -30,8 +29,7 @@ LockOff.propTypes = {
LockOff.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default LockOff;
diff --git a/src/icons/lock-on.js b/src/icons/lock-on.js
index 5e90744d..afd74918 100644
--- a/src/icons/lock-on.js
+++ b/src/icons/lock-on.js
@@ -15,7 +15,6 @@ const LockOn = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="LockOn"
>
@@ -30,8 +29,7 @@ LockOn.propTypes = {
LockOn.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default LockOn;
diff --git a/src/icons/map.js b/src/icons/map.js
index 38b7fff2..765e7ca1 100644
--- a/src/icons/map.js
+++ b/src/icons/map.js
@@ -15,7 +15,6 @@ const Map = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Map"
>
@@ -31,8 +30,7 @@ Map.propTypes = {
Map.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Map;
diff --git a/src/icons/medium-fill.js b/src/icons/medium-fill.js
index 5cfc7ac2..eb3deea5 100644
--- a/src/icons/medium-fill.js
+++ b/src/icons/medium-fill.js
@@ -11,7 +11,6 @@ const MediumFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="MediumFill"
>
@@ -25,8 +24,7 @@ MediumFill.propTypes = {
MediumFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default MediumFill;
diff --git a/src/icons/mention.js b/src/icons/mention.js
index 7d21762f..4d5a6a36 100644
--- a/src/icons/mention.js
+++ b/src/icons/mention.js
@@ -15,7 +15,6 @@ const Mention = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Mention"
>
@@ -31,8 +30,7 @@ Mention.propTypes = {
Mention.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Mention;
diff --git a/src/icons/microphone.js b/src/icons/microphone.js
index b8fa13a3..d27a2c72 100644
--- a/src/icons/microphone.js
+++ b/src/icons/microphone.js
@@ -15,7 +15,6 @@ const Microphone = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Microphone"
>
@@ -32,8 +31,7 @@ Microphone.propTypes = {
Microphone.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Microphone;
diff --git a/src/icons/miniplayer.js b/src/icons/miniplayer.js
index 7d6a4dfb..556a45ab 100644
--- a/src/icons/miniplayer.js
+++ b/src/icons/miniplayer.js
@@ -15,7 +15,6 @@ const Miniplayer = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Miniplayer"
>
@@ -30,8 +29,7 @@ Miniplayer.propTypes = {
Miniplayer.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Miniplayer;
diff --git a/src/icons/minus.js b/src/icons/minus.js
index 7bf750bb..d95d0ba8 100644
--- a/src/icons/minus.js
+++ b/src/icons/minus.js
@@ -15,7 +15,6 @@ const Minus = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Minus"
>
@@ -29,8 +28,7 @@ Minus.propTypes = {
Minus.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Minus;
diff --git a/src/icons/mobile-device.js b/src/icons/mobile-device.js
index f98ec2dd..95428362 100644
--- a/src/icons/mobile-device.js
+++ b/src/icons/mobile-device.js
@@ -15,7 +15,6 @@ const MobileDevice = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="MobileDevice"
>
@@ -30,8 +29,7 @@ MobileDevice.propTypes = {
MobileDevice.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default MobileDevice;
diff --git a/src/icons/money.js b/src/icons/money.js
index 7c64a26c..abfab0d0 100644
--- a/src/icons/money.js
+++ b/src/icons/money.js
@@ -15,7 +15,6 @@ const Money = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Money"
>
@@ -32,8 +31,7 @@ Money.propTypes = {
Money.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Money;
diff --git a/src/icons/moon-fill.js b/src/icons/moon-fill.js
index 828eada7..37149df1 100644
--- a/src/icons/moon-fill.js
+++ b/src/icons/moon-fill.js
@@ -11,7 +11,6 @@ const MoonFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="MoonFill"
>
@@ -26,8 +25,7 @@ MoonFill.propTypes = {
MoonFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default MoonFill;
diff --git a/src/icons/moon.js b/src/icons/moon.js
index 56343c0b..bfd11915 100644
--- a/src/icons/moon.js
+++ b/src/icons/moon.js
@@ -15,7 +15,6 @@ const Moon = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Moon"
>
@@ -30,8 +29,7 @@ Moon.propTypes = {
Moon.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Moon;
diff --git a/src/icons/more-horizontal-fill.js b/src/icons/more-horizontal-fill.js
index e0f9fa60..6c068c60 100644
--- a/src/icons/more-horizontal-fill.js
+++ b/src/icons/more-horizontal-fill.js
@@ -11,7 +11,6 @@ const MoreHorizontalFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="MoreHorizontalFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="MoreVerticalFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Network"
>
@@ -32,8 +31,7 @@ Network.propTypes = {
Network.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Network;
diff --git a/src/icons/newspaper.js b/src/icons/newspaper.js
index 8a0c4ec8..60feae55 100644
--- a/src/icons/newspaper.js
+++ b/src/icons/newspaper.js
@@ -15,7 +15,6 @@ const Newspaper = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Newspaper"
>
@@ -33,8 +32,7 @@ Newspaper.propTypes = {
Newspaper.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Newspaper;
diff --git a/src/icons/nextjs-fill.js b/src/icons/nextjs-fill.js
new file mode 100644
index 00000000..e4e3854d
--- /dev/null
+++ b/src/icons/nextjs-fill.js
@@ -0,0 +1,37 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const NextjsFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+NextjsFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+NextjsFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default NextjsFill;
diff --git a/src/icons/node-fill.js b/src/icons/node-fill.js
new file mode 100644
index 00000000..19855f2f
--- /dev/null
+++ b/src/icons/node-fill.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const NodeFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+ );
+};
+
+NodeFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+NodeFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default NodeFill;
diff --git a/src/icons/normal-screen.js b/src/icons/normal-screen.js
index 91e5ce0d..7c49bc0d 100644
--- a/src/icons/normal-screen.js
+++ b/src/icons/normal-screen.js
@@ -15,7 +15,6 @@ const NormalScreen = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="NormalScreen"
>
@@ -32,8 +31,7 @@ NormalScreen.propTypes = {
NormalScreen.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default NormalScreen;
diff --git a/src/icons/npm-fill.js b/src/icons/npm-fill.js
new file mode 100644
index 00000000..74df0aac
--- /dev/null
+++ b/src/icons/npm-fill.js
@@ -0,0 +1,34 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const NpmFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+ );
+};
+
+NpmFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+NpmFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default NpmFill;
diff --git a/src/icons/octagon-fill.js b/src/icons/octagon-fill.js
index b3e8a5f9..856d6cd1 100644
--- a/src/icons/octagon-fill.js
+++ b/src/icons/octagon-fill.js
@@ -11,7 +11,6 @@ const OctagonFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="OctagonFill"
>
@@ -25,8 +24,7 @@ OctagonFill.propTypes = {
OctagonFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default OctagonFill;
diff --git a/src/icons/octagon.js b/src/icons/octagon.js
index 8888f7d9..0ae2adc5 100644
--- a/src/icons/octagon.js
+++ b/src/icons/octagon.js
@@ -15,7 +15,6 @@ const Octagon = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Octagon"
>
@@ -29,8 +28,7 @@ Octagon.propTypes = {
Octagon.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Octagon;
diff --git a/src/icons/octocat-fill.js b/src/icons/octocat-fill.js
index 6af96b1f..04b5c8b4 100644
--- a/src/icons/octocat-fill.js
+++ b/src/icons/octocat-fill.js
@@ -11,7 +11,6 @@ const OctocatFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="OctocatFill"
>
@@ -25,8 +24,7 @@ OctocatFill.propTypes = {
OctocatFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default OctocatFill;
diff --git a/src/icons/open-envelope.js b/src/icons/open-envelope.js
index 0a87d59c..d022c78b 100644
--- a/src/icons/open-envelope.js
+++ b/src/icons/open-envelope.js
@@ -15,7 +15,6 @@ const OpenEnvelope = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="OpenEnvelope"
>
@@ -30,8 +29,7 @@ OpenEnvelope.propTypes = {
OpenEnvelope.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default OpenEnvelope;
diff --git a/src/icons/oval.js b/src/icons/oval.js
index 7ba74745..9827de34 100644
--- a/src/icons/oval.js
+++ b/src/icons/oval.js
@@ -15,7 +15,6 @@ const Oval = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Oval"
>
@@ -29,8 +28,7 @@ Oval.propTypes = {
Oval.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Oval;
diff --git a/src/icons/paper.js b/src/icons/paper.js
index 63bc5d8f..d4314653 100644
--- a/src/icons/paper.js
+++ b/src/icons/paper.js
@@ -15,7 +15,6 @@ const Paper = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Paper"
>
@@ -30,8 +29,7 @@ Paper.propTypes = {
Paper.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Paper;
diff --git a/src/icons/parallelogram.js b/src/icons/parallelogram.js
index 2d0b1e94..ba03afaa 100644
--- a/src/icons/parallelogram.js
+++ b/src/icons/parallelogram.js
@@ -15,7 +15,6 @@ const Parallelogram = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Parallelogram"
>
@@ -29,8 +28,7 @@ Parallelogram.propTypes = {
Parallelogram.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Parallelogram;
diff --git a/src/icons/pause.js b/src/icons/pause.js
index c01f3314..7f39f4df 100644
--- a/src/icons/pause.js
+++ b/src/icons/pause.js
@@ -15,7 +15,6 @@ const Pause = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Pause"
>
@@ -29,8 +28,7 @@ Pause.propTypes = {
Pause.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Pause;
diff --git a/src/icons/pencil.js b/src/icons/pencil.js
index 7fc55806..f19adc1f 100644
--- a/src/icons/pencil.js
+++ b/src/icons/pencil.js
@@ -15,7 +15,6 @@ const Pencil = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Pencil"
>
@@ -30,8 +29,7 @@ Pencil.propTypes = {
Pencil.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Pencil;
diff --git a/src/icons/pentagon-fill.js b/src/icons/pentagon-fill.js
index b82c6c2e..ba0b97a0 100644
--- a/src/icons/pentagon-fill.js
+++ b/src/icons/pentagon-fill.js
@@ -11,7 +11,6 @@ const PentagonFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="PentagonFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Pentagon"
>
@@ -29,8 +28,7 @@ Pentagon.propTypes = {
Pentagon.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Pentagon;
diff --git a/src/icons/people-group.js b/src/icons/people-group.js
index 4336bf75..c7ce52a5 100644
--- a/src/icons/people-group.js
+++ b/src/icons/people-group.js
@@ -15,7 +15,6 @@ const PeopleGroup = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="PeopleGroup"
>
@@ -34,8 +33,7 @@ PeopleGroup.propTypes = {
PeopleGroup.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default PeopleGroup;
diff --git a/src/icons/people-multiple.js b/src/icons/people-multiple.js
index 7ef613a8..6d902d70 100644
--- a/src/icons/people-multiple.js
+++ b/src/icons/people-multiple.js
@@ -15,7 +15,6 @@ const PeopleMultiple = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="PeopleMultiple"
>
@@ -32,8 +31,7 @@ PeopleMultiple.propTypes = {
PeopleMultiple.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default PeopleMultiple;
diff --git a/src/icons/person-add.js b/src/icons/person-add.js
index 6ba0b13e..56f8f867 100644
--- a/src/icons/person-add.js
+++ b/src/icons/person-add.js
@@ -15,7 +15,6 @@ const PersonAdd = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="PersonAdd"
>
@@ -32,8 +31,7 @@ PersonAdd.propTypes = {
PersonAdd.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default PersonAdd;
diff --git a/src/icons/person-check.js b/src/icons/person-check.js
index 373cdfe6..a95530d7 100644
--- a/src/icons/person-check.js
+++ b/src/icons/person-check.js
@@ -15,7 +15,6 @@ const PersonCheck = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="PersonCheck"
>
@@ -31,8 +30,7 @@ PersonCheck.propTypes = {
PersonCheck.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default PersonCheck;
diff --git a/src/icons/person-cross.js b/src/icons/person-cross.js
index b328f678..1b6c33eb 100644
--- a/src/icons/person-cross.js
+++ b/src/icons/person-cross.js
@@ -15,7 +15,6 @@ const PersonCross = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="PersonCross"
>
@@ -31,8 +30,7 @@ PersonCross.propTypes = {
PersonCross.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default PersonCross;
diff --git a/src/icons/person.js b/src/icons/person.js
index 4a8fb5ff..9d592e36 100644
--- a/src/icons/person.js
+++ b/src/icons/person.js
@@ -15,7 +15,6 @@ const Person = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Person"
>
@@ -30,8 +29,7 @@ Person.propTypes = {
Person.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Person;
diff --git a/src/icons/phone.js b/src/icons/phone.js
index dd54d18b..77c272de 100644
--- a/src/icons/phone.js
+++ b/src/icons/phone.js
@@ -15,7 +15,6 @@ const Phone = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Phone"
>
@@ -29,8 +28,7 @@ Phone.propTypes = {
Phone.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Phone;
diff --git a/src/icons/php-fill.js b/src/icons/php-fill.js
new file mode 100644
index 00000000..dbf952c8
--- /dev/null
+++ b/src/icons/php-fill.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const PhpFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+ );
+};
+
+PhpFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+PhpFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default PhpFill;
diff --git a/src/icons/pin.js b/src/icons/pin.js
index 5b190540..ae5576b7 100644
--- a/src/icons/pin.js
+++ b/src/icons/pin.js
@@ -15,7 +15,6 @@ const Pin = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Pin"
>
@@ -29,8 +28,7 @@ Pin.propTypes = {
Pin.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Pin;
diff --git a/src/icons/pinterest-fill.js b/src/icons/pinterest-fill.js
index 712421f5..cd20c4d0 100644
--- a/src/icons/pinterest-fill.js
+++ b/src/icons/pinterest-fill.js
@@ -11,7 +11,6 @@ const PinterestFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="PinterestFill"
>
@@ -25,8 +24,7 @@ PinterestFill.propTypes = {
PinterestFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default PinterestFill;
diff --git a/src/icons/plane-fill.js b/src/icons/plane-fill.js
index d30411ee..a9da5145 100644
--- a/src/icons/plane-fill.js
+++ b/src/icons/plane-fill.js
@@ -11,7 +11,6 @@ const PlaneFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="PlaneFill"
>
@@ -25,8 +24,7 @@ PlaneFill.propTypes = {
PlaneFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default PlaneFill;
diff --git a/src/icons/plane.js b/src/icons/plane.js
index 0a992a8a..a91b7dff 100644
--- a/src/icons/plane.js
+++ b/src/icons/plane.js
@@ -15,7 +15,6 @@ const Plane = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Plane"
>
@@ -29,8 +28,7 @@ Plane.propTypes = {
Plane.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Plane;
diff --git a/src/icons/planet.js b/src/icons/planet.js
index a98da4fb..e6bf1f07 100644
--- a/src/icons/planet.js
+++ b/src/icons/planet.js
@@ -15,7 +15,6 @@ const Planet = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Planet"
>
@@ -30,8 +29,7 @@ Planet.propTypes = {
Planet.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Planet;
diff --git a/src/icons/plant.js b/src/icons/plant.js
index c5ff9da4..5ce5606d 100644
--- a/src/icons/plant.js
+++ b/src/icons/plant.js
@@ -15,7 +15,6 @@ const Plant = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Plant"
>
@@ -32,8 +31,7 @@ Plant.propTypes = {
Plant.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Plant;
diff --git a/src/icons/play.js b/src/icons/play.js
index 10d80914..e3bcb35f 100644
--- a/src/icons/play.js
+++ b/src/icons/play.js
@@ -15,7 +15,6 @@ const Play = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Play"
>
@@ -31,8 +30,7 @@ Play.propTypes = {
Play.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Play;
diff --git a/src/icons/plus.js b/src/icons/plus.js
index 699aead4..14ca263c 100644
--- a/src/icons/plus.js
+++ b/src/icons/plus.js
@@ -15,7 +15,6 @@ const Plus = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Plus"
>
@@ -29,8 +28,7 @@ Plus.propTypes = {
Plus.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Plus;
diff --git a/src/icons/pointer-down-fill.js b/src/icons/pointer-down-fill.js
index 9d11a011..e123ccc6 100644
--- a/src/icons/pointer-down-fill.js
+++ b/src/icons/pointer-down-fill.js
@@ -11,7 +11,6 @@ const PointerDownFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="PointerDownFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="PointerLeftFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="PointerRightFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="PointerUpFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="PointingUp"
>
@@ -34,8 +33,7 @@ PointingUp.propTypes = {
PointingUp.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default PointingUp;
diff --git a/src/icons/python-fill.js b/src/icons/python-fill.js
new file mode 100644
index 00000000..ca98e591
--- /dev/null
+++ b/src/icons/python-fill.js
@@ -0,0 +1,38 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const PythonFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+PythonFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+PythonFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default PythonFill;
diff --git a/src/icons/question-fill.js b/src/icons/question-fill.js
index a03281d3..85a207a3 100644
--- a/src/icons/question-fill.js
+++ b/src/icons/question-fill.js
@@ -11,7 +11,6 @@ const QuestionFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="QuestionFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Question"
>
@@ -30,8 +29,7 @@ Question.propTypes = {
Question.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Question;
diff --git a/src/icons/radish.js b/src/icons/radish.js
index e1fc3241..79955fd3 100644
--- a/src/icons/radish.js
+++ b/src/icons/radish.js
@@ -15,7 +15,6 @@ const Radish = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Radish"
>
@@ -32,8 +31,7 @@ Radish.propTypes = {
Radish.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Radish;
diff --git a/src/icons/react-fill.js b/src/icons/react-fill.js
new file mode 100644
index 00000000..f519366b
--- /dev/null
+++ b/src/icons/react-fill.js
@@ -0,0 +1,38 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const ReactFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+ReactFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+ReactFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default ReactFill;
diff --git a/src/icons/reddit-fill.js b/src/icons/reddit-fill.js
index 8ba3edc7..4d983114 100644
--- a/src/icons/reddit-fill.js
+++ b/src/icons/reddit-fill.js
@@ -11,7 +11,6 @@ const RedditFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="RedditFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Reduce"
>
@@ -29,8 +28,7 @@ Reduce.propTypes = {
Reduce.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Reduce;
diff --git a/src/icons/redux-fill.js b/src/icons/redux-fill.js
new file mode 100644
index 00000000..1e0d6c74
--- /dev/null
+++ b/src/icons/redux-fill.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const ReduxFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+ );
+};
+
+ReduxFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+ReduxFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default ReduxFill;
diff --git a/src/icons/ribbon.js b/src/icons/ribbon.js
index 9ee93d66..c78c1871 100644
--- a/src/icons/ribbon.js
+++ b/src/icons/ribbon.js
@@ -15,7 +15,6 @@ const Ribbon = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Ribbon"
>
@@ -29,8 +28,7 @@ Ribbon.propTypes = {
Ribbon.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Ribbon;
diff --git a/src/icons/rock-on.js b/src/icons/rock-on.js
index a8dc91cd..db6f0f5c 100644
--- a/src/icons/rock-on.js
+++ b/src/icons/rock-on.js
@@ -15,7 +15,6 @@ const RockOn = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="RockOn"
>
@@ -34,8 +33,7 @@ RockOn.propTypes = {
RockOn.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default RockOn;
diff --git a/src/icons/rss.js b/src/icons/rss.js
index 81abe5aa..a8532627 100644
--- a/src/icons/rss.js
+++ b/src/icons/rss.js
@@ -15,7 +15,6 @@ const Rss = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Rss"
>
@@ -31,8 +30,7 @@ Rss.propTypes = {
Rss.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Rss;
diff --git a/src/icons/sass-fill.js b/src/icons/sass-fill.js
new file mode 100644
index 00000000..a18fdf91
--- /dev/null
+++ b/src/icons/sass-fill.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const SassFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+ );
+};
+
+SassFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+SassFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default SassFill;
diff --git a/src/icons/schedule.js b/src/icons/schedule.js
index 01e5154c..2a6aa579 100644
--- a/src/icons/schedule.js
+++ b/src/icons/schedule.js
@@ -15,7 +15,6 @@ const Schedule = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Schedule"
>
@@ -34,8 +33,7 @@ Schedule.propTypes = {
Schedule.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Schedule;
diff --git a/src/icons/scissor.js b/src/icons/scissor.js
index a76364d5..ff83e6d6 100644
--- a/src/icons/scissor.js
+++ b/src/icons/scissor.js
@@ -15,7 +15,6 @@ const Scissor = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Scissor"
>
@@ -29,8 +28,7 @@ Scissor.propTypes = {
Scissor.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Scissor;
diff --git a/src/icons/search.js b/src/icons/search.js
index a2da7c8a..212ba2b1 100644
--- a/src/icons/search.js
+++ b/src/icons/search.js
@@ -15,7 +15,6 @@ const Search = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Search"
>
@@ -29,8 +28,7 @@ Search.propTypes = {
Search.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Search;
diff --git a/src/icons/send.js b/src/icons/send.js
index dc3a170b..ed8863ba 100644
--- a/src/icons/send.js
+++ b/src/icons/send.js
@@ -15,7 +15,6 @@ const Send = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Send"
>
@@ -29,8 +28,7 @@ Send.propTypes = {
Send.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Send;
diff --git a/src/icons/share-box.js b/src/icons/share-box.js
index 4810a067..570c48bf 100644
--- a/src/icons/share-box.js
+++ b/src/icons/share-box.js
@@ -15,7 +15,6 @@ const ShareBox = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ShareBox"
>
@@ -30,8 +29,7 @@ ShareBox.propTypes = {
ShareBox.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ShareBox;
diff --git a/src/icons/shield.js b/src/icons/shield.js
index ea5fb54e..e01a17e0 100644
--- a/src/icons/shield.js
+++ b/src/icons/shield.js
@@ -15,7 +15,6 @@ const Shield = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Shield"
>
@@ -29,8 +28,7 @@ Shield.propTypes = {
Shield.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Shield;
diff --git a/src/icons/shipping-box-v1.js b/src/icons/shipping-box-v1.js
index 38a5e68a..d99cb55e 100644
--- a/src/icons/shipping-box-v1.js
+++ b/src/icons/shipping-box-v1.js
@@ -15,7 +15,6 @@ const ShippingBoxV1 = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ShippingBoxV1"
>
@@ -32,8 +31,7 @@ ShippingBoxV1.propTypes = {
ShippingBoxV1.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ShippingBoxV1;
diff --git a/src/icons/shipping-box-v2.js b/src/icons/shipping-box-v2.js
index 27814742..6c20fd82 100644
--- a/src/icons/shipping-box-v2.js
+++ b/src/icons/shipping-box-v2.js
@@ -15,7 +15,6 @@ const ShippingBoxV2 = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ShippingBoxV2"
>
@@ -32,8 +31,7 @@ ShippingBoxV2.propTypes = {
ShippingBoxV2.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ShippingBoxV2;
diff --git a/src/icons/shopping-bag.js b/src/icons/shopping-bag.js
index a60332b9..d2664487 100644
--- a/src/icons/shopping-bag.js
+++ b/src/icons/shopping-bag.js
@@ -15,7 +15,6 @@ const ShoppingBag = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ShoppingBag"
>
@@ -30,8 +29,7 @@ ShoppingBag.propTypes = {
ShoppingBag.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ShoppingBag;
diff --git a/src/icons/sign-out.js b/src/icons/sign-out.js
index d36827ba..c6fddc91 100644
--- a/src/icons/sign-out.js
+++ b/src/icons/sign-out.js
@@ -15,7 +15,6 @@ const SignOut = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="SignOut"
>
@@ -30,8 +29,7 @@ SignOut.propTypes = {
SignOut.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default SignOut;
diff --git a/src/icons/slack-fill.js b/src/icons/slack-fill.js
index 52b6a07a..f8ad73cc 100644
--- a/src/icons/slack-fill.js
+++ b/src/icons/slack-fill.js
@@ -11,7 +11,6 @@ const SlackFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="SlackFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="SnapchatFill"
>
@@ -25,8 +24,7 @@ SnapchatFill.propTypes = {
SnapchatFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default SnapchatFill;
diff --git a/src/icons/sound-down.js b/src/icons/sound-down.js
index a32e047e..ade97fac 100644
--- a/src/icons/sound-down.js
+++ b/src/icons/sound-down.js
@@ -15,7 +15,6 @@ const SoundDown = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="SoundDown"
>
@@ -30,8 +29,7 @@ SoundDown.propTypes = {
SoundDown.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default SoundDown;
diff --git a/src/icons/sound-off.js b/src/icons/sound-off.js
index 8a1642c9..8f481f00 100644
--- a/src/icons/sound-off.js
+++ b/src/icons/sound-off.js
@@ -15,7 +15,6 @@ const SoundOff = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="SoundOff"
>
@@ -30,8 +29,7 @@ SoundOff.propTypes = {
SoundOff.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default SoundOff;
diff --git a/src/icons/sound-on.js b/src/icons/sound-on.js
index dc905e31..0f9abab0 100644
--- a/src/icons/sound-on.js
+++ b/src/icons/sound-on.js
@@ -15,7 +15,6 @@ const SoundOn = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="SoundOn"
>
@@ -31,8 +30,7 @@ SoundOn.propTypes = {
SoundOn.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default SoundOn;
diff --git a/src/icons/sound-up.js b/src/icons/sound-up.js
index 88a395cd..ff1c9e7f 100644
--- a/src/icons/sound-up.js
+++ b/src/icons/sound-up.js
@@ -15,7 +15,6 @@ const SoundUp = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="SoundUp"
>
@@ -30,8 +29,7 @@ SoundUp.propTypes = {
SoundUp.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default SoundUp;
diff --git a/src/icons/soundcloud-fill.js b/src/icons/soundcloud-fill.js
index 721f1bdf..4791c4ac 100644
--- a/src/icons/soundcloud-fill.js
+++ b/src/icons/soundcloud-fill.js
@@ -11,7 +11,6 @@ const SoundcloudFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="SoundcloudFill"
>
@@ -38,8 +37,7 @@ SoundcloudFill.propTypes = {
SoundcloudFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default SoundcloudFill;
diff --git a/src/icons/spotify-fill.js b/src/icons/spotify-fill.js
index 69c428ef..c0310f56 100644
--- a/src/icons/spotify-fill.js
+++ b/src/icons/spotify-fill.js
@@ -11,7 +11,6 @@ const SpotifyFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="SpotifyFill"
>
@@ -25,8 +24,7 @@ SpotifyFill.propTypes = {
SpotifyFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default SpotifyFill;
diff --git a/src/icons/square-fill.js b/src/icons/square-fill.js
index e31a765f..4c7a12a3 100644
--- a/src/icons/square-fill.js
+++ b/src/icons/square-fill.js
@@ -11,7 +11,6 @@ const SquareFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="SquareFill"
>
@@ -25,8 +24,7 @@ SquareFill.propTypes = {
SquareFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default SquareFill;
diff --git a/src/icons/square.js b/src/icons/square.js
index cb197b40..7a4db482 100644
--- a/src/icons/square.js
+++ b/src/icons/square.js
@@ -15,7 +15,6 @@ const Square = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Square"
>
@@ -29,8 +28,7 @@ Square.propTypes = {
Square.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Square;
diff --git a/src/icons/stack-overflow-fill.js b/src/icons/stack-overflow-fill.js
index b0f8da71..c4093804 100644
--- a/src/icons/stack-overflow-fill.js
+++ b/src/icons/stack-overflow-fill.js
@@ -11,7 +11,6 @@ const StackOverflowFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="StackOverflowFill"
>
@@ -26,8 +25,7 @@ StackOverflowFill.propTypes = {
StackOverflowFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default StackOverflowFill;
diff --git a/src/icons/star.js b/src/icons/star.js
index 1ac75b04..ffbfbaa1 100644
--- a/src/icons/star.js
+++ b/src/icons/star.js
@@ -15,7 +15,6 @@ const Star = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Star"
>
@@ -29,8 +28,7 @@ Star.propTypes = {
Star.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Star;
diff --git a/src/icons/stop-fill.js b/src/icons/stop-fill.js
index 2506b708..d67d7cc2 100644
--- a/src/icons/stop-fill.js
+++ b/src/icons/stop-fill.js
@@ -11,7 +11,6 @@ const StopFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="StopFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Stop"
>
@@ -30,8 +29,7 @@ Stop.propTypes = {
Stop.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Stop;
diff --git a/src/icons/sun-fill.js b/src/icons/sun-fill.js
index 1a286da4..cbb78e08 100644
--- a/src/icons/sun-fill.js
+++ b/src/icons/sun-fill.js
@@ -11,7 +11,6 @@ const SunFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="SunFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Sun"
>
@@ -30,8 +29,7 @@ Sun.propTypes = {
Sun.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Sun;
diff --git a/src/icons/tablet-device.js b/src/icons/tablet-device.js
index bf340bfa..16bde4a9 100644
--- a/src/icons/tablet-device.js
+++ b/src/icons/tablet-device.js
@@ -15,7 +15,6 @@ const TabletDevice = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TabletDevice"
>
@@ -30,8 +29,7 @@ TabletDevice.propTypes = {
TabletDevice.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TabletDevice;
diff --git a/src/icons/tag.js b/src/icons/tag.js
index 3c9e92fa..b5cd98d6 100644
--- a/src/icons/tag.js
+++ b/src/icons/tag.js
@@ -15,7 +15,6 @@ const Tag = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Tag"
>
@@ -30,8 +29,7 @@ Tag.propTypes = {
Tag.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Tag;
diff --git a/src/icons/telegram-fill.js b/src/icons/telegram-fill.js
index ef9ee695..03ea4033 100644
--- a/src/icons/telegram-fill.js
+++ b/src/icons/telegram-fill.js
@@ -11,7 +11,6 @@ const TelegramFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="TelegramFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Telescope"
>
@@ -32,8 +31,7 @@ Telescope.propTypes = {
Telescope.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Telescope;
diff --git a/src/icons/tetragon-fill.js b/src/icons/tetragon-fill.js
index 497baa04..dba48161 100644
--- a/src/icons/tetragon-fill.js
+++ b/src/icons/tetragon-fill.js
@@ -11,7 +11,6 @@ const TetragonFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="TetragonFill"
>
@@ -25,8 +24,7 @@ TetragonFill.propTypes = {
TetragonFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TetragonFill;
diff --git a/src/icons/tetragon.js b/src/icons/tetragon.js
index ad79025a..d68171ff 100644
--- a/src/icons/tetragon.js
+++ b/src/icons/tetragon.js
@@ -15,7 +15,6 @@ const Tetragon = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Tetragon"
>
@@ -29,8 +28,7 @@ Tetragon.propTypes = {
Tetragon.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Tetragon;
diff --git a/src/icons/text-align-center.js b/src/icons/text-align-center.js
index d19af8cf..ccf0804e 100644
--- a/src/icons/text-align-center.js
+++ b/src/icons/text-align-center.js
@@ -15,7 +15,6 @@ const TextAlignCenter = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TextAlignCenter"
>
@@ -29,8 +28,7 @@ TextAlignCenter.propTypes = {
TextAlignCenter.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TextAlignCenter;
diff --git a/src/icons/text-align-justified.js b/src/icons/text-align-justified.js
index 7aaa431f..3019b707 100644
--- a/src/icons/text-align-justified.js
+++ b/src/icons/text-align-justified.js
@@ -15,7 +15,6 @@ const TextAlignJustified = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TextAlignJustified"
>
@@ -29,8 +28,7 @@ TextAlignJustified.propTypes = {
TextAlignJustified.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TextAlignJustified;
diff --git a/src/icons/text-align-left.js b/src/icons/text-align-left.js
index 195430e5..913bb93f 100644
--- a/src/icons/text-align-left.js
+++ b/src/icons/text-align-left.js
@@ -15,7 +15,6 @@ const TextAlignLeft = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TextAlignLeft"
>
@@ -29,8 +28,7 @@ TextAlignLeft.propTypes = {
TextAlignLeft.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TextAlignLeft;
diff --git a/src/icons/text-align-right.js b/src/icons/text-align-right.js
index a69ffd88..167286b6 100644
--- a/src/icons/text-align-right.js
+++ b/src/icons/text-align-right.js
@@ -15,7 +15,6 @@ const TextAlignRight = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TextAlignRight"
>
@@ -29,8 +28,7 @@ TextAlignRight.propTypes = {
TextAlignRight.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TextAlignRight;
diff --git a/src/icons/three-line-horizontal.js b/src/icons/three-line-horizontal.js
index 22f3e544..84ace5ae 100644
--- a/src/icons/three-line-horizontal.js
+++ b/src/icons/three-line-horizontal.js
@@ -15,7 +15,6 @@ const ThreeLineHorizontal = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ThreeLineHorizontal"
>
@@ -29,8 +28,7 @@ ThreeLineHorizontal.propTypes = {
ThreeLineHorizontal.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ThreeLineHorizontal;
diff --git a/src/icons/three-line-vertical.js b/src/icons/three-line-vertical.js
index af13c0b0..9f41cc1c 100644
--- a/src/icons/three-line-vertical.js
+++ b/src/icons/three-line-vertical.js
@@ -15,7 +15,6 @@ const ThreeLineVertical = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ThreeLineVertical"
>
@@ -29,8 +28,7 @@ ThreeLineVertical.propTypes = {
ThreeLineVertical.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ThreeLineVertical;
diff --git a/src/icons/thumbs-down.js b/src/icons/thumbs-down.js
index f38fed5e..cb7ca4cc 100644
--- a/src/icons/thumbs-down.js
+++ b/src/icons/thumbs-down.js
@@ -15,7 +15,6 @@ const ThumbsDown = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ThumbsDown"
>
@@ -30,8 +29,7 @@ ThumbsDown.propTypes = {
ThumbsDown.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ThumbsDown;
diff --git a/src/icons/thumbs-up.js b/src/icons/thumbs-up.js
index cc15f78b..4ce12926 100644
--- a/src/icons/thumbs-up.js
+++ b/src/icons/thumbs-up.js
@@ -15,7 +15,6 @@ const ThumbsUp = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ThumbsUp"
>
@@ -30,8 +29,7 @@ ThumbsUp.propTypes = {
ThumbsUp.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ThumbsUp;
diff --git a/src/icons/thunder.js b/src/icons/thunder.js
index c4f6e4a9..69d0c83a 100644
--- a/src/icons/thunder.js
+++ b/src/icons/thunder.js
@@ -15,7 +15,6 @@ const Thunder = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Thunder"
>
@@ -29,8 +28,7 @@ Thunder.propTypes = {
Thunder.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Thunder;
diff --git a/src/icons/ticket.js b/src/icons/ticket.js
index 3ae45a6c..524e2ab1 100644
--- a/src/icons/ticket.js
+++ b/src/icons/ticket.js
@@ -15,7 +15,6 @@ const Ticket = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Ticket"
>
@@ -29,8 +28,7 @@ Ticket.propTypes = {
Ticket.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Ticket;
diff --git a/src/icons/toggle-off-fill.js b/src/icons/toggle-off-fill.js
index b29d780b..232eeed5 100644
--- a/src/icons/toggle-off-fill.js
+++ b/src/icons/toggle-off-fill.js
@@ -11,7 +11,6 @@ const ToggleOffFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="ToggleOffFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ToggleOff"
>
@@ -30,8 +29,7 @@ ToggleOff.propTypes = {
ToggleOff.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ToggleOff;
diff --git a/src/icons/toggle-on-fill.js b/src/icons/toggle-on-fill.js
index c6bbead6..a072e8e4 100644
--- a/src/icons/toggle-on-fill.js
+++ b/src/icons/toggle-on-fill.js
@@ -11,7 +11,6 @@ const ToggleOnFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="ToggleOnFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ToggleOn"
>
@@ -30,8 +29,7 @@ ToggleOn.propTypes = {
ToggleOn.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ToggleOn;
diff --git a/src/icons/togo-cup.js b/src/icons/togo-cup.js
index 72ced55a..c9cdf7ba 100644
--- a/src/icons/togo-cup.js
+++ b/src/icons/togo-cup.js
@@ -15,7 +15,6 @@ const TogoCup = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TogoCup"
>
@@ -31,8 +30,7 @@ TogoCup.propTypes = {
TogoCup.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TogoCup;
diff --git a/src/icons/trash-bin.js b/src/icons/trash-bin.js
index f83f7133..d478e5dd 100644
--- a/src/icons/trash-bin.js
+++ b/src/icons/trash-bin.js
@@ -15,7 +15,6 @@ const TrashBin = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TrashBin"
>
@@ -30,8 +29,7 @@ TrashBin.propTypes = {
TrashBin.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TrashBin;
diff --git a/src/icons/trash-can.js b/src/icons/trash-can.js
index 526c517f..6271103e 100644
--- a/src/icons/trash-can.js
+++ b/src/icons/trash-can.js
@@ -15,7 +15,6 @@ const TrashCan = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TrashCan"
>
@@ -33,8 +32,7 @@ TrashCan.propTypes = {
TrashCan.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TrashCan;
diff --git a/src/icons/triangle-alert-fill.js b/src/icons/triangle-alert-fill.js
index 67cea23c..854d4929 100644
--- a/src/icons/triangle-alert-fill.js
+++ b/src/icons/triangle-alert-fill.js
@@ -11,7 +11,6 @@ const TriangleAlertFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="TriangleAlertFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TriangleAlert"
>
@@ -31,8 +30,7 @@ TriangleAlert.propTypes = {
TriangleAlert.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TriangleAlert;
diff --git a/src/icons/triangle-down.js b/src/icons/triangle-down.js
index 2ca7a9c8..0266e4a3 100644
--- a/src/icons/triangle-down.js
+++ b/src/icons/triangle-down.js
@@ -15,7 +15,6 @@ const TriangleDown = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TriangleDown"
>
@@ -29,8 +28,7 @@ TriangleDown.propTypes = {
TriangleDown.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TriangleDown;
diff --git a/src/icons/triangle-fill.js b/src/icons/triangle-fill.js
index d6a0d92f..7d930eff 100644
--- a/src/icons/triangle-fill.js
+++ b/src/icons/triangle-fill.js
@@ -11,7 +11,6 @@ const TriangleFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="TriangleFill"
>
@@ -25,8 +24,7 @@ TriangleFill.propTypes = {
TriangleFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TriangleFill;
diff --git a/src/icons/triangle-left.js b/src/icons/triangle-left.js
index 87915093..de4962c6 100644
--- a/src/icons/triangle-left.js
+++ b/src/icons/triangle-left.js
@@ -15,7 +15,6 @@ const TriangleLeft = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TriangleLeft"
>
@@ -29,8 +28,7 @@ TriangleLeft.propTypes = {
TriangleLeft.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TriangleLeft;
diff --git a/src/icons/triangle-right.js b/src/icons/triangle-right.js
index 4d6c8336..cbe96156 100644
--- a/src/icons/triangle-right.js
+++ b/src/icons/triangle-right.js
@@ -15,7 +15,6 @@ const TriangleRight = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TriangleRight"
>
@@ -29,8 +28,7 @@ TriangleRight.propTypes = {
TriangleRight.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TriangleRight;
diff --git a/src/icons/triangle-up.js b/src/icons/triangle-up.js
index 9771a51a..0ae27b37 100644
--- a/src/icons/triangle-up.js
+++ b/src/icons/triangle-up.js
@@ -15,7 +15,6 @@ const TriangleUp = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TriangleUp"
>
@@ -29,8 +28,7 @@ TriangleUp.propTypes = {
TriangleUp.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TriangleUp;
diff --git a/src/icons/triangle.js b/src/icons/triangle.js
index 74df8a9b..c8e3674e 100644
--- a/src/icons/triangle.js
+++ b/src/icons/triangle.js
@@ -15,7 +15,6 @@ const Triangle = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Triangle"
>
@@ -29,8 +28,7 @@ Triangle.propTypes = {
Triangle.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Triangle;
diff --git a/src/icons/trophy.js b/src/icons/trophy.js
index 8dd367f3..48e7290f 100644
--- a/src/icons/trophy.js
+++ b/src/icons/trophy.js
@@ -15,7 +15,6 @@ const Trophy = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Trophy"
>
@@ -32,8 +31,7 @@ Trophy.propTypes = {
Trophy.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Trophy;
diff --git a/src/icons/tumblr-fill.js b/src/icons/tumblr-fill.js
index d3ec1c47..9221b704 100644
--- a/src/icons/tumblr-fill.js
+++ b/src/icons/tumblr-fill.js
@@ -11,7 +11,6 @@ const TumblrFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="TumblrFill"
>
@@ -32,8 +31,7 @@ TumblrFill.propTypes = {
TumblrFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TumblrFill;
diff --git a/src/icons/twitch-fill.js b/src/icons/twitch-fill.js
index 7c2bf100..38cd1a80 100644
--- a/src/icons/twitch-fill.js
+++ b/src/icons/twitch-fill.js
@@ -11,7 +11,6 @@ const TwitchFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="TwitchFill"
>
{
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="TwitterFill"
>
@@ -25,8 +24,7 @@ TwitterFill.propTypes = {
TwitterFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TwitterFill;
diff --git a/src/icons/two-line-horizontal.js b/src/icons/two-line-horizontal.js
index 9799a78a..46476141 100644
--- a/src/icons/two-line-horizontal.js
+++ b/src/icons/two-line-horizontal.js
@@ -15,7 +15,6 @@ const TwoLineHorizontal = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TwoLineHorizontal"
>
@@ -29,8 +28,7 @@ TwoLineHorizontal.propTypes = {
TwoLineHorizontal.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TwoLineHorizontal;
diff --git a/src/icons/two-line-vertical.js b/src/icons/two-line-vertical.js
index fdcef34f..21ecd5e2 100644
--- a/src/icons/two-line-vertical.js
+++ b/src/icons/two-line-vertical.js
@@ -15,7 +15,6 @@ const TwoLineVertical = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="TwoLineVertical"
>
@@ -29,8 +28,7 @@ TwoLineVertical.propTypes = {
TwoLineVertical.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default TwoLineVertical;
diff --git a/src/icons/umbrella.js b/src/icons/umbrella.js
index ece9870f..4f389bd4 100644
--- a/src/icons/umbrella.js
+++ b/src/icons/umbrella.js
@@ -15,7 +15,6 @@ const Umbrella = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Umbrella"
>
@@ -29,8 +28,7 @@ Umbrella.propTypes = {
Umbrella.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Umbrella;
diff --git a/src/icons/utensils.js b/src/icons/utensils.js
index cc400e1a..80904426 100644
--- a/src/icons/utensils.js
+++ b/src/icons/utensils.js
@@ -15,7 +15,6 @@ const Utensils = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Utensils"
>
@@ -34,8 +33,7 @@ Utensils.propTypes = {
Utensils.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Utensils;
diff --git a/src/icons/vercel-fill.js b/src/icons/vercel-fill.js
new file mode 100644
index 00000000..758c8de7
--- /dev/null
+++ b/src/icons/vercel-fill.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const VercelFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+ );
+};
+
+VercelFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+VercelFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default VercelFill;
diff --git a/src/icons/victory-hand.js b/src/icons/victory-hand.js
index 10f4a888..a10c3ea3 100644
--- a/src/icons/victory-hand.js
+++ b/src/icons/victory-hand.js
@@ -15,7 +15,6 @@ const VictoryHand = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="VictoryHand"
>
@@ -32,8 +31,7 @@ VictoryHand.propTypes = {
VictoryHand.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default VictoryHand;
diff --git a/src/icons/vimeo-fill.js b/src/icons/vimeo-fill.js
index c05b859d..5b324ca2 100644
--- a/src/icons/vimeo-fill.js
+++ b/src/icons/vimeo-fill.js
@@ -11,7 +11,6 @@ const VimeoFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="VimeoFill"
>
@@ -25,8 +24,7 @@ VimeoFill.propTypes = {
VimeoFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default VimeoFill;
diff --git a/src/icons/vk-fill.js b/src/icons/vk-fill.js
index 1a0846a7..023a4547 100644
--- a/src/icons/vk-fill.js
+++ b/src/icons/vk-fill.js
@@ -11,7 +11,6 @@ const VkFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="VkFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="VrAr"
>
@@ -30,8 +29,7 @@ VrAr.propTypes = {
VrAr.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default VrAr;
diff --git a/src/icons/vscode-fill.js b/src/icons/vscode-fill.js
new file mode 100644
index 00000000..bbd33603
--- /dev/null
+++ b/src/icons/vscode-fill.js
@@ -0,0 +1,33 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const VscodeFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+
+
+ );
+};
+
+VscodeFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+VscodeFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default VscodeFill;
diff --git a/src/icons/vue-fill.js b/src/icons/vue-fill.js
new file mode 100644
index 00000000..55af761b
--- /dev/null
+++ b/src/icons/vue-fill.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const VueFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+ );
+};
+
+VueFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+VueFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default VueFill;
diff --git a/src/icons/wallet.js b/src/icons/wallet.js
index 1fcd6845..d1ef66fd 100644
--- a/src/icons/wallet.js
+++ b/src/icons/wallet.js
@@ -15,7 +15,6 @@ const Wallet = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Wallet"
>
@@ -31,8 +30,7 @@ Wallet.propTypes = {
Wallet.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Wallet;
diff --git a/src/icons/watch-device.js b/src/icons/watch-device.js
index 387f7bfa..23f0245e 100644
--- a/src/icons/watch-device.js
+++ b/src/icons/watch-device.js
@@ -15,7 +15,6 @@ const WatchDevice = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="WatchDevice"
>
@@ -31,8 +30,7 @@ WatchDevice.propTypes = {
WatchDevice.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default WatchDevice;
diff --git a/src/icons/water.js b/src/icons/water.js
index 25ed85d5..1a12b41c 100644
--- a/src/icons/water.js
+++ b/src/icons/water.js
@@ -15,7 +15,6 @@ const Water = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Water"
>
@@ -29,8 +28,7 @@ Water.propTypes = {
Water.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Water;
diff --git a/src/icons/whatsapp-fill.js b/src/icons/whatsapp-fill.js
index 9690be47..dc201b8f 100644
--- a/src/icons/whatsapp-fill.js
+++ b/src/icons/whatsapp-fill.js
@@ -11,7 +11,6 @@ const WhatsappFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="WhatsappFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Width"
>
@@ -29,8 +28,7 @@ Width.propTypes = {
Width.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Width;
diff --git a/src/icons/wifi.js b/src/icons/wifi.js
index 866e2301..f949d2e2 100644
--- a/src/icons/wifi.js
+++ b/src/icons/wifi.js
@@ -15,7 +15,6 @@ const Wifi = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="Wifi"
>
@@ -31,8 +30,7 @@ Wifi.propTypes = {
Wifi.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default Wifi;
diff --git a/src/icons/yarn-fill.js b/src/icons/yarn-fill.js
new file mode 100644
index 00000000..cf1f85ca
--- /dev/null
+++ b/src/icons/yarn-fill.js
@@ -0,0 +1,42 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+const YarnFill = props => {
+ const { color, size, ...otherProps } = props;
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+YarnFill.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+
+YarnFill.defaultProps = {
+ color: 'currentColor',
+ size: '24'
+};
+
+export default YarnFill;
diff --git a/src/icons/youtube-fill.js b/src/icons/youtube-fill.js
index 9880d2f0..42690ef7 100644
--- a/src/icons/youtube-fill.js
+++ b/src/icons/youtube-fill.js
@@ -11,7 +11,6 @@ const YoutubeFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="YoutubeFill"
>
@@ -32,8 +31,7 @@ YoutubeFill.propTypes = {
YoutubeFill.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default YoutubeFill;
diff --git a/src/icons/zoom-fill.js b/src/icons/zoom-fill.js
index 54ba1754..1662dd3e 100644
--- a/src/icons/zoom-fill.js
+++ b/src/icons/zoom-fill.js
@@ -11,7 +11,6 @@ const ZoomFill = props => {
viewBox="0 0 24 24"
fill={color}
{...otherProps}
- id="ZoomFill"
>
{
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ZoomIn"
>
@@ -30,8 +29,7 @@ ZoomIn.propTypes = {
ZoomIn.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ZoomIn;
diff --git a/src/icons/zoom-out.js b/src/icons/zoom-out.js
index 184dbdda..3722b830 100644
--- a/src/icons/zoom-out.js
+++ b/src/icons/zoom-out.js
@@ -15,7 +15,6 @@ const ZoomOut = props => {
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
- id="ZoomOut"
>
@@ -30,8 +29,7 @@ ZoomOut.propTypes = {
ZoomOut.defaultProps = {
color: 'currentColor',
- size: '24',
- display: 'block'
+ size: '24'
};
export default ZoomOut;
diff --git a/src/svg/angular-fill.svg b/src/svg/angular-fill.svg
new file mode 100644
index 00000000..1240c021
--- /dev/null
+++ b/src/svg/angular-fill.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/src/svg/bootstrap-fill.svg b/src/svg/bootstrap-fill.svg
new file mode 100644
index 00000000..f876161e
--- /dev/null
+++ b/src/svg/bootstrap-fill.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/svg/css-fill.svg b/src/svg/css-fill.svg
new file mode 100644
index 00000000..edcc281e
--- /dev/null
+++ b/src/svg/css-fill.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/src/svg/django-fill.svg b/src/svg/django-fill.svg
new file mode 100644
index 00000000..1a65581e
--- /dev/null
+++ b/src/svg/django-fill.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/src/svg/gatsby-fill.svg b/src/svg/gatsby-fill.svg
new file mode 100644
index 00000000..fb6b5a9f
--- /dev/null
+++ b/src/svg/gatsby-fill.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/svg/graphql-fill.svg b/src/svg/graphql-fill.svg
new file mode 100644
index 00000000..50f828ca
--- /dev/null
+++ b/src/svg/graphql-fill.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/svg/html-fill.svg b/src/svg/html-fill.svg
new file mode 100644
index 00000000..851e0bbd
--- /dev/null
+++ b/src/svg/html-fill.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/svg/javascript-fill.svg b/src/svg/javascript-fill.svg
new file mode 100644
index 00000000..64bad40f
--- /dev/null
+++ b/src/svg/javascript-fill.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/svg/jquery-fill.svg b/src/svg/jquery-fill.svg
new file mode 100644
index 00000000..a2d96496
--- /dev/null
+++ b/src/svg/jquery-fill.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/src/svg/nextjs-fill.svg b/src/svg/nextjs-fill.svg
new file mode 100644
index 00000000..55d85b29
--- /dev/null
+++ b/src/svg/nextjs-fill.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/svg/node-fill.svg b/src/svg/node-fill.svg
new file mode 100644
index 00000000..95cc4fad
--- /dev/null
+++ b/src/svg/node-fill.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/svg/npm-fill.svg b/src/svg/npm-fill.svg
new file mode 100644
index 00000000..e7a22a4f
--- /dev/null
+++ b/src/svg/npm-fill.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/svg/php-fill.svg b/src/svg/php-fill.svg
new file mode 100644
index 00000000..212bd1dd
--- /dev/null
+++ b/src/svg/php-fill.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/svg/python-fill.svg b/src/svg/python-fill.svg
new file mode 100644
index 00000000..cb53895a
--- /dev/null
+++ b/src/svg/python-fill.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/svg/react-fill.svg b/src/svg/react-fill.svg
new file mode 100644
index 00000000..eb832931
--- /dev/null
+++ b/src/svg/react-fill.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/svg/redux-fill.svg b/src/svg/redux-fill.svg
new file mode 100644
index 00000000..1db10fe7
--- /dev/null
+++ b/src/svg/redux-fill.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/svg/sass-fill.svg b/src/svg/sass-fill.svg
new file mode 100644
index 00000000..1f8020a2
--- /dev/null
+++ b/src/svg/sass-fill.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/svg/vercel-fill.svg b/src/svg/vercel-fill.svg
new file mode 100644
index 00000000..b74130b2
--- /dev/null
+++ b/src/svg/vercel-fill.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/svg/vscode-fill.svg b/src/svg/vscode-fill.svg
new file mode 100644
index 00000000..21be5bff
--- /dev/null
+++ b/src/svg/vscode-fill.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/src/svg/vue-fill.svg b/src/svg/vue-fill.svg
new file mode 100644
index 00000000..b4d522b8
--- /dev/null
+++ b/src/svg/vue-fill.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/svg/yarn-fill.svg b/src/svg/yarn-fill.svg
new file mode 100644
index 00000000..d4de6ee2
--- /dev/null
+++ b/src/svg/yarn-fill.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+