diff --git a/.changeset/fifty-candles-visit.md b/.changeset/fifty-candles-visit.md new file mode 100644 index 000000000..cd85df489 --- /dev/null +++ b/.changeset/fifty-candles-visit.md @@ -0,0 +1,5 @@ +--- +'@icons-pack/react-simple-icons': minor +--- + +bump simple-icons@7.13.0 diff --git a/package.json b/package.json index 3ea6e92a0..471d17800 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "rollup-plugin-terser": "7.0.2", "rollup-plugin-typescript2": "0.31.2", "signale": "^1.4.0", - "simple-icons": "7.11.0", + "simple-icons": "7.13.0", "typescript": "^4.7.3", "uppercamelcase": "^3.0.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c2f0f0aa6..d8db26116 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -34,7 +34,7 @@ specifiers: rollup-plugin-terser: 7.0.2 rollup-plugin-typescript2: 0.31.2 signale: ^1.4.0 - simple-icons: 7.11.0 + simple-icons: 7.13.0 typescript: ^4.7.3 uppercamelcase: ^3.0.0 @@ -72,7 +72,7 @@ devDependencies: rollup-plugin-terser: 7.0.2_rollup@2.75.3 rollup-plugin-typescript2: 0.31.2_ncz2wtzomenyewuplihdt2slpe signale: 1.4.0 - simple-icons: 7.11.0 + simple-icons: 7.13.0 typescript: 4.7.3 uppercamelcase: 3.0.0 @@ -4989,8 +4989,8 @@ packages: simple-concat: 1.0.1 dev: true - /simple-icons/7.11.0: - resolution: {integrity: sha512-RpPJ8UHLOcsNHn1Ms+TP5fCUwv7xc+S/sZF9QilRP594PQ7bgjvhMwIHslx1kCOP09FDOo+LIelRFc55QHfojw==} + /simple-icons/7.13.0: + resolution: {integrity: sha512-JrZKIBE9nWkoRib8UISvY9Q1cBgfCAHRWO8bYXIObJ1tJcLPVKu9AzjjS+i6Hp5b3NXsFSrLIy4UxIJHbC5JIw==} engines: {node: '>=0.12.18'} dev: true diff --git a/scripts/generate-components.js b/scripts/generate-components.js index 141a47c93..4f2c6af38 100644 --- a/scripts/generate-components.js +++ b/scripts/generate-components.js @@ -1,9 +1,7 @@ const path = require('path'); const fs = require('fs'); const upperCamelCase = require('uppercamelcase'); - const SimpleIcons = require('simple-icons'); - const { titleToFilename, outputFileFormat, signale } = require('./utils'); const formatFile = 'utf-8'; @@ -55,36 +53,35 @@ ICONS.forEach(icon => { others: '...others', }; - const element = ` - import * as React from 'react'; - - export type ${componentName}Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; - - const ${componentName} = React.forwardRef(function ${componentName}({color = 'currentColor', size = 24, title = "${baseName}", ...others}, ref) { - - return ( - - {title} - - - ); - }); - - export default ${componentName} - `; + const element = `import * as React from 'react'; + +export type ${componentName}Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const ${componentName} = React.forwardRef(function ${componentName}({color = 'currentColor', size = 24, title = "${baseName}", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default ${componentName}; +`; const component = element; //const component = outputFileFormat(element); diff --git a/src/components/Abbott.tsx b/src/components/Abbott.tsx index a2d55dea3..575bf69f7 100644 --- a/src/components/Abbott.tsx +++ b/src/components/Abbott.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AbbottProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AbbottProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Abbott = React.forwardRef(function Abbott({color = 'currentColor', size = 24, title = "abbott", ...others}, ref) { - const Abbott = React.forwardRef(function Abbott({color = 'currentColor', size = 24, title = "abbott", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Abbott - \ No newline at end of file +export default Abbott; diff --git a/src/components/Abbrobotstudio.tsx b/src/components/Abbrobotstudio.tsx index 79161c5c6..ffde424e8 100644 --- a/src/components/Abbrobotstudio.tsx +++ b/src/components/Abbrobotstudio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AbbrobotstudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AbbrobotstudioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Abbrobotstudio = React.forwardRef(function Abbrobotstudio({color = 'currentColor', size = 24, title = "abbrobotstudio", ...others}, ref) { - const Abbrobotstudio = React.forwardRef(function Abbrobotstudio({color = 'currentColor', size = 24, title = "abbrobotstudio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Abbrobotstudio - \ No newline at end of file +export default Abbrobotstudio; diff --git a/src/components/Abbvie.tsx b/src/components/Abbvie.tsx index 649a0e7ba..0e346d4b5 100644 --- a/src/components/Abbvie.tsx +++ b/src/components/Abbvie.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AbbvieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AbbvieProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Abbvie = React.forwardRef(function Abbvie({color = 'currentColor', size = 24, title = "abbvie", ...others}, ref) { - const Abbvie = React.forwardRef(function Abbvie({color = 'currentColor', size = 24, title = "abbvie", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Abbvie - \ No newline at end of file +export default Abbvie; diff --git a/src/components/Abletonlive.tsx b/src/components/Abletonlive.tsx index a2cbfb7be..fa21a5e5a 100644 --- a/src/components/Abletonlive.tsx +++ b/src/components/Abletonlive.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AbletonliveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AbletonliveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Abletonlive = React.forwardRef(function Abletonlive({color = 'currentColor', size = 24, title = "abletonlive", ...others}, ref) { - const Abletonlive = React.forwardRef(function Abletonlive({color = 'currentColor', size = 24, title = "abletonlive", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Abletonlive - \ No newline at end of file +export default Abletonlive; diff --git a/src/components/Aboutdotme.tsx b/src/components/Aboutdotme.tsx index a6e1f08fe..b2b0fa04e 100644 --- a/src/components/Aboutdotme.tsx +++ b/src/components/Aboutdotme.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AboutdotmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AboutdotmeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aboutdotme = React.forwardRef(function Aboutdotme({color = 'currentColor', size = 24, title = "aboutdotme", ...others}, ref) { - const Aboutdotme = React.forwardRef(function Aboutdotme({color = 'currentColor', size = 24, title = "aboutdotme", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aboutdotme - \ No newline at end of file +export default Aboutdotme; diff --git a/src/components/Abstract.tsx b/src/components/Abstract.tsx index 93a4b6f22..ed1738c0a 100644 --- a/src/components/Abstract.tsx +++ b/src/components/Abstract.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AbstractProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AbstractProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Abstract = React.forwardRef(function Abstract({color = 'currentColor', size = 24, title = "abstract", ...others}, ref) { - const Abstract = React.forwardRef(function Abstract({color = 'currentColor', size = 24, title = "abstract", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Abstract - \ No newline at end of file +export default Abstract; diff --git a/src/components/Academia.tsx b/src/components/Academia.tsx index e78cd7dfd..3c0a2e437 100644 --- a/src/components/Academia.tsx +++ b/src/components/Academia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AcademiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AcademiaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Academia = React.forwardRef(function Academia({color = 'currentColor', size = 24, title = "academia", ...others}, ref) { - const Academia = React.forwardRef(function Academia({color = 'currentColor', size = 24, title = "academia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Academia - \ No newline at end of file +export default Academia; diff --git a/src/components/Accenture.tsx b/src/components/Accenture.tsx index 3fba672b6..c94be4faa 100644 --- a/src/components/Accenture.tsx +++ b/src/components/Accenture.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AccentureProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AccentureProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Accenture = React.forwardRef(function Accenture({color = 'currentColor', size = 24, title = "accenture", ...others}, ref) { - const Accenture = React.forwardRef(function Accenture({color = 'currentColor', size = 24, title = "accenture", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Accenture - \ No newline at end of file +export default Accenture; diff --git a/src/components/Acclaim.tsx b/src/components/Acclaim.tsx index a4f2f8734..08704070c 100644 --- a/src/components/Acclaim.tsx +++ b/src/components/Acclaim.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AcclaimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AcclaimProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Acclaim = React.forwardRef(function Acclaim({color = 'currentColor', size = 24, title = "acclaim", ...others}, ref) { - const Acclaim = React.forwardRef(function Acclaim({color = 'currentColor', size = 24, title = "acclaim", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Acclaim - \ No newline at end of file +export default Acclaim; diff --git a/src/components/Accusoft.tsx b/src/components/Accusoft.tsx index 29d6c2e1a..6b76f9f10 100644 --- a/src/components/Accusoft.tsx +++ b/src/components/Accusoft.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AccusoftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AccusoftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Accusoft = React.forwardRef(function Accusoft({color = 'currentColor', size = 24, title = "accusoft", ...others}, ref) { - const Accusoft = React.forwardRef(function Accusoft({color = 'currentColor', size = 24, title = "accusoft", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Accusoft - \ No newline at end of file +export default Accusoft; diff --git a/src/components/Acer.tsx b/src/components/Acer.tsx index ca37d1ab4..1cbbfede0 100644 --- a/src/components/Acer.tsx +++ b/src/components/Acer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AcerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AcerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Acer = React.forwardRef(function Acer({color = 'currentColor', size = 24, title = "acer", ...others}, ref) { - const Acer = React.forwardRef(function Acer({color = 'currentColor', size = 24, title = "acer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Acer - \ No newline at end of file +export default Acer; diff --git a/src/components/Acm.tsx b/src/components/Acm.tsx index 9b3f75db5..0ab6d9128 100644 --- a/src/components/Acm.tsx +++ b/src/components/Acm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AcmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AcmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Acm = React.forwardRef(function Acm({color = 'currentColor', size = 24, title = "acm", ...others}, ref) { - const Acm = React.forwardRef(function Acm({color = 'currentColor', size = 24, title = "acm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Acm - \ No newline at end of file +export default Acm; diff --git a/src/components/Actigraph.tsx b/src/components/Actigraph.tsx index 7cd2822f9..3eb5daaa5 100644 --- a/src/components/Actigraph.tsx +++ b/src/components/Actigraph.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ActigraphProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ActigraphProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Actigraph = React.forwardRef(function Actigraph({color = 'currentColor', size = 24, title = "actigraph", ...others}, ref) { - const Actigraph = React.forwardRef(function Actigraph({color = 'currentColor', size = 24, title = "actigraph", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Actigraph - \ No newline at end of file +export default Actigraph; diff --git a/src/components/Activision.tsx b/src/components/Activision.tsx index ea96eef52..2b75398ac 100644 --- a/src/components/Activision.tsx +++ b/src/components/Activision.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ActivisionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ActivisionProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Activision = React.forwardRef(function Activision({color = 'currentColor', size = 24, title = "activision", ...others}, ref) { - const Activision = React.forwardRef(function Activision({color = 'currentColor', size = 24, title = "activision", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Activision - \ No newline at end of file +export default Activision; diff --git a/src/components/Adafruit.tsx b/src/components/Adafruit.tsx index ad35c6d88..acc0ec5fc 100644 --- a/src/components/Adafruit.tsx +++ b/src/components/Adafruit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdafruitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdafruitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adafruit = React.forwardRef(function Adafruit({color = 'currentColor', size = 24, title = "adafruit", ...others}, ref) { - const Adafruit = React.forwardRef(function Adafruit({color = 'currentColor', size = 24, title = "adafruit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adafruit - \ No newline at end of file +export default Adafruit; diff --git a/src/components/Adblock.tsx b/src/components/Adblock.tsx index 8cc10c8cd..250ac4583 100644 --- a/src/components/Adblock.tsx +++ b/src/components/Adblock.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdblockProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdblockProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adblock = React.forwardRef(function Adblock({color = 'currentColor', size = 24, title = "adblock", ...others}, ref) { - const Adblock = React.forwardRef(function Adblock({color = 'currentColor', size = 24, title = "adblock", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adblock - \ No newline at end of file +export default Adblock; diff --git a/src/components/Adblockplus.tsx b/src/components/Adblockplus.tsx index af892605d..b87829f88 100644 --- a/src/components/Adblockplus.tsx +++ b/src/components/Adblockplus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdblockplusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdblockplusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adblockplus = React.forwardRef(function Adblockplus({color = 'currentColor', size = 24, title = "adblockplus", ...others}, ref) { - const Adblockplus = React.forwardRef(function Adblockplus({color = 'currentColor', size = 24, title = "adblockplus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adblockplus - \ No newline at end of file +export default Adblockplus; diff --git a/src/components/Addthis.tsx b/src/components/Addthis.tsx index babeee615..5a26dd8d2 100644 --- a/src/components/Addthis.tsx +++ b/src/components/Addthis.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AddthisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AddthisProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Addthis = React.forwardRef(function Addthis({color = 'currentColor', size = 24, title = "addthis", ...others}, ref) { - const Addthis = React.forwardRef(function Addthis({color = 'currentColor', size = 24, title = "addthis", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Addthis - \ No newline at end of file +export default Addthis; diff --git a/src/components/Adguard.tsx b/src/components/Adguard.tsx index 50a90db41..05a2d9c10 100644 --- a/src/components/Adguard.tsx +++ b/src/components/Adguard.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdguardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdguardProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adguard = React.forwardRef(function Adguard({color = 'currentColor', size = 24, title = "adguard", ...others}, ref) { - const Adguard = React.forwardRef(function Adguard({color = 'currentColor', size = 24, title = "adguard", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adguard - \ No newline at end of file +export default Adguard; diff --git a/src/components/Adidas.tsx b/src/components/Adidas.tsx index c7ebda336..ef57f9c9b 100644 --- a/src/components/Adidas.tsx +++ b/src/components/Adidas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdidasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdidasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adidas = React.forwardRef(function Adidas({color = 'currentColor', size = 24, title = "adidas", ...others}, ref) { - const Adidas = React.forwardRef(function Adidas({color = 'currentColor', size = 24, title = "adidas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adidas - \ No newline at end of file +export default Adidas; diff --git a/src/components/Adminer.tsx b/src/components/Adminer.tsx new file mode 100644 index 000000000..30a83e838 --- /dev/null +++ b/src/components/Adminer.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type AdminerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Adminer = React.forwardRef(function Adminer({color = 'currentColor', size = 24, title = "adminer", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Adminer; diff --git a/src/components/Adobe.tsx b/src/components/Adobe.tsx index 5982272d2..c3d8a4d06 100644 --- a/src/components/Adobe.tsx +++ b/src/components/Adobe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobe = React.forwardRef(function Adobe({color = 'currentColor', size = 24, title = "adobe", ...others}, ref) { - const Adobe = React.forwardRef(function Adobe({color = 'currentColor', size = 24, title = "adobe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobe - \ No newline at end of file +export default Adobe; diff --git a/src/components/Adobeacrobatreader.tsx b/src/components/Adobeacrobatreader.tsx index 0da517819..fa6f2b45b 100644 --- a/src/components/Adobeacrobatreader.tsx +++ b/src/components/Adobeacrobatreader.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobeacrobatreaderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobeacrobatreaderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobeacrobatreader = React.forwardRef(function Adobeacrobatreader({color = 'currentColor', size = 24, title = "adobeacrobatreader", ...others}, ref) { - const Adobeacrobatreader = React.forwardRef(function Adobeacrobatreader({color = 'currentColor', size = 24, title = "adobeacrobatreader", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobeacrobatreader - \ No newline at end of file +export default Adobeacrobatreader; diff --git a/src/components/Adobeaftereffects.tsx b/src/components/Adobeaftereffects.tsx index 0412bb916..99fc7a968 100644 --- a/src/components/Adobeaftereffects.tsx +++ b/src/components/Adobeaftereffects.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobeaftereffectsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobeaftereffectsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobeaftereffects = React.forwardRef(function Adobeaftereffects({color = 'currentColor', size = 24, title = "adobeaftereffects", ...others}, ref) { - const Adobeaftereffects = React.forwardRef(function Adobeaftereffects({color = 'currentColor', size = 24, title = "adobeaftereffects", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobeaftereffects - \ No newline at end of file +export default Adobeaftereffects; diff --git a/src/components/Adobeaudition.tsx b/src/components/Adobeaudition.tsx index f54f60979..9e9235771 100644 --- a/src/components/Adobeaudition.tsx +++ b/src/components/Adobeaudition.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobeauditionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobeauditionProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobeaudition = React.forwardRef(function Adobeaudition({color = 'currentColor', size = 24, title = "adobeaudition", ...others}, ref) { - const Adobeaudition = React.forwardRef(function Adobeaudition({color = 'currentColor', size = 24, title = "adobeaudition", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobeaudition - \ No newline at end of file +export default Adobeaudition; diff --git a/src/components/Adobecreativecloud.tsx b/src/components/Adobecreativecloud.tsx index e846b7076..dab420ca2 100644 --- a/src/components/Adobecreativecloud.tsx +++ b/src/components/Adobecreativecloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobecreativecloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobecreativecloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobecreativecloud = React.forwardRef(function Adobecreativecloud({color = 'currentColor', size = 24, title = "adobecreativecloud", ...others}, ref) { - const Adobecreativecloud = React.forwardRef(function Adobecreativecloud({color = 'currentColor', size = 24, title = "adobecreativecloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobecreativecloud - \ No newline at end of file +export default Adobecreativecloud; diff --git a/src/components/Adobedreamweaver.tsx b/src/components/Adobedreamweaver.tsx index e0568197c..ee929e1fa 100644 --- a/src/components/Adobedreamweaver.tsx +++ b/src/components/Adobedreamweaver.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobedreamweaverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobedreamweaverProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobedreamweaver = React.forwardRef(function Adobedreamweaver({color = 'currentColor', size = 24, title = "adobedreamweaver", ...others}, ref) { - const Adobedreamweaver = React.forwardRef(function Adobedreamweaver({color = 'currentColor', size = 24, title = "adobedreamweaver", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobedreamweaver - \ No newline at end of file +export default Adobedreamweaver; diff --git a/src/components/Adobefonts.tsx b/src/components/Adobefonts.tsx index d6c78b5db..68c0a162e 100644 --- a/src/components/Adobefonts.tsx +++ b/src/components/Adobefonts.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobefontsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobefontsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobefonts = React.forwardRef(function Adobefonts({color = 'currentColor', size = 24, title = "adobefonts", ...others}, ref) { - const Adobefonts = React.forwardRef(function Adobefonts({color = 'currentColor', size = 24, title = "adobefonts", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobefonts - \ No newline at end of file +export default Adobefonts; diff --git a/src/components/Adobeillustrator.tsx b/src/components/Adobeillustrator.tsx index f78356390..3f793669d 100644 --- a/src/components/Adobeillustrator.tsx +++ b/src/components/Adobeillustrator.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobeillustratorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobeillustratorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobeillustrator = React.forwardRef(function Adobeillustrator({color = 'currentColor', size = 24, title = "adobeillustrator", ...others}, ref) { - const Adobeillustrator = React.forwardRef(function Adobeillustrator({color = 'currentColor', size = 24, title = "adobeillustrator", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobeillustrator - \ No newline at end of file +export default Adobeillustrator; diff --git a/src/components/Adobeindesign.tsx b/src/components/Adobeindesign.tsx index d6aeb5193..10b92ac84 100644 --- a/src/components/Adobeindesign.tsx +++ b/src/components/Adobeindesign.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobeindesignProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobeindesignProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobeindesign = React.forwardRef(function Adobeindesign({color = 'currentColor', size = 24, title = "adobeindesign", ...others}, ref) { - const Adobeindesign = React.forwardRef(function Adobeindesign({color = 'currentColor', size = 24, title = "adobeindesign", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobeindesign - \ No newline at end of file +export default Adobeindesign; diff --git a/src/components/Adobelightroom.tsx b/src/components/Adobelightroom.tsx index 7f22ed82a..4e303640f 100644 --- a/src/components/Adobelightroom.tsx +++ b/src/components/Adobelightroom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobelightroomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobelightroomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobelightroom = React.forwardRef(function Adobelightroom({color = 'currentColor', size = 24, title = "adobelightroom", ...others}, ref) { - const Adobelightroom = React.forwardRef(function Adobelightroom({color = 'currentColor', size = 24, title = "adobelightroom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobelightroom - \ No newline at end of file +export default Adobelightroom; diff --git a/src/components/Adobelightroomclassic.tsx b/src/components/Adobelightroomclassic.tsx index 88ec45eff..39676c707 100644 --- a/src/components/Adobelightroomclassic.tsx +++ b/src/components/Adobelightroomclassic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobelightroomclassicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobelightroomclassicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobelightroomclassic = React.forwardRef(function Adobelightroomclassic({color = 'currentColor', size = 24, title = "adobelightroomclassic", ...others}, ref) { - const Adobelightroomclassic = React.forwardRef(function Adobelightroomclassic({color = 'currentColor', size = 24, title = "adobelightroomclassic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobelightroomclassic - \ No newline at end of file +export default Adobelightroomclassic; diff --git a/src/components/Adobephotoshop.tsx b/src/components/Adobephotoshop.tsx index 8297c451b..8589a2d14 100644 --- a/src/components/Adobephotoshop.tsx +++ b/src/components/Adobephotoshop.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobephotoshopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobephotoshopProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobephotoshop = React.forwardRef(function Adobephotoshop({color = 'currentColor', size = 24, title = "adobephotoshop", ...others}, ref) { - const Adobephotoshop = React.forwardRef(function Adobephotoshop({color = 'currentColor', size = 24, title = "adobephotoshop", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobephotoshop - \ No newline at end of file +export default Adobephotoshop; diff --git a/src/components/Adobepremierepro.tsx b/src/components/Adobepremierepro.tsx index 87ff37f71..b579503cf 100644 --- a/src/components/Adobepremierepro.tsx +++ b/src/components/Adobepremierepro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobepremiereproProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobepremiereproProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobepremierepro = React.forwardRef(function Adobepremierepro({color = 'currentColor', size = 24, title = "adobepremierepro", ...others}, ref) { - const Adobepremierepro = React.forwardRef(function Adobepremierepro({color = 'currentColor', size = 24, title = "adobepremierepro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobepremierepro - \ No newline at end of file +export default Adobepremierepro; diff --git a/src/components/Adobexd.tsx b/src/components/Adobexd.tsx index 442a1cfab..2a3219040 100644 --- a/src/components/Adobexd.tsx +++ b/src/components/Adobexd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdobexdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdobexdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adobexd = React.forwardRef(function Adobexd({color = 'currentColor', size = 24, title = "adobexd", ...others}, ref) { - const Adobexd = React.forwardRef(function Adobexd({color = 'currentColor', size = 24, title = "adobexd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adobexd - \ No newline at end of file +export default Adobexd; diff --git a/src/components/Adonisjs.tsx b/src/components/Adonisjs.tsx index 161af9d27..5eeda02a3 100644 --- a/src/components/Adonisjs.tsx +++ b/src/components/Adonisjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdonisjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdonisjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adonisjs = React.forwardRef(function Adonisjs({color = 'currentColor', size = 24, title = "adonisjs", ...others}, ref) { - const Adonisjs = React.forwardRef(function Adonisjs({color = 'currentColor', size = 24, title = "adonisjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adonisjs - \ No newline at end of file +export default Adonisjs; diff --git a/src/components/Adyen.tsx b/src/components/Adyen.tsx index ea452ed44..65273a250 100644 --- a/src/components/Adyen.tsx +++ b/src/components/Adyen.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AdyenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AdyenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Adyen = React.forwardRef(function Adyen({color = 'currentColor', size = 24, title = "adyen", ...others}, ref) { - const Adyen = React.forwardRef(function Adyen({color = 'currentColor', size = 24, title = "adyen", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Adyen - \ No newline at end of file +export default Adyen; diff --git a/src/components/Aerlingus.tsx b/src/components/Aerlingus.tsx index b5d5597d0..00807c4b7 100644 --- a/src/components/Aerlingus.tsx +++ b/src/components/Aerlingus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AerlingusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AerlingusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aerlingus = React.forwardRef(function Aerlingus({color = 'currentColor', size = 24, title = "aerlingus", ...others}, ref) { - const Aerlingus = React.forwardRef(function Aerlingus({color = 'currentColor', size = 24, title = "aerlingus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aerlingus - \ No newline at end of file +export default Aerlingus; diff --git a/src/components/Aeroflot.tsx b/src/components/Aeroflot.tsx index 52f60622d..ad913e069 100644 --- a/src/components/Aeroflot.tsx +++ b/src/components/Aeroflot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AeroflotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AeroflotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aeroflot = React.forwardRef(function Aeroflot({color = 'currentColor', size = 24, title = "aeroflot", ...others}, ref) { - const Aeroflot = React.forwardRef(function Aeroflot({color = 'currentColor', size = 24, title = "aeroflot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aeroflot - \ No newline at end of file +export default Aeroflot; diff --git a/src/components/Aeromexico.tsx b/src/components/Aeromexico.tsx index a55830a96..aba5a370b 100644 --- a/src/components/Aeromexico.tsx +++ b/src/components/Aeromexico.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AeromexicoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AeromexicoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aeromexico = React.forwardRef(function Aeromexico({color = 'currentColor', size = 24, title = "aeromexico", ...others}, ref) { - const Aeromexico = React.forwardRef(function Aeromexico({color = 'currentColor', size = 24, title = "aeromexico", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aeromexico - \ No newline at end of file +export default Aeromexico; diff --git a/src/components/Aerospike.tsx b/src/components/Aerospike.tsx index c38c75467..9c04b04c9 100644 --- a/src/components/Aerospike.tsx +++ b/src/components/Aerospike.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AerospikeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AerospikeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aerospike = React.forwardRef(function Aerospike({color = 'currentColor', size = 24, title = "aerospike", ...others}, ref) { - const Aerospike = React.forwardRef(function Aerospike({color = 'currentColor', size = 24, title = "aerospike", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aerospike - \ No newline at end of file +export default Aerospike; diff --git a/src/components/Aew.tsx b/src/components/Aew.tsx index 9ac2f9068..4dd06d61c 100644 --- a/src/components/Aew.tsx +++ b/src/components/Aew.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AewProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AewProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aew = React.forwardRef(function Aew({color = 'currentColor', size = 24, title = "aew", ...others}, ref) { - const Aew = React.forwardRef(function Aew({color = 'currentColor', size = 24, title = "aew", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aew - \ No newline at end of file +export default Aew; diff --git a/src/components/Affinity.tsx b/src/components/Affinity.tsx index 88e5c39ad..0455e0e48 100644 --- a/src/components/Affinity.tsx +++ b/src/components/Affinity.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AffinityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AffinityProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Affinity = React.forwardRef(function Affinity({color = 'currentColor', size = 24, title = "affinity", ...others}, ref) { - const Affinity = React.forwardRef(function Affinity({color = 'currentColor', size = 24, title = "affinity", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Affinity - \ No newline at end of file +export default Affinity; diff --git a/src/components/Affinitydesigner.tsx b/src/components/Affinitydesigner.tsx index 32c19b7f3..b0f6e7690 100644 --- a/src/components/Affinitydesigner.tsx +++ b/src/components/Affinitydesigner.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AffinitydesignerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AffinitydesignerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Affinitydesigner = React.forwardRef(function Affinitydesigner({color = 'currentColor', size = 24, title = "affinitydesigner", ...others}, ref) { - const Affinitydesigner = React.forwardRef(function Affinitydesigner({color = 'currentColor', size = 24, title = "affinitydesigner", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Affinitydesigner - \ No newline at end of file +export default Affinitydesigner; diff --git a/src/components/Affinityphoto.tsx b/src/components/Affinityphoto.tsx index 3c37a4383..34c4d121f 100644 --- a/src/components/Affinityphoto.tsx +++ b/src/components/Affinityphoto.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AffinityphotoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AffinityphotoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Affinityphoto = React.forwardRef(function Affinityphoto({color = 'currentColor', size = 24, title = "affinityphoto", ...others}, ref) { - const Affinityphoto = React.forwardRef(function Affinityphoto({color = 'currentColor', size = 24, title = "affinityphoto", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Affinityphoto - \ No newline at end of file +export default Affinityphoto; diff --git a/src/components/Affinitypublisher.tsx b/src/components/Affinitypublisher.tsx index 7f323379e..a0f119543 100644 --- a/src/components/Affinitypublisher.tsx +++ b/src/components/Affinitypublisher.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AffinitypublisherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AffinitypublisherProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Affinitypublisher = React.forwardRef(function Affinitypublisher({color = 'currentColor', size = 24, title = "affinitypublisher", ...others}, ref) { - const Affinitypublisher = React.forwardRef(function Affinitypublisher({color = 'currentColor', size = 24, title = "affinitypublisher", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Affinitypublisher - \ No newline at end of file +export default Affinitypublisher; diff --git a/src/components/Aframe.tsx b/src/components/Aframe.tsx index a13286ae4..f706d8934 100644 --- a/src/components/Aframe.tsx +++ b/src/components/Aframe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AframeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AframeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aframe = React.forwardRef(function Aframe({color = 'currentColor', size = 24, title = "aframe", ...others}, ref) { - const Aframe = React.forwardRef(function Aframe({color = 'currentColor', size = 24, title = "aframe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aframe - \ No newline at end of file +export default Aframe; diff --git a/src/components/Agora.tsx b/src/components/Agora.tsx new file mode 100644 index 000000000..4c9301d94 --- /dev/null +++ b/src/components/Agora.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type AgoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Agora = React.forwardRef(function Agora({color = 'currentColor', size = 24, title = "agora", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Agora; diff --git a/src/components/Aib.tsx b/src/components/Aib.tsx index 874467fd8..2be3d1880 100644 --- a/src/components/Aib.tsx +++ b/src/components/Aib.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AibProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AibProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aib = React.forwardRef(function Aib({color = 'currentColor', size = 24, title = "aib", ...others}, ref) { - const Aib = React.forwardRef(function Aib({color = 'currentColor', size = 24, title = "aib", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aib - \ No newline at end of file +export default Aib; diff --git a/src/components/Aidungeon.tsx b/src/components/Aidungeon.tsx index 37d6ed40f..b46d6116c 100644 --- a/src/components/Aidungeon.tsx +++ b/src/components/Aidungeon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AidungeonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AidungeonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aidungeon = React.forwardRef(function Aidungeon({color = 'currentColor', size = 24, title = "aidungeon", ...others}, ref) { - const Aidungeon = React.forwardRef(function Aidungeon({color = 'currentColor', size = 24, title = "aidungeon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aidungeon - \ No newline at end of file +export default Aidungeon; diff --git a/src/components/Aiohttp.tsx b/src/components/Aiohttp.tsx index df35ecc68..561af3cbf 100644 --- a/src/components/Aiohttp.tsx +++ b/src/components/Aiohttp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AiohttpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AiohttpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aiohttp = React.forwardRef(function Aiohttp({color = 'currentColor', size = 24, title = "aiohttp", ...others}, ref) { - const Aiohttp = React.forwardRef(function Aiohttp({color = 'currentColor', size = 24, title = "aiohttp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aiohttp - \ No newline at end of file +export default Aiohttp; diff --git a/src/components/Aiqfome.tsx b/src/components/Aiqfome.tsx index 30ddf2e20..54d041cd7 100644 --- a/src/components/Aiqfome.tsx +++ b/src/components/Aiqfome.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AiqfomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AiqfomeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aiqfome = React.forwardRef(function Aiqfome({color = 'currentColor', size = 24, title = "aiqfome", ...others}, ref) { - const Aiqfome = React.forwardRef(function Aiqfome({color = 'currentColor', size = 24, title = "aiqfome", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aiqfome - \ No newline at end of file +export default Aiqfome; diff --git a/src/components/Airasia.tsx b/src/components/Airasia.tsx index 374ecec62..04021f0bf 100644 --- a/src/components/Airasia.tsx +++ b/src/components/Airasia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AirasiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AirasiaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Airasia = React.forwardRef(function Airasia({color = 'currentColor', size = 24, title = "airasia", ...others}, ref) { - const Airasia = React.forwardRef(function Airasia({color = 'currentColor', size = 24, title = "airasia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Airasia - \ No newline at end of file +export default Airasia; diff --git a/src/components/Airbnb.tsx b/src/components/Airbnb.tsx index 1d97308b2..a0e17097b 100644 --- a/src/components/Airbnb.tsx +++ b/src/components/Airbnb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AirbnbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AirbnbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Airbnb = React.forwardRef(function Airbnb({color = 'currentColor', size = 24, title = "airbnb", ...others}, ref) { - const Airbnb = React.forwardRef(function Airbnb({color = 'currentColor', size = 24, title = "airbnb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Airbnb - \ No newline at end of file +export default Airbnb; diff --git a/src/components/Airbus.tsx b/src/components/Airbus.tsx index e7066192c..8975582d5 100644 --- a/src/components/Airbus.tsx +++ b/src/components/Airbus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AirbusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AirbusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Airbus = React.forwardRef(function Airbus({color = 'currentColor', size = 24, title = "airbus", ...others}, ref) { - const Airbus = React.forwardRef(function Airbus({color = 'currentColor', size = 24, title = "airbus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Airbus - \ No newline at end of file +export default Airbus; diff --git a/src/components/Airbyte.tsx b/src/components/Airbyte.tsx index 9d3dd1b57..c5cbcc089 100644 --- a/src/components/Airbyte.tsx +++ b/src/components/Airbyte.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AirbyteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AirbyteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Airbyte = React.forwardRef(function Airbyte({color = 'currentColor', size = 24, title = "airbyte", ...others}, ref) { - const Airbyte = React.forwardRef(function Airbyte({color = 'currentColor', size = 24, title = "airbyte", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Airbyte - \ No newline at end of file +export default Airbyte; diff --git a/src/components/Aircall.tsx b/src/components/Aircall.tsx index 396485f82..4873ee906 100644 --- a/src/components/Aircall.tsx +++ b/src/components/Aircall.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AircallProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AircallProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aircall = React.forwardRef(function Aircall({color = 'currentColor', size = 24, title = "aircall", ...others}, ref) { - const Aircall = React.forwardRef(function Aircall({color = 'currentColor', size = 24, title = "aircall", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aircall - \ No newline at end of file +export default Aircall; diff --git a/src/components/Aircanada.tsx b/src/components/Aircanada.tsx index 38bf716e7..780fcc22e 100644 --- a/src/components/Aircanada.tsx +++ b/src/components/Aircanada.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AircanadaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AircanadaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aircanada = React.forwardRef(function Aircanada({color = 'currentColor', size = 24, title = "aircanada", ...others}, ref) { - const Aircanada = React.forwardRef(function Aircanada({color = 'currentColor', size = 24, title = "aircanada", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aircanada - \ No newline at end of file +export default Aircanada; diff --git a/src/components/Airchina.tsx b/src/components/Airchina.tsx index d23aca2e1..e41b3800d 100644 --- a/src/components/Airchina.tsx +++ b/src/components/Airchina.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AirchinaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AirchinaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Airchina = React.forwardRef(function Airchina({color = 'currentColor', size = 24, title = "airchina", ...others}, ref) { - const Airchina = React.forwardRef(function Airchina({color = 'currentColor', size = 24, title = "airchina", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Airchina - \ No newline at end of file +export default Airchina; diff --git a/src/components/Airfrance.tsx b/src/components/Airfrance.tsx index e56d49cd9..28da90286 100644 --- a/src/components/Airfrance.tsx +++ b/src/components/Airfrance.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AirfranceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AirfranceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Airfrance = React.forwardRef(function Airfrance({color = 'currentColor', size = 24, title = "airfrance", ...others}, ref) { - const Airfrance = React.forwardRef(function Airfrance({color = 'currentColor', size = 24, title = "airfrance", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Airfrance - \ No newline at end of file +export default Airfrance; diff --git a/src/components/Airplayaudio.tsx b/src/components/Airplayaudio.tsx index 6c6a5392a..ff8a305f7 100644 --- a/src/components/Airplayaudio.tsx +++ b/src/components/Airplayaudio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AirplayaudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AirplayaudioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Airplayaudio = React.forwardRef(function Airplayaudio({color = 'currentColor', size = 24, title = "airplayaudio", ...others}, ref) { - const Airplayaudio = React.forwardRef(function Airplayaudio({color = 'currentColor', size = 24, title = "airplayaudio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Airplayaudio - \ No newline at end of file +export default Airplayaudio; diff --git a/src/components/Airplayvideo.tsx b/src/components/Airplayvideo.tsx index 880921e19..907f5996c 100644 --- a/src/components/Airplayvideo.tsx +++ b/src/components/Airplayvideo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AirplayvideoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AirplayvideoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Airplayvideo = React.forwardRef(function Airplayvideo({color = 'currentColor', size = 24, title = "airplayvideo", ...others}, ref) { - const Airplayvideo = React.forwardRef(function Airplayvideo({color = 'currentColor', size = 24, title = "airplayvideo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Airplayvideo - \ No newline at end of file +export default Airplayvideo; diff --git a/src/components/Airtable.tsx b/src/components/Airtable.tsx index 9e73f22f8..d7e0418fe 100644 --- a/src/components/Airtable.tsx +++ b/src/components/Airtable.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AirtableProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AirtableProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Airtable = React.forwardRef(function Airtable({color = 'currentColor', size = 24, title = "airtable", ...others}, ref) { - const Airtable = React.forwardRef(function Airtable({color = 'currentColor', size = 24, title = "airtable", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Airtable - \ No newline at end of file +export default Airtable; diff --git a/src/components/Ajv.tsx b/src/components/Ajv.tsx index 5797d0682..79f673b19 100644 --- a/src/components/Ajv.tsx +++ b/src/components/Ajv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AjvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AjvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ajv = React.forwardRef(function Ajv({color = 'currentColor', size = 24, title = "ajv", ...others}, ref) { - const Ajv = React.forwardRef(function Ajv({color = 'currentColor', size = 24, title = "ajv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ajv - \ No newline at end of file +export default Ajv; diff --git a/src/components/Alacritty.tsx b/src/components/Alacritty.tsx index adecd139e..353a4224a 100644 --- a/src/components/Alacritty.tsx +++ b/src/components/Alacritty.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlacrittyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlacrittyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alacritty = React.forwardRef(function Alacritty({color = 'currentColor', size = 24, title = "alacritty", ...others}, ref) { - const Alacritty = React.forwardRef(function Alacritty({color = 'currentColor', size = 24, title = "alacritty", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alacritty - \ No newline at end of file +export default Alacritty; diff --git a/src/components/Albertheijn.tsx b/src/components/Albertheijn.tsx index df6a0bf2d..8db3f4f9c 100644 --- a/src/components/Albertheijn.tsx +++ b/src/components/Albertheijn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlbertheijnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlbertheijnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Albertheijn = React.forwardRef(function Albertheijn({color = 'currentColor', size = 24, title = "albertheijn", ...others}, ref) { - const Albertheijn = React.forwardRef(function Albertheijn({color = 'currentColor', size = 24, title = "albertheijn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Albertheijn - \ No newline at end of file +export default Albertheijn; diff --git a/src/components/Aldinord.tsx b/src/components/Aldinord.tsx index 6a9c253bb..3b5d0051c 100644 --- a/src/components/Aldinord.tsx +++ b/src/components/Aldinord.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AldinordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AldinordProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aldinord = React.forwardRef(function Aldinord({color = 'currentColor', size = 24, title = "aldinord", ...others}, ref) { - const Aldinord = React.forwardRef(function Aldinord({color = 'currentColor', size = 24, title = "aldinord", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aldinord - \ No newline at end of file +export default Aldinord; diff --git a/src/components/Aldisud.tsx b/src/components/Aldisud.tsx index 6e095f17d..824830ee2 100644 --- a/src/components/Aldisud.tsx +++ b/src/components/Aldisud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AldisudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AldisudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aldisud = React.forwardRef(function Aldisud({color = 'currentColor', size = 24, title = "aldisud", ...others}, ref) { - const Aldisud = React.forwardRef(function Aldisud({color = 'currentColor', size = 24, title = "aldisud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aldisud - \ No newline at end of file +export default Aldisud; diff --git a/src/components/Alfaromeo.tsx b/src/components/Alfaromeo.tsx index 73e3ae831..45f54c778 100644 --- a/src/components/Alfaromeo.tsx +++ b/src/components/Alfaromeo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlfaromeoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlfaromeoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alfaromeo = React.forwardRef(function Alfaromeo({color = 'currentColor', size = 24, title = "alfaromeo", ...others}, ref) { - const Alfaromeo = React.forwardRef(function Alfaromeo({color = 'currentColor', size = 24, title = "alfaromeo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alfaromeo - \ No newline at end of file +export default Alfaromeo; diff --git a/src/components/Alfred.tsx b/src/components/Alfred.tsx index ea179588d..daa1564df 100644 --- a/src/components/Alfred.tsx +++ b/src/components/Alfred.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlfredProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlfredProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alfred = React.forwardRef(function Alfred({color = 'currentColor', size = 24, title = "alfred", ...others}, ref) { - const Alfred = React.forwardRef(function Alfred({color = 'currentColor', size = 24, title = "alfred", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alfred - \ No newline at end of file +export default Alfred; diff --git a/src/components/Algolia.tsx b/src/components/Algolia.tsx index a452ea3b4..c352ea9c3 100644 --- a/src/components/Algolia.tsx +++ b/src/components/Algolia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlgoliaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlgoliaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Algolia = React.forwardRef(function Algolia({color = 'currentColor', size = 24, title = "algolia", ...others}, ref) { - const Algolia = React.forwardRef(function Algolia({color = 'currentColor', size = 24, title = "algolia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Algolia - \ No newline at end of file +export default Algolia; diff --git a/src/components/Algorand.tsx b/src/components/Algorand.tsx new file mode 100644 index 000000000..154bc745c --- /dev/null +++ b/src/components/Algorand.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type AlgorandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Algorand = React.forwardRef(function Algorand({color = 'currentColor', size = 24, title = "algorand", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Algorand; diff --git a/src/components/Alibabacloud.tsx b/src/components/Alibabacloud.tsx index b5f907935..a2e855874 100644 --- a/src/components/Alibabacloud.tsx +++ b/src/components/Alibabacloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlibabacloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlibabacloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alibabacloud = React.forwardRef(function Alibabacloud({color = 'currentColor', size = 24, title = "alibabacloud", ...others}, ref) { - const Alibabacloud = React.forwardRef(function Alibabacloud({color = 'currentColor', size = 24, title = "alibabacloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alibabacloud - \ No newline at end of file +export default Alibabacloud; diff --git a/src/components/Alibabadotcom.tsx b/src/components/Alibabadotcom.tsx index 824234737..87fb46e76 100644 --- a/src/components/Alibabadotcom.tsx +++ b/src/components/Alibabadotcom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlibabadotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlibabadotcomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alibabadotcom = React.forwardRef(function Alibabadotcom({color = 'currentColor', size = 24, title = "alibabadotcom", ...others}, ref) { - const Alibabadotcom = React.forwardRef(function Alibabadotcom({color = 'currentColor', size = 24, title = "alibabadotcom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alibabadotcom - \ No newline at end of file +export default Alibabadotcom; diff --git a/src/components/Aliexpress.tsx b/src/components/Aliexpress.tsx index a23b7b737..99933f342 100644 --- a/src/components/Aliexpress.tsx +++ b/src/components/Aliexpress.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AliexpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AliexpressProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aliexpress = React.forwardRef(function Aliexpress({color = 'currentColor', size = 24, title = "aliexpress", ...others}, ref) { - const Aliexpress = React.forwardRef(function Aliexpress({color = 'currentColor', size = 24, title = "aliexpress", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aliexpress - \ No newline at end of file +export default Aliexpress; diff --git a/src/components/Alipay.tsx b/src/components/Alipay.tsx index 3acd8ea16..29f7efb9f 100644 --- a/src/components/Alipay.tsx +++ b/src/components/Alipay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlipayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlipayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alipay = React.forwardRef(function Alipay({color = 'currentColor', size = 24, title = "alipay", ...others}, ref) { - const Alipay = React.forwardRef(function Alipay({color = 'currentColor', size = 24, title = "alipay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alipay - \ No newline at end of file +export default Alipay; diff --git a/src/components/Alitalia.tsx b/src/components/Alitalia.tsx index 1161dd843..b856812da 100644 --- a/src/components/Alitalia.tsx +++ b/src/components/Alitalia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlitaliaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlitaliaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alitalia = React.forwardRef(function Alitalia({color = 'currentColor', size = 24, title = "alitalia", ...others}, ref) { - const Alitalia = React.forwardRef(function Alitalia({color = 'currentColor', size = 24, title = "alitalia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alitalia - \ No newline at end of file +export default Alitalia; diff --git a/src/components/Allegro.tsx b/src/components/Allegro.tsx index 28467dcd3..9c8cd6ba4 100644 --- a/src/components/Allegro.tsx +++ b/src/components/Allegro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AllegroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AllegroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Allegro = React.forwardRef(function Allegro({color = 'currentColor', size = 24, title = "allegro", ...others}, ref) { - const Allegro = React.forwardRef(function Allegro({color = 'currentColor', size = 24, title = "allegro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Allegro - \ No newline at end of file +export default Allegro; diff --git a/src/components/Alliedmodders.tsx b/src/components/Alliedmodders.tsx index f5b12e634..db83f952a 100644 --- a/src/components/Alliedmodders.tsx +++ b/src/components/Alliedmodders.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlliedmoddersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlliedmoddersProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alliedmodders = React.forwardRef(function Alliedmodders({color = 'currentColor', size = 24, title = "alliedmodders", ...others}, ref) { - const Alliedmodders = React.forwardRef(function Alliedmodders({color = 'currentColor', size = 24, title = "alliedmodders", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alliedmodders - \ No newline at end of file +export default Alliedmodders; diff --git a/src/components/Allocine.tsx b/src/components/Allocine.tsx index 7eb3f67cb..62b34c289 100644 --- a/src/components/Allocine.tsx +++ b/src/components/Allocine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AllocineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AllocineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Allocine = React.forwardRef(function Allocine({color = 'currentColor', size = 24, title = "allocine", ...others}, ref) { - const Allocine = React.forwardRef(function Allocine({color = 'currentColor', size = 24, title = "allocine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Allocine - \ No newline at end of file +export default Allocine; diff --git a/src/components/Alltrails.tsx b/src/components/Alltrails.tsx index bfd41f009..0e1d14f10 100644 --- a/src/components/Alltrails.tsx +++ b/src/components/Alltrails.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlltrailsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlltrailsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alltrails = React.forwardRef(function Alltrails({color = 'currentColor', size = 24, title = "alltrails", ...others}, ref) { - const Alltrails = React.forwardRef(function Alltrails({color = 'currentColor', size = 24, title = "alltrails", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alltrails - \ No newline at end of file +export default Alltrails; diff --git a/src/components/Alpinedotjs.tsx b/src/components/Alpinedotjs.tsx index 51f212c94..3b3fe61b3 100644 --- a/src/components/Alpinedotjs.tsx +++ b/src/components/Alpinedotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlpinedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlpinedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alpinedotjs = React.forwardRef(function Alpinedotjs({color = 'currentColor', size = 24, title = "alpinedotjs", ...others}, ref) { - const Alpinedotjs = React.forwardRef(function Alpinedotjs({color = 'currentColor', size = 24, title = "alpinedotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alpinedotjs - \ No newline at end of file +export default Alpinedotjs; diff --git a/src/components/Alpinelinux.tsx b/src/components/Alpinelinux.tsx index 2e84de14d..452367480 100644 --- a/src/components/Alpinelinux.tsx +++ b/src/components/Alpinelinux.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AlpinelinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AlpinelinuxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Alpinelinux = React.forwardRef(function Alpinelinux({color = 'currentColor', size = 24, title = "alpinelinux", ...others}, ref) { - const Alpinelinux = React.forwardRef(function Alpinelinux({color = 'currentColor', size = 24, title = "alpinelinux", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Alpinelinux - \ No newline at end of file +export default Alpinelinux; diff --git a/src/components/Altiumdesigner.tsx b/src/components/Altiumdesigner.tsx index 649eb5755..a2288b088 100644 --- a/src/components/Altiumdesigner.tsx +++ b/src/components/Altiumdesigner.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AltiumdesignerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AltiumdesignerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Altiumdesigner = React.forwardRef(function Altiumdesigner({color = 'currentColor', size = 24, title = "altiumdesigner", ...others}, ref) { - const Altiumdesigner = React.forwardRef(function Altiumdesigner({color = 'currentColor', size = 24, title = "altiumdesigner", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Altiumdesigner - \ No newline at end of file +export default Altiumdesigner; diff --git a/src/components/Amazon.tsx b/src/components/Amazon.tsx index fe48021fd..f50791aee 100644 --- a/src/components/Amazon.tsx +++ b/src/components/Amazon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazon = React.forwardRef(function Amazon({color = 'currentColor', size = 24, title = "amazon", ...others}, ref) { - const Amazon = React.forwardRef(function Amazon({color = 'currentColor', size = 24, title = "amazon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazon - \ No newline at end of file +export default Amazon; diff --git a/src/components/Amazonalexa.tsx b/src/components/Amazonalexa.tsx index 0db035956..c454f4f7f 100644 --- a/src/components/Amazonalexa.tsx +++ b/src/components/Amazonalexa.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonalexaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonalexaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazonalexa = React.forwardRef(function Amazonalexa({color = 'currentColor', size = 24, title = "amazonalexa", ...others}, ref) { - const Amazonalexa = React.forwardRef(function Amazonalexa({color = 'currentColor', size = 24, title = "amazonalexa", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazonalexa - \ No newline at end of file +export default Amazonalexa; diff --git a/src/components/Amazonapigateway.tsx b/src/components/Amazonapigateway.tsx index f0c13cb2b..f0be6a8bb 100644 --- a/src/components/Amazonapigateway.tsx +++ b/src/components/Amazonapigateway.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonapigatewayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonapigatewayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazonapigateway = React.forwardRef(function Amazonapigateway({color = 'currentColor', size = 24, title = "amazonapigateway", ...others}, ref) { - const Amazonapigateway = React.forwardRef(function Amazonapigateway({color = 'currentColor', size = 24, title = "amazonapigateway", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazonapigateway - \ No newline at end of file +export default Amazonapigateway; diff --git a/src/components/Amazonaws.tsx b/src/components/Amazonaws.tsx index 3c724dcaf..bcc815e86 100644 --- a/src/components/Amazonaws.tsx +++ b/src/components/Amazonaws.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonawsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonawsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazonaws = React.forwardRef(function Amazonaws({color = 'currentColor', size = 24, title = "amazonaws", ...others}, ref) { - const Amazonaws = React.forwardRef(function Amazonaws({color = 'currentColor', size = 24, title = "amazonaws", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazonaws - \ No newline at end of file +export default Amazonaws; diff --git a/src/components/Amazoncloudwatch.tsx b/src/components/Amazoncloudwatch.tsx index 5e72a084f..877f6cecb 100644 --- a/src/components/Amazoncloudwatch.tsx +++ b/src/components/Amazoncloudwatch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazoncloudwatchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazoncloudwatchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazoncloudwatch = React.forwardRef(function Amazoncloudwatch({color = 'currentColor', size = 24, title = "amazoncloudwatch", ...others}, ref) { - const Amazoncloudwatch = React.forwardRef(function Amazoncloudwatch({color = 'currentColor', size = 24, title = "amazoncloudwatch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazoncloudwatch - \ No newline at end of file +export default Amazoncloudwatch; diff --git a/src/components/Amazondynamodb.tsx b/src/components/Amazondynamodb.tsx index d8f77a5e3..1740decaf 100644 --- a/src/components/Amazondynamodb.tsx +++ b/src/components/Amazondynamodb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazondynamodbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazondynamodbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazondynamodb = React.forwardRef(function Amazondynamodb({color = 'currentColor', size = 24, title = "amazondynamodb", ...others}, ref) { - const Amazondynamodb = React.forwardRef(function Amazondynamodb({color = 'currentColor', size = 24, title = "amazondynamodb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazondynamodb - \ No newline at end of file +export default Amazondynamodb; diff --git a/src/components/AmazonecTwo.tsx b/src/components/AmazonecTwo.tsx index c51daaa2d..8c3d23d93 100644 --- a/src/components/AmazonecTwo.tsx +++ b/src/components/AmazonecTwo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonecTwoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonecTwoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const AmazonecTwo = React.forwardRef(function AmazonecTwo({color = 'currentColor', size = 24, title = "amazonec2", ...others}, ref) { - const AmazonecTwo = React.forwardRef(function AmazonecTwo({color = 'currentColor', size = 24, title = "amazonec2", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default AmazonecTwo - \ No newline at end of file +export default AmazonecTwo; diff --git a/src/components/Amazonecs.tsx b/src/components/Amazonecs.tsx index 3b2a4c453..25ce22770 100644 --- a/src/components/Amazonecs.tsx +++ b/src/components/Amazonecs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonecsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonecsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazonecs = React.forwardRef(function Amazonecs({color = 'currentColor', size = 24, title = "amazonecs", ...others}, ref) { - const Amazonecs = React.forwardRef(function Amazonecs({color = 'currentColor', size = 24, title = "amazonecs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazonecs - \ No newline at end of file +export default Amazonecs; diff --git a/src/components/Amazoneks.tsx b/src/components/Amazoneks.tsx index 54d1a1fa9..89afd37da 100644 --- a/src/components/Amazoneks.tsx +++ b/src/components/Amazoneks.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazoneksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazoneksProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazoneks = React.forwardRef(function Amazoneks({color = 'currentColor', size = 24, title = "amazoneks", ...others}, ref) { - const Amazoneks = React.forwardRef(function Amazoneks({color = 'currentColor', size = 24, title = "amazoneks", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazoneks - \ No newline at end of file +export default Amazoneks; diff --git a/src/components/Amazonfiretv.tsx b/src/components/Amazonfiretv.tsx index 93ebb288d..8e5a157be 100644 --- a/src/components/Amazonfiretv.tsx +++ b/src/components/Amazonfiretv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonfiretvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonfiretvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazonfiretv = React.forwardRef(function Amazonfiretv({color = 'currentColor', size = 24, title = "amazonfiretv", ...others}, ref) { - const Amazonfiretv = React.forwardRef(function Amazonfiretv({color = 'currentColor', size = 24, title = "amazonfiretv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazonfiretv - \ No newline at end of file +export default Amazonfiretv; diff --git a/src/components/Amazongames.tsx b/src/components/Amazongames.tsx new file mode 100644 index 000000000..80994ef29 --- /dev/null +++ b/src/components/Amazongames.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type AmazongamesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Amazongames = React.forwardRef(function Amazongames({color = 'currentColor', size = 24, title = "amazongames", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Amazongames; diff --git a/src/components/Amazonlumberyard.tsx b/src/components/Amazonlumberyard.tsx index d44512b10..d61ecd1c2 100644 --- a/src/components/Amazonlumberyard.tsx +++ b/src/components/Amazonlumberyard.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonlumberyardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonlumberyardProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazonlumberyard = React.forwardRef(function Amazonlumberyard({color = 'currentColor', size = 24, title = "amazonlumberyard", ...others}, ref) { - const Amazonlumberyard = React.forwardRef(function Amazonlumberyard({color = 'currentColor', size = 24, title = "amazonlumberyard", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazonlumberyard - \ No newline at end of file +export default Amazonlumberyard; diff --git a/src/components/Amazonpay.tsx b/src/components/Amazonpay.tsx index 278da7c50..5ca9b2a93 100644 --- a/src/components/Amazonpay.tsx +++ b/src/components/Amazonpay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonpayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonpayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazonpay = React.forwardRef(function Amazonpay({color = 'currentColor', size = 24, title = "amazonpay", ...others}, ref) { - const Amazonpay = React.forwardRef(function Amazonpay({color = 'currentColor', size = 24, title = "amazonpay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazonpay - \ No newline at end of file +export default Amazonpay; diff --git a/src/components/Amazonprime.tsx b/src/components/Amazonprime.tsx index c32cafaca..e3c55c8c4 100644 --- a/src/components/Amazonprime.tsx +++ b/src/components/Amazonprime.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonprimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonprimeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazonprime = React.forwardRef(function Amazonprime({color = 'currentColor', size = 24, title = "amazonprime", ...others}, ref) { - const Amazonprime = React.forwardRef(function Amazonprime({color = 'currentColor', size = 24, title = "amazonprime", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazonprime - \ No newline at end of file +export default Amazonprime; diff --git a/src/components/Amazonrds.tsx b/src/components/Amazonrds.tsx index 72d576511..4632fb2b5 100644 --- a/src/components/Amazonrds.tsx +++ b/src/components/Amazonrds.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonrdsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonrdsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazonrds = React.forwardRef(function Amazonrds({color = 'currentColor', size = 24, title = "amazonrds", ...others}, ref) { - const Amazonrds = React.forwardRef(function Amazonrds({color = 'currentColor', size = 24, title = "amazonrds", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazonrds - \ No newline at end of file +export default Amazonrds; diff --git a/src/components/AmazonsThree.tsx b/src/components/AmazonsThree.tsx index 310dacea2..42252aea1 100644 --- a/src/components/AmazonsThree.tsx +++ b/src/components/AmazonsThree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonsThreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonsThreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const AmazonsThree = React.forwardRef(function AmazonsThree({color = 'currentColor', size = 24, title = "amazons3", ...others}, ref) { - const AmazonsThree = React.forwardRef(function AmazonsThree({color = 'currentColor', size = 24, title = "amazons3", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default AmazonsThree - \ No newline at end of file +export default AmazonsThree; diff --git a/src/components/Amazonsqs.tsx b/src/components/Amazonsqs.tsx index 8c3b9cd21..bb416d341 100644 --- a/src/components/Amazonsqs.tsx +++ b/src/components/Amazonsqs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmazonsqsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmazonsqsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amazonsqs = React.forwardRef(function Amazonsqs({color = 'currentColor', size = 24, title = "amazonsqs", ...others}, ref) { - const Amazonsqs = React.forwardRef(function Amazonsqs({color = 'currentColor', size = 24, title = "amazonsqs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amazonsqs - \ No newline at end of file +export default Amazonsqs; diff --git a/src/components/Amd.tsx b/src/components/Amd.tsx index dcbc55925..7cfa128d7 100644 --- a/src/components/Amd.tsx +++ b/src/components/Amd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amd = React.forwardRef(function Amd({color = 'currentColor', size = 24, title = "amd", ...others}, ref) { - const Amd = React.forwardRef(function Amd({color = 'currentColor', size = 24, title = "amd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amd - \ No newline at end of file +export default Amd; diff --git a/src/components/Americanairlines.tsx b/src/components/Americanairlines.tsx index f4179a8d1..f1565a1e3 100644 --- a/src/components/Americanairlines.tsx +++ b/src/components/Americanairlines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmericanairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmericanairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Americanairlines = React.forwardRef(function Americanairlines({color = 'currentColor', size = 24, title = "americanairlines", ...others}, ref) { - const Americanairlines = React.forwardRef(function Americanairlines({color = 'currentColor', size = 24, title = "americanairlines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Americanairlines - \ No newline at end of file +export default Americanairlines; diff --git a/src/components/Americanexpress.tsx b/src/components/Americanexpress.tsx index e345c13bc..70a458ca5 100644 --- a/src/components/Americanexpress.tsx +++ b/src/components/Americanexpress.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmericanexpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmericanexpressProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Americanexpress = React.forwardRef(function Americanexpress({color = 'currentColor', size = 24, title = "americanexpress", ...others}, ref) { - const Americanexpress = React.forwardRef(function Americanexpress({color = 'currentColor', size = 24, title = "americanexpress", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Americanexpress - \ No newline at end of file +export default Americanexpress; diff --git a/src/components/Amg.tsx b/src/components/Amg.tsx index 70c3408dc..50f78aabc 100644 --- a/src/components/Amg.tsx +++ b/src/components/Amg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmgProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amg = React.forwardRef(function Amg({color = 'currentColor', size = 24, title = "amg", ...others}, ref) { - const Amg = React.forwardRef(function Amg({color = 'currentColor', size = 24, title = "amg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amg - \ No newline at end of file +export default Amg; diff --git a/src/components/Amp.tsx b/src/components/Amp.tsx index b26825d19..cefc79c3c 100644 --- a/src/components/Amp.tsx +++ b/src/components/Amp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amp = React.forwardRef(function Amp({color = 'currentColor', size = 24, title = "amp", ...others}, ref) { - const Amp = React.forwardRef(function Amp({color = 'currentColor', size = 24, title = "amp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amp - \ No newline at end of file +export default Amp; diff --git a/src/components/Amul.tsx b/src/components/Amul.tsx index 04b93a6bc..e4f670731 100644 --- a/src/components/Amul.tsx +++ b/src/components/Amul.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AmulProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AmulProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Amul = React.forwardRef(function Amul({color = 'currentColor', size = 24, title = "amul", ...others}, ref) { - const Amul = React.forwardRef(function Amul({color = 'currentColor', size = 24, title = "amul", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Amul - \ No newline at end of file +export default Amul; diff --git a/src/components/Ana.tsx b/src/components/Ana.tsx index d7e823264..5a8e3d227 100644 --- a/src/components/Ana.tsx +++ b/src/components/Ana.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AnaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AnaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ana = React.forwardRef(function Ana({color = 'currentColor', size = 24, title = "ana", ...others}, ref) { - const Ana = React.forwardRef(function Ana({color = 'currentColor', size = 24, title = "ana", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ana - \ No newline at end of file +export default Ana; diff --git a/src/components/Anaconda.tsx b/src/components/Anaconda.tsx index e693c1c5a..a4a90d937 100644 --- a/src/components/Anaconda.tsx +++ b/src/components/Anaconda.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AnacondaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AnacondaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Anaconda = React.forwardRef(function Anaconda({color = 'currentColor', size = 24, title = "anaconda", ...others}, ref) { - const Anaconda = React.forwardRef(function Anaconda({color = 'currentColor', size = 24, title = "anaconda", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Anaconda - \ No newline at end of file +export default Anaconda; diff --git a/src/components/Analogue.tsx b/src/components/Analogue.tsx index 3bcfa10f8..d5aa71207 100644 --- a/src/components/Analogue.tsx +++ b/src/components/Analogue.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AnalogueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AnalogueProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Analogue = React.forwardRef(function Analogue({color = 'currentColor', size = 24, title = "analogue", ...others}, ref) { - const Analogue = React.forwardRef(function Analogue({color = 'currentColor', size = 24, title = "analogue", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Analogue - \ No newline at end of file +export default Analogue; diff --git a/src/components/Anchor.tsx b/src/components/Anchor.tsx index eb10e581a..0b48a63c6 100644 --- a/src/components/Anchor.tsx +++ b/src/components/Anchor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AnchorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AnchorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Anchor = React.forwardRef(function Anchor({color = 'currentColor', size = 24, title = "anchor", ...others}, ref) { - const Anchor = React.forwardRef(function Anchor({color = 'currentColor', size = 24, title = "anchor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Anchor - \ No newline at end of file +export default Anchor; diff --git a/src/components/Andela.tsx b/src/components/Andela.tsx index 48e46c675..ceb5ae096 100644 --- a/src/components/Andela.tsx +++ b/src/components/Andela.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AndelaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AndelaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Andela = React.forwardRef(function Andela({color = 'currentColor', size = 24, title = "andela", ...others}, ref) { - const Andela = React.forwardRef(function Andela({color = 'currentColor', size = 24, title = "andela", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Andela - \ No newline at end of file +export default Andela; diff --git a/src/components/Android.tsx b/src/components/Android.tsx index 6b5b93a6e..86710f128 100644 --- a/src/components/Android.tsx +++ b/src/components/Android.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AndroidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AndroidProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Android = React.forwardRef(function Android({color = 'currentColor', size = 24, title = "android", ...others}, ref) { - const Android = React.forwardRef(function Android({color = 'currentColor', size = 24, title = "android", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Android - \ No newline at end of file +export default Android; diff --git a/src/components/Androidauto.tsx b/src/components/Androidauto.tsx index 049449ba0..d44633332 100644 --- a/src/components/Androidauto.tsx +++ b/src/components/Androidauto.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AndroidautoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AndroidautoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Androidauto = React.forwardRef(function Androidauto({color = 'currentColor', size = 24, title = "androidauto", ...others}, ref) { - const Androidauto = React.forwardRef(function Androidauto({color = 'currentColor', size = 24, title = "androidauto", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Androidauto - \ No newline at end of file +export default Androidauto; diff --git a/src/components/Androidstudio.tsx b/src/components/Androidstudio.tsx index 46a99cdaf..20dd2839d 100644 --- a/src/components/Androidstudio.tsx +++ b/src/components/Androidstudio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AndroidstudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AndroidstudioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Androidstudio = React.forwardRef(function Androidstudio({color = 'currentColor', size = 24, title = "androidstudio", ...others}, ref) { - const Androidstudio = React.forwardRef(function Androidstudio({color = 'currentColor', size = 24, title = "androidstudio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Androidstudio - \ No newline at end of file +export default Androidstudio; diff --git a/src/components/Angellist.tsx b/src/components/Angellist.tsx index 7beb56038..abdc1fd19 100644 --- a/src/components/Angellist.tsx +++ b/src/components/Angellist.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AngellistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AngellistProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Angellist = React.forwardRef(function Angellist({color = 'currentColor', size = 24, title = "angellist", ...others}, ref) { - const Angellist = React.forwardRef(function Angellist({color = 'currentColor', size = 24, title = "angellist", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Angellist - \ No newline at end of file +export default Angellist; diff --git a/src/components/Angular.tsx b/src/components/Angular.tsx index a056908a6..d7a0ec37c 100644 --- a/src/components/Angular.tsx +++ b/src/components/Angular.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AngularProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AngularProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Angular = React.forwardRef(function Angular({color = 'currentColor', size = 24, title = "angular", ...others}, ref) { - const Angular = React.forwardRef(function Angular({color = 'currentColor', size = 24, title = "angular", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Angular - \ No newline at end of file +export default Angular; diff --git a/src/components/Angularjs.tsx b/src/components/Angularjs.tsx index 68acd185f..cfb2e89d9 100644 --- a/src/components/Angularjs.tsx +++ b/src/components/Angularjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AngularjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AngularjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Angularjs = React.forwardRef(function Angularjs({color = 'currentColor', size = 24, title = "angularjs", ...others}, ref) { - const Angularjs = React.forwardRef(function Angularjs({color = 'currentColor', size = 24, title = "angularjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Angularjs - \ No newline at end of file +export default Angularjs; diff --git a/src/components/Angularuniversal.tsx b/src/components/Angularuniversal.tsx index 5e18bd345..7f9a0cd86 100644 --- a/src/components/Angularuniversal.tsx +++ b/src/components/Angularuniversal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AngularuniversalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AngularuniversalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Angularuniversal = React.forwardRef(function Angularuniversal({color = 'currentColor', size = 24, title = "angularuniversal", ...others}, ref) { - const Angularuniversal = React.forwardRef(function Angularuniversal({color = 'currentColor', size = 24, title = "angularuniversal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Angularuniversal - \ No newline at end of file +export default Angularuniversal; diff --git a/src/components/Anilist.tsx b/src/components/Anilist.tsx index 3a95cea78..fa4210fca 100644 --- a/src/components/Anilist.tsx +++ b/src/components/Anilist.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AnilistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AnilistProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Anilist = React.forwardRef(function Anilist({color = 'currentColor', size = 24, title = "anilist", ...others}, ref) { - const Anilist = React.forwardRef(function Anilist({color = 'currentColor', size = 24, title = "anilist", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Anilist - \ No newline at end of file +export default Anilist; diff --git a/src/components/Ansible.tsx b/src/components/Ansible.tsx index 9197be572..7bfd5a5a1 100644 --- a/src/components/Ansible.tsx +++ b/src/components/Ansible.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AnsibleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AnsibleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ansible = React.forwardRef(function Ansible({color = 'currentColor', size = 24, title = "ansible", ...others}, ref) { - const Ansible = React.forwardRef(function Ansible({color = 'currentColor', size = 24, title = "ansible", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ansible - \ No newline at end of file +export default Ansible; diff --git a/src/components/Ansys.tsx b/src/components/Ansys.tsx index 8326ab54f..847e0fb60 100644 --- a/src/components/Ansys.tsx +++ b/src/components/Ansys.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AnsysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AnsysProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ansys = React.forwardRef(function Ansys({color = 'currentColor', size = 24, title = "ansys", ...others}, ref) { - const Ansys = React.forwardRef(function Ansys({color = 'currentColor', size = 24, title = "ansys", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ansys - \ No newline at end of file +export default Ansys; diff --git a/src/components/Anta.tsx b/src/components/Anta.tsx index 123a16b19..840e68933 100644 --- a/src/components/Anta.tsx +++ b/src/components/Anta.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AntaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AntaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Anta = React.forwardRef(function Anta({color = 'currentColor', size = 24, title = "anta", ...others}, ref) { - const Anta = React.forwardRef(function Anta({color = 'currentColor', size = 24, title = "anta", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Anta - \ No newline at end of file +export default Anta; diff --git a/src/components/Antdesign.tsx b/src/components/Antdesign.tsx index 62f64075f..c9e3016e9 100644 --- a/src/components/Antdesign.tsx +++ b/src/components/Antdesign.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AntdesignProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AntdesignProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Antdesign = React.forwardRef(function Antdesign({color = 'currentColor', size = 24, title = "antdesign", ...others}, ref) { - const Antdesign = React.forwardRef(function Antdesign({color = 'currentColor', size = 24, title = "antdesign", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Antdesign - \ No newline at end of file +export default Antdesign; diff --git a/src/components/AntenaThree.tsx b/src/components/AntenaThree.tsx index 5ad8e2b75..097a379c4 100644 --- a/src/components/AntenaThree.tsx +++ b/src/components/AntenaThree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AntenaThreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AntenaThreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const AntenaThree = React.forwardRef(function AntenaThree({color = 'currentColor', size = 24, title = "antena3", ...others}, ref) { - const AntenaThree = React.forwardRef(function AntenaThree({color = 'currentColor', size = 24, title = "antena3", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default AntenaThree - \ No newline at end of file +export default AntenaThree; diff --git a/src/components/Anydesk.tsx b/src/components/Anydesk.tsx index c5a5afd00..dd5a96136 100644 --- a/src/components/Anydesk.tsx +++ b/src/components/Anydesk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AnydeskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AnydeskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Anydesk = React.forwardRef(function Anydesk({color = 'currentColor', size = 24, title = "anydesk", ...others}, ref) { - const Anydesk = React.forwardRef(function Anydesk({color = 'currentColor', size = 24, title = "anydesk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Anydesk - \ No newline at end of file +export default Anydesk; diff --git a/src/components/Aol.tsx b/src/components/Aol.tsx index 3a1e53ca6..dd8cfd4ca 100644 --- a/src/components/Aol.tsx +++ b/src/components/Aol.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AolProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aol = React.forwardRef(function Aol({color = 'currentColor', size = 24, title = "aol", ...others}, ref) { - const Aol = React.forwardRef(function Aol({color = 'currentColor', size = 24, title = "aol", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aol - \ No newline at end of file +export default Aol; diff --git a/src/components/Apache.tsx b/src/components/Apache.tsx index f64060529..46de6e87e 100644 --- a/src/components/Apache.tsx +++ b/src/components/Apache.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApacheProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApacheProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apache = React.forwardRef(function Apache({color = 'currentColor', size = 24, title = "apache", ...others}, ref) { - const Apache = React.forwardRef(function Apache({color = 'currentColor', size = 24, title = "apache", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apache - \ No newline at end of file +export default Apache; diff --git a/src/components/Apacheairflow.tsx b/src/components/Apacheairflow.tsx index 6236796af..876ac3e10 100644 --- a/src/components/Apacheairflow.tsx +++ b/src/components/Apacheairflow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApacheairflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApacheairflowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apacheairflow = React.forwardRef(function Apacheairflow({color = 'currentColor', size = 24, title = "apacheairflow", ...others}, ref) { - const Apacheairflow = React.forwardRef(function Apacheairflow({color = 'currentColor', size = 24, title = "apacheairflow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apacheairflow - \ No newline at end of file +export default Apacheairflow; diff --git a/src/components/Apacheant.tsx b/src/components/Apacheant.tsx index 231e1e10b..9d029e13c 100644 --- a/src/components/Apacheant.tsx +++ b/src/components/Apacheant.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApacheantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApacheantProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apacheant = React.forwardRef(function Apacheant({color = 'currentColor', size = 24, title = "apacheant", ...others}, ref) { - const Apacheant = React.forwardRef(function Apacheant({color = 'currentColor', size = 24, title = "apacheant", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apacheant - \ No newline at end of file +export default Apacheant; diff --git a/src/components/Apachecassandra.tsx b/src/components/Apachecassandra.tsx index cc65db639..7cb905b5a 100644 --- a/src/components/Apachecassandra.tsx +++ b/src/components/Apachecassandra.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachecassandraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachecassandraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachecassandra = React.forwardRef(function Apachecassandra({color = 'currentColor', size = 24, title = "apachecassandra", ...others}, ref) { - const Apachecassandra = React.forwardRef(function Apachecassandra({color = 'currentColor', size = 24, title = "apachecassandra", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachecassandra - \ No newline at end of file +export default Apachecassandra; diff --git a/src/components/Apachecloudstack.tsx b/src/components/Apachecloudstack.tsx index b7a53b47b..33711b375 100644 --- a/src/components/Apachecloudstack.tsx +++ b/src/components/Apachecloudstack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachecloudstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachecloudstackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachecloudstack = React.forwardRef(function Apachecloudstack({color = 'currentColor', size = 24, title = "apachecloudstack", ...others}, ref) { - const Apachecloudstack = React.forwardRef(function Apachecloudstack({color = 'currentColor', size = 24, title = "apachecloudstack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachecloudstack - \ No newline at end of file +export default Apachecloudstack; diff --git a/src/components/Apachecordova.tsx b/src/components/Apachecordova.tsx index 1d595a6d9..7a6f97d2d 100644 --- a/src/components/Apachecordova.tsx +++ b/src/components/Apachecordova.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachecordovaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachecordovaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachecordova = React.forwardRef(function Apachecordova({color = 'currentColor', size = 24, title = "apachecordova", ...others}, ref) { - const Apachecordova = React.forwardRef(function Apachecordova({color = 'currentColor', size = 24, title = "apachecordova", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachecordova - \ No newline at end of file +export default Apachecordova; diff --git a/src/components/Apachecouchdb.tsx b/src/components/Apachecouchdb.tsx index d2cdb8497..315234bff 100644 --- a/src/components/Apachecouchdb.tsx +++ b/src/components/Apachecouchdb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachecouchdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachecouchdbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachecouchdb = React.forwardRef(function Apachecouchdb({color = 'currentColor', size = 24, title = "apachecouchdb", ...others}, ref) { - const Apachecouchdb = React.forwardRef(function Apachecouchdb({color = 'currentColor', size = 24, title = "apachecouchdb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachecouchdb - \ No newline at end of file +export default Apachecouchdb; diff --git a/src/components/Apachedruid.tsx b/src/components/Apachedruid.tsx index 88782aa85..d47a981fd 100644 --- a/src/components/Apachedruid.tsx +++ b/src/components/Apachedruid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachedruidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachedruidProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachedruid = React.forwardRef(function Apachedruid({color = 'currentColor', size = 24, title = "apachedruid", ...others}, ref) { - const Apachedruid = React.forwardRef(function Apachedruid({color = 'currentColor', size = 24, title = "apachedruid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachedruid - \ No newline at end of file +export default Apachedruid; diff --git a/src/components/Apacheecharts.tsx b/src/components/Apacheecharts.tsx index 4f5a83290..53c3c0e2c 100644 --- a/src/components/Apacheecharts.tsx +++ b/src/components/Apacheecharts.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApacheechartsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApacheechartsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apacheecharts = React.forwardRef(function Apacheecharts({color = 'currentColor', size = 24, title = "apacheecharts", ...others}, ref) { - const Apacheecharts = React.forwardRef(function Apacheecharts({color = 'currentColor', size = 24, title = "apacheecharts", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apacheecharts - \ No newline at end of file +export default Apacheecharts; diff --git a/src/components/Apacheflink.tsx b/src/components/Apacheflink.tsx index 758274fb3..8031802eb 100644 --- a/src/components/Apacheflink.tsx +++ b/src/components/Apacheflink.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApacheflinkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApacheflinkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apacheflink = React.forwardRef(function Apacheflink({color = 'currentColor', size = 24, title = "apacheflink", ...others}, ref) { - const Apacheflink = React.forwardRef(function Apacheflink({color = 'currentColor', size = 24, title = "apacheflink", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apacheflink - \ No newline at end of file +export default Apacheflink; diff --git a/src/components/Apachegroovy.tsx b/src/components/Apachegroovy.tsx index f35f4c9b0..a1d3a6bed 100644 --- a/src/components/Apachegroovy.tsx +++ b/src/components/Apachegroovy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachegroovyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachegroovyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachegroovy = React.forwardRef(function Apachegroovy({color = 'currentColor', size = 24, title = "apachegroovy", ...others}, ref) { - const Apachegroovy = React.forwardRef(function Apachegroovy({color = 'currentColor', size = 24, title = "apachegroovy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachegroovy - \ No newline at end of file +export default Apachegroovy; diff --git a/src/components/Apachehadoop.tsx b/src/components/Apachehadoop.tsx index 366938bd5..7b48ba8b5 100644 --- a/src/components/Apachehadoop.tsx +++ b/src/components/Apachehadoop.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachehadoopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachehadoopProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachehadoop = React.forwardRef(function Apachehadoop({color = 'currentColor', size = 24, title = "apachehadoop", ...others}, ref) { - const Apachehadoop = React.forwardRef(function Apachehadoop({color = 'currentColor', size = 24, title = "apachehadoop", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachehadoop - \ No newline at end of file +export default Apachehadoop; diff --git a/src/components/Apachehive.tsx b/src/components/Apachehive.tsx index c91c996b1..f913e733c 100644 --- a/src/components/Apachehive.tsx +++ b/src/components/Apachehive.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachehiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachehiveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachehive = React.forwardRef(function Apachehive({color = 'currentColor', size = 24, title = "apachehive", ...others}, ref) { - const Apachehive = React.forwardRef(function Apachehive({color = 'currentColor', size = 24, title = "apachehive", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachehive - \ No newline at end of file +export default Apachehive; diff --git a/src/components/Apachejmeter.tsx b/src/components/Apachejmeter.tsx index 6b02877fe..9c68dfc71 100644 --- a/src/components/Apachejmeter.tsx +++ b/src/components/Apachejmeter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachejmeterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachejmeterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachejmeter = React.forwardRef(function Apachejmeter({color = 'currentColor', size = 24, title = "apachejmeter", ...others}, ref) { - const Apachejmeter = React.forwardRef(function Apachejmeter({color = 'currentColor', size = 24, title = "apachejmeter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachejmeter - \ No newline at end of file +export default Apachejmeter; diff --git a/src/components/Apachekafka.tsx b/src/components/Apachekafka.tsx index c35f4e610..038c5cd6c 100644 --- a/src/components/Apachekafka.tsx +++ b/src/components/Apachekafka.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachekafkaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachekafkaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachekafka = React.forwardRef(function Apachekafka({color = 'currentColor', size = 24, title = "apachekafka", ...others}, ref) { - const Apachekafka = React.forwardRef(function Apachekafka({color = 'currentColor', size = 24, title = "apachekafka", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachekafka - \ No newline at end of file +export default Apachekafka; diff --git a/src/components/Apachekylin.tsx b/src/components/Apachekylin.tsx index 9a3e911c1..264079685 100644 --- a/src/components/Apachekylin.tsx +++ b/src/components/Apachekylin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachekylinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachekylinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachekylin = React.forwardRef(function Apachekylin({color = 'currentColor', size = 24, title = "apachekylin", ...others}, ref) { - const Apachekylin = React.forwardRef(function Apachekylin({color = 'currentColor', size = 24, title = "apachekylin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachekylin - \ No newline at end of file +export default Apachekylin; diff --git a/src/components/Apachemaven.tsx b/src/components/Apachemaven.tsx index 892bb2066..9bbf4f554 100644 --- a/src/components/Apachemaven.tsx +++ b/src/components/Apachemaven.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachemavenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachemavenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachemaven = React.forwardRef(function Apachemaven({color = 'currentColor', size = 24, title = "apachemaven", ...others}, ref) { - const Apachemaven = React.forwardRef(function Apachemaven({color = 'currentColor', size = 24, title = "apachemaven", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachemaven - \ No newline at end of file +export default Apachemaven; diff --git a/src/components/Apachenetbeanside.tsx b/src/components/Apachenetbeanside.tsx index 1992a28d8..e0dd7e621 100644 --- a/src/components/Apachenetbeanside.tsx +++ b/src/components/Apachenetbeanside.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachenetbeansideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachenetbeansideProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachenetbeanside = React.forwardRef(function Apachenetbeanside({color = 'currentColor', size = 24, title = "apachenetbeanside", ...others}, ref) { - const Apachenetbeanside = React.forwardRef(function Apachenetbeanside({color = 'currentColor', size = 24, title = "apachenetbeanside", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachenetbeanside - \ No newline at end of file +export default Apachenetbeanside; diff --git a/src/components/Apacheopenoffice.tsx b/src/components/Apacheopenoffice.tsx index d2b4fe0d5..593f94b8a 100644 --- a/src/components/Apacheopenoffice.tsx +++ b/src/components/Apacheopenoffice.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApacheopenofficeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApacheopenofficeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apacheopenoffice = React.forwardRef(function Apacheopenoffice({color = 'currentColor', size = 24, title = "apacheopenoffice", ...others}, ref) { - const Apacheopenoffice = React.forwardRef(function Apacheopenoffice({color = 'currentColor', size = 24, title = "apacheopenoffice", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apacheopenoffice - \ No newline at end of file +export default Apacheopenoffice; diff --git a/src/components/Apachepulsar.tsx b/src/components/Apachepulsar.tsx index b5b989946..3805a433a 100644 --- a/src/components/Apachepulsar.tsx +++ b/src/components/Apachepulsar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachepulsarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachepulsarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachepulsar = React.forwardRef(function Apachepulsar({color = 'currentColor', size = 24, title = "apachepulsar", ...others}, ref) { - const Apachepulsar = React.forwardRef(function Apachepulsar({color = 'currentColor', size = 24, title = "apachepulsar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachepulsar - \ No newline at end of file +export default Apachepulsar; diff --git a/src/components/Apacherocketmq.tsx b/src/components/Apacherocketmq.tsx index dcd3dbd94..d54724ece 100644 --- a/src/components/Apacherocketmq.tsx +++ b/src/components/Apacherocketmq.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApacherocketmqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApacherocketmqProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apacherocketmq = React.forwardRef(function Apacherocketmq({color = 'currentColor', size = 24, title = "apacherocketmq", ...others}, ref) { - const Apacherocketmq = React.forwardRef(function Apacherocketmq({color = 'currentColor', size = 24, title = "apacherocketmq", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apacherocketmq - \ No newline at end of file +export default Apacherocketmq; diff --git a/src/components/Apachesolr.tsx b/src/components/Apachesolr.tsx index 6a75398e7..d1b588808 100644 --- a/src/components/Apachesolr.tsx +++ b/src/components/Apachesolr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachesolrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachesolrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachesolr = React.forwardRef(function Apachesolr({color = 'currentColor', size = 24, title = "apachesolr", ...others}, ref) { - const Apachesolr = React.forwardRef(function Apachesolr({color = 'currentColor', size = 24, title = "apachesolr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachesolr - \ No newline at end of file +export default Apachesolr; diff --git a/src/components/Apachespark.tsx b/src/components/Apachespark.tsx index e618b1258..fddb10280 100644 --- a/src/components/Apachespark.tsx +++ b/src/components/Apachespark.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachesparkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachesparkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachespark = React.forwardRef(function Apachespark({color = 'currentColor', size = 24, title = "apachespark", ...others}, ref) { - const Apachespark = React.forwardRef(function Apachespark({color = 'currentColor', size = 24, title = "apachespark", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachespark - \ No newline at end of file +export default Apachespark; diff --git a/src/components/Apachetomcat.tsx b/src/components/Apachetomcat.tsx index 7f0701e3a..3dfbc86cd 100644 --- a/src/components/Apachetomcat.tsx +++ b/src/components/Apachetomcat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApachetomcatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApachetomcatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apachetomcat = React.forwardRef(function Apachetomcat({color = 'currentColor', size = 24, title = "apachetomcat", ...others}, ref) { - const Apachetomcat = React.forwardRef(function Apachetomcat({color = 'currentColor', size = 24, title = "apachetomcat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apachetomcat - \ No newline at end of file +export default Apachetomcat; diff --git a/src/components/Aparat.tsx b/src/components/Aparat.tsx index 58d4474ed..dd37ae8f4 100644 --- a/src/components/Aparat.tsx +++ b/src/components/Aparat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AparatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AparatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aparat = React.forwardRef(function Aparat({color = 'currentColor', size = 24, title = "aparat", ...others}, ref) { - const Aparat = React.forwardRef(function Aparat({color = 'currentColor', size = 24, title = "aparat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aparat - \ No newline at end of file +export default Aparat; diff --git a/src/components/Apollographql.tsx b/src/components/Apollographql.tsx index 47338f39b..3247904cb 100644 --- a/src/components/Apollographql.tsx +++ b/src/components/Apollographql.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApollographqlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApollographqlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apollographql = React.forwardRef(function Apollographql({color = 'currentColor', size = 24, title = "apollographql", ...others}, ref) { - const Apollographql = React.forwardRef(function Apollographql({color = 'currentColor', size = 24, title = "apollographql", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apollographql - \ No newline at end of file +export default Apollographql; diff --git a/src/components/Apostrophe.tsx b/src/components/Apostrophe.tsx index 55941cdbd..59b47fe6f 100644 --- a/src/components/Apostrophe.tsx +++ b/src/components/Apostrophe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApostropheProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApostropheProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apostrophe = React.forwardRef(function Apostrophe({color = 'currentColor', size = 24, title = "apostrophe", ...others}, ref) { - const Apostrophe = React.forwardRef(function Apostrophe({color = 'currentColor', size = 24, title = "apostrophe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apostrophe - \ No newline at end of file +export default Apostrophe; diff --git a/src/components/Appannie.tsx b/src/components/Appannie.tsx index cb2b0ffa9..0dc0492a8 100644 --- a/src/components/Appannie.tsx +++ b/src/components/Appannie.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AppannieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AppannieProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Appannie = React.forwardRef(function Appannie({color = 'currentColor', size = 24, title = "appannie", ...others}, ref) { - const Appannie = React.forwardRef(function Appannie({color = 'currentColor', size = 24, title = "appannie", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Appannie - \ No newline at end of file +export default Appannie; diff --git a/src/components/Appian.tsx b/src/components/Appian.tsx index d96573d7d..0c2d95f69 100644 --- a/src/components/Appian.tsx +++ b/src/components/Appian.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AppianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AppianProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Appian = React.forwardRef(function Appian({color = 'currentColor', size = 24, title = "appian", ...others}, ref) { - const Appian = React.forwardRef(function Appian({color = 'currentColor', size = 24, title = "appian", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Appian - \ No newline at end of file +export default Appian; diff --git a/src/components/Apple.tsx b/src/components/Apple.tsx index e4df66c33..9b6506b5a 100644 --- a/src/components/Apple.tsx +++ b/src/components/Apple.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AppleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AppleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Apple = React.forwardRef(function Apple({color = 'currentColor', size = 24, title = "apple", ...others}, ref) { - const Apple = React.forwardRef(function Apple({color = 'currentColor', size = 24, title = "apple", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Apple - \ No newline at end of file +export default Apple; diff --git a/src/components/Applearcade.tsx b/src/components/Applearcade.tsx index ac57aba6e..a15a3bc63 100644 --- a/src/components/Applearcade.tsx +++ b/src/components/Applearcade.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApplearcadeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApplearcadeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Applearcade = React.forwardRef(function Applearcade({color = 'currentColor', size = 24, title = "applearcade", ...others}, ref) { - const Applearcade = React.forwardRef(function Applearcade({color = 'currentColor', size = 24, title = "applearcade", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Applearcade - \ No newline at end of file +export default Applearcade; diff --git a/src/components/Applemusic.tsx b/src/components/Applemusic.tsx index 91663d650..179eaef0e 100644 --- a/src/components/Applemusic.tsx +++ b/src/components/Applemusic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApplemusicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApplemusicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Applemusic = React.forwardRef(function Applemusic({color = 'currentColor', size = 24, title = "applemusic", ...others}, ref) { - const Applemusic = React.forwardRef(function Applemusic({color = 'currentColor', size = 24, title = "applemusic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Applemusic - \ No newline at end of file +export default Applemusic; diff --git a/src/components/Applenews.tsx b/src/components/Applenews.tsx new file mode 100644 index 000000000..6b7d3c6d5 --- /dev/null +++ b/src/components/Applenews.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type ApplenewsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Applenews = React.forwardRef(function Applenews({color = 'currentColor', size = 24, title = "applenews", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Applenews; diff --git a/src/components/Applepay.tsx b/src/components/Applepay.tsx index 60c2da088..5a9f1bc77 100644 --- a/src/components/Applepay.tsx +++ b/src/components/Applepay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApplepayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApplepayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Applepay = React.forwardRef(function Applepay({color = 'currentColor', size = 24, title = "applepay", ...others}, ref) { - const Applepay = React.forwardRef(function Applepay({color = 'currentColor', size = 24, title = "applepay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Applepay - \ No newline at end of file +export default Applepay; diff --git a/src/components/Applepodcasts.tsx b/src/components/Applepodcasts.tsx index 2ff1e2b26..777dd59b3 100644 --- a/src/components/Applepodcasts.tsx +++ b/src/components/Applepodcasts.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ApplepodcastsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ApplepodcastsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Applepodcasts = React.forwardRef(function Applepodcasts({color = 'currentColor', size = 24, title = "applepodcasts", ...others}, ref) { - const Applepodcasts = React.forwardRef(function Applepodcasts({color = 'currentColor', size = 24, title = "applepodcasts", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Applepodcasts - \ No newline at end of file +export default Applepodcasts; diff --git a/src/components/Appletv.tsx b/src/components/Appletv.tsx index e99e94433..4e3940a88 100644 --- a/src/components/Appletv.tsx +++ b/src/components/Appletv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AppletvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AppletvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Appletv = React.forwardRef(function Appletv({color = 'currentColor', size = 24, title = "appletv", ...others}, ref) { - const Appletv = React.forwardRef(function Appletv({color = 'currentColor', size = 24, title = "appletv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Appletv - \ No newline at end of file +export default Appletv; diff --git a/src/components/Appsignal.tsx b/src/components/Appsignal.tsx index e42f2eed2..dd7061cb0 100644 --- a/src/components/Appsignal.tsx +++ b/src/components/Appsignal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AppsignalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AppsignalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Appsignal = React.forwardRef(function Appsignal({color = 'currentColor', size = 24, title = "appsignal", ...others}, ref) { - const Appsignal = React.forwardRef(function Appsignal({color = 'currentColor', size = 24, title = "appsignal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Appsignal - \ No newline at end of file +export default Appsignal; diff --git a/src/components/Appstore.tsx b/src/components/Appstore.tsx index d2bb25cac..803eb1f02 100644 --- a/src/components/Appstore.tsx +++ b/src/components/Appstore.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AppstoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AppstoreProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Appstore = React.forwardRef(function Appstore({color = 'currentColor', size = 24, title = "appstore", ...others}, ref) { - const Appstore = React.forwardRef(function Appstore({color = 'currentColor', size = 24, title = "appstore", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Appstore - \ No newline at end of file +export default Appstore; diff --git a/src/components/Appveyor.tsx b/src/components/Appveyor.tsx index b895b7c0a..f92294557 100644 --- a/src/components/Appveyor.tsx +++ b/src/components/Appveyor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AppveyorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AppveyorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Appveyor = React.forwardRef(function Appveyor({color = 'currentColor', size = 24, title = "appveyor", ...others}, ref) { - const Appveyor = React.forwardRef(function Appveyor({color = 'currentColor', size = 24, title = "appveyor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Appveyor - \ No newline at end of file +export default Appveyor; diff --git a/src/components/Appwrite.tsx b/src/components/Appwrite.tsx index caf36749b..89e5d0ede 100644 --- a/src/components/Appwrite.tsx +++ b/src/components/Appwrite.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AppwriteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AppwriteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Appwrite = React.forwardRef(function Appwrite({color = 'currentColor', size = 24, title = "appwrite", ...others}, ref) { - const Appwrite = React.forwardRef(function Appwrite({color = 'currentColor', size = 24, title = "appwrite", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Appwrite - \ No newline at end of file +export default Appwrite; diff --git a/src/components/Aqua.tsx b/src/components/Aqua.tsx index a602d27d0..e6cf375c6 100644 --- a/src/components/Aqua.tsx +++ b/src/components/Aqua.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AquaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AquaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aqua = React.forwardRef(function Aqua({color = 'currentColor', size = 24, title = "aqua", ...others}, ref) { - const Aqua = React.forwardRef(function Aqua({color = 'currentColor', size = 24, title = "aqua", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aqua - \ No newline at end of file +export default Aqua; diff --git a/src/components/Aral.tsx b/src/components/Aral.tsx index 44386712d..5ef654320 100644 --- a/src/components/Aral.tsx +++ b/src/components/Aral.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AralProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AralProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aral = React.forwardRef(function Aral({color = 'currentColor', size = 24, title = "aral", ...others}, ref) { - const Aral = React.forwardRef(function Aral({color = 'currentColor', size = 24, title = "aral", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aral - \ No newline at end of file +export default Aral; diff --git a/src/components/Arangodb.tsx b/src/components/Arangodb.tsx index 549488fff..dc81efbf6 100644 --- a/src/components/Arangodb.tsx +++ b/src/components/Arangodb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArangodbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArangodbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Arangodb = React.forwardRef(function Arangodb({color = 'currentColor', size = 24, title = "arangodb", ...others}, ref) { - const Arangodb = React.forwardRef(function Arangodb({color = 'currentColor', size = 24, title = "arangodb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Arangodb - \ No newline at end of file +export default Arangodb; diff --git a/src/components/Archicad.tsx b/src/components/Archicad.tsx index 7a2fc4563..8ac67f745 100644 --- a/src/components/Archicad.tsx +++ b/src/components/Archicad.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArchicadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArchicadProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Archicad = React.forwardRef(function Archicad({color = 'currentColor', size = 24, title = "archicad", ...others}, ref) { - const Archicad = React.forwardRef(function Archicad({color = 'currentColor', size = 24, title = "archicad", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Archicad - \ No newline at end of file +export default Archicad; diff --git a/src/components/Archiveofourown.tsx b/src/components/Archiveofourown.tsx index ccf3acad0..9b6793fc3 100644 --- a/src/components/Archiveofourown.tsx +++ b/src/components/Archiveofourown.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArchiveofourownProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArchiveofourownProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Archiveofourown = React.forwardRef(function Archiveofourown({color = 'currentColor', size = 24, title = "archiveofourown", ...others}, ref) { - const Archiveofourown = React.forwardRef(function Archiveofourown({color = 'currentColor', size = 24, title = "archiveofourown", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Archiveofourown - \ No newline at end of file +export default Archiveofourown; diff --git a/src/components/Archlinux.tsx b/src/components/Archlinux.tsx index b8f7db71a..4941b7460 100644 --- a/src/components/Archlinux.tsx +++ b/src/components/Archlinux.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArchlinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArchlinuxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Archlinux = React.forwardRef(function Archlinux({color = 'currentColor', size = 24, title = "archlinux", ...others}, ref) { - const Archlinux = React.forwardRef(function Archlinux({color = 'currentColor', size = 24, title = "archlinux", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Archlinux - \ No newline at end of file +export default Archlinux; diff --git a/src/components/Ardour.tsx b/src/components/Ardour.tsx index e508cf9c6..33bfc974b 100644 --- a/src/components/Ardour.tsx +++ b/src/components/Ardour.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArdourProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArdourProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ardour = React.forwardRef(function Ardour({color = 'currentColor', size = 24, title = "ardour", ...others}, ref) { - const Ardour = React.forwardRef(function Ardour({color = 'currentColor', size = 24, title = "ardour", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ardour - \ No newline at end of file +export default Ardour; diff --git a/src/components/Arduino.tsx b/src/components/Arduino.tsx index eb871cde2..6959e8ab0 100644 --- a/src/components/Arduino.tsx +++ b/src/components/Arduino.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArduinoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArduinoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Arduino = React.forwardRef(function Arduino({color = 'currentColor', size = 24, title = "arduino", ...others}, ref) { - const Arduino = React.forwardRef(function Arduino({color = 'currentColor', size = 24, title = "arduino", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Arduino - \ No newline at end of file +export default Arduino; diff --git a/src/components/Argo.tsx b/src/components/Argo.tsx index d2a0f1565..c5d99bbe9 100644 --- a/src/components/Argo.tsx +++ b/src/components/Argo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArgoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArgoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Argo = React.forwardRef(function Argo({color = 'currentColor', size = 24, title = "argo", ...others}, ref) { - const Argo = React.forwardRef(function Argo({color = 'currentColor', size = 24, title = "argo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Argo - \ No newline at end of file +export default Argo; diff --git a/src/components/Argos.tsx b/src/components/Argos.tsx index ec6785336..2ba21b7d2 100644 --- a/src/components/Argos.tsx +++ b/src/components/Argos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArgosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArgosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Argos = React.forwardRef(function Argos({color = 'currentColor', size = 24, title = "argos", ...others}, ref) { - const Argos = React.forwardRef(function Argos({color = 'currentColor', size = 24, title = "argos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Argos - \ No newline at end of file +export default Argos; diff --git a/src/components/Arkecosystem.tsx b/src/components/Arkecosystem.tsx index 956169067..077d952cb 100644 --- a/src/components/Arkecosystem.tsx +++ b/src/components/Arkecosystem.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArkecosystemProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArkecosystemProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Arkecosystem = React.forwardRef(function Arkecosystem({color = 'currentColor', size = 24, title = "arkecosystem", ...others}, ref) { - const Arkecosystem = React.forwardRef(function Arkecosystem({color = 'currentColor', size = 24, title = "arkecosystem", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Arkecosystem - \ No newline at end of file +export default Arkecosystem; diff --git a/src/components/Arlo.tsx b/src/components/Arlo.tsx index 8403deb5f..976a99002 100644 --- a/src/components/Arlo.tsx +++ b/src/components/Arlo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArloProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Arlo = React.forwardRef(function Arlo({color = 'currentColor', size = 24, title = "arlo", ...others}, ref) { - const Arlo = React.forwardRef(function Arlo({color = 'currentColor', size = 24, title = "arlo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Arlo - \ No newline at end of file +export default Arlo; diff --git a/src/components/Arm.tsx b/src/components/Arm.tsx index d0d92b742..1ff0db8e9 100644 --- a/src/components/Arm.tsx +++ b/src/components/Arm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Arm = React.forwardRef(function Arm({color = 'currentColor', size = 24, title = "arm", ...others}, ref) { - const Arm = React.forwardRef(function Arm({color = 'currentColor', size = 24, title = "arm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Arm - \ No newline at end of file +export default Arm; diff --git a/src/components/Artifacthub.tsx b/src/components/Artifacthub.tsx index 79b7ee12d..cb8b202d3 100644 --- a/src/components/Artifacthub.tsx +++ b/src/components/Artifacthub.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArtifacthubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArtifacthubProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Artifacthub = React.forwardRef(function Artifacthub({color = 'currentColor', size = 24, title = "artifacthub", ...others}, ref) { - const Artifacthub = React.forwardRef(function Artifacthub({color = 'currentColor', size = 24, title = "artifacthub", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Artifacthub - \ No newline at end of file +export default Artifacthub; diff --git a/src/components/Artixlinux.tsx b/src/components/Artixlinux.tsx index 9e5f45127..4a99fc85a 100644 --- a/src/components/Artixlinux.tsx +++ b/src/components/Artixlinux.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArtixlinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArtixlinuxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Artixlinux = React.forwardRef(function Artixlinux({color = 'currentColor', size = 24, title = "artixlinux", ...others}, ref) { - const Artixlinux = React.forwardRef(function Artixlinux({color = 'currentColor', size = 24, title = "artixlinux", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Artixlinux - \ No newline at end of file +export default Artixlinux; diff --git a/src/components/Artstation.tsx b/src/components/Artstation.tsx index 9b94d81c9..3c89be316 100644 --- a/src/components/Artstation.tsx +++ b/src/components/Artstation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArtstationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArtstationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Artstation = React.forwardRef(function Artstation({color = 'currentColor', size = 24, title = "artstation", ...others}, ref) { - const Artstation = React.forwardRef(function Artstation({color = 'currentColor', size = 24, title = "artstation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Artstation - \ No newline at end of file +export default Artstation; diff --git a/src/components/Arxiv.tsx b/src/components/Arxiv.tsx index 1ca7017ac..f47665054 100644 --- a/src/components/Arxiv.tsx +++ b/src/components/Arxiv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ArxivProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ArxivProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Arxiv = React.forwardRef(function Arxiv({color = 'currentColor', size = 24, title = "arxiv", ...others}, ref) { - const Arxiv = React.forwardRef(function Arxiv({color = 'currentColor', size = 24, title = "arxiv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Arxiv - \ No newline at end of file +export default Arxiv; diff --git a/src/components/Asana.tsx b/src/components/Asana.tsx index e4e0b01ea..11c03b958 100644 --- a/src/components/Asana.tsx +++ b/src/components/Asana.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AsanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AsanaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Asana = React.forwardRef(function Asana({color = 'currentColor', size = 24, title = "asana", ...others}, ref) { - const Asana = React.forwardRef(function Asana({color = 'currentColor', size = 24, title = "asana", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Asana - \ No newline at end of file +export default Asana; diff --git a/src/components/Asciidoctor.tsx b/src/components/Asciidoctor.tsx index c05da9d69..4721c23b0 100644 --- a/src/components/Asciidoctor.tsx +++ b/src/components/Asciidoctor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AsciidoctorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AsciidoctorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Asciidoctor = React.forwardRef(function Asciidoctor({color = 'currentColor', size = 24, title = "asciidoctor", ...others}, ref) { - const Asciidoctor = React.forwardRef(function Asciidoctor({color = 'currentColor', size = 24, title = "asciidoctor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Asciidoctor - \ No newline at end of file +export default Asciidoctor; diff --git a/src/components/Asciinema.tsx b/src/components/Asciinema.tsx index 668192f6a..46eee336b 100644 --- a/src/components/Asciinema.tsx +++ b/src/components/Asciinema.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AsciinemaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AsciinemaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Asciinema = React.forwardRef(function Asciinema({color = 'currentColor', size = 24, title = "asciinema", ...others}, ref) { - const Asciinema = React.forwardRef(function Asciinema({color = 'currentColor', size = 24, title = "asciinema", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Asciinema - \ No newline at end of file +export default Asciinema; diff --git a/src/components/Asda.tsx b/src/components/Asda.tsx index d5a3e14d3..19a4b0837 100644 --- a/src/components/Asda.tsx +++ b/src/components/Asda.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AsdaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AsdaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Asda = React.forwardRef(function Asda({color = 'currentColor', size = 24, title = "asda", ...others}, ref) { - const Asda = React.forwardRef(function Asda({color = 'currentColor', size = 24, title = "asda", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Asda - \ No newline at end of file +export default Asda; diff --git a/src/components/Aseprite.tsx b/src/components/Aseprite.tsx index 7ec17d70d..a5fa25270 100644 --- a/src/components/Aseprite.tsx +++ b/src/components/Aseprite.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AsepriteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AsepriteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aseprite = React.forwardRef(function Aseprite({color = 'currentColor', size = 24, title = "aseprite", ...others}, ref) { - const Aseprite = React.forwardRef(function Aseprite({color = 'currentColor', size = 24, title = "aseprite", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aseprite - \ No newline at end of file +export default Aseprite; diff --git a/src/components/Askfm.tsx b/src/components/Askfm.tsx index 71000cf7b..af4615934 100644 --- a/src/components/Askfm.tsx +++ b/src/components/Askfm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AskfmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AskfmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Askfm = React.forwardRef(function Askfm({color = 'currentColor', size = 24, title = "askfm", ...others}, ref) { - const Askfm = React.forwardRef(function Askfm({color = 'currentColor', size = 24, title = "askfm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Askfm - \ No newline at end of file +export default Askfm; diff --git a/src/components/Askubuntu.tsx b/src/components/Askubuntu.tsx index 95fd4009f..c81e786f5 100644 --- a/src/components/Askubuntu.tsx +++ b/src/components/Askubuntu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AskubuntuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AskubuntuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Askubuntu = React.forwardRef(function Askubuntu({color = 'currentColor', size = 24, title = "askubuntu", ...others}, ref) { - const Askubuntu = React.forwardRef(function Askubuntu({color = 'currentColor', size = 24, title = "askubuntu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Askubuntu - \ No newline at end of file +export default Askubuntu; diff --git a/src/components/Assemblyscript.tsx b/src/components/Assemblyscript.tsx index 71f24c573..26946ef70 100644 --- a/src/components/Assemblyscript.tsx +++ b/src/components/Assemblyscript.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AssemblyscriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AssemblyscriptProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Assemblyscript = React.forwardRef(function Assemblyscript({color = 'currentColor', size = 24, title = "assemblyscript", ...others}, ref) { - const Assemblyscript = React.forwardRef(function Assemblyscript({color = 'currentColor', size = 24, title = "assemblyscript", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Assemblyscript - \ No newline at end of file +export default Assemblyscript; diff --git a/src/components/Astonmartin.tsx b/src/components/Astonmartin.tsx index 88cd73143..f1099320d 100644 --- a/src/components/Astonmartin.tsx +++ b/src/components/Astonmartin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AstonmartinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AstonmartinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Astonmartin = React.forwardRef(function Astonmartin({color = 'currentColor', size = 24, title = "astonmartin", ...others}, ref) { - const Astonmartin = React.forwardRef(function Astonmartin({color = 'currentColor', size = 24, title = "astonmartin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Astonmartin - \ No newline at end of file +export default Astonmartin; diff --git a/src/components/Astro.tsx b/src/components/Astro.tsx index 2121ba90e..b9e62471a 100644 --- a/src/components/Astro.tsx +++ b/src/components/Astro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AstroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AstroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Astro = React.forwardRef(function Astro({color = 'currentColor', size = 24, title = "astro", ...others}, ref) { - const Astro = React.forwardRef(function Astro({color = 'currentColor', size = 24, title = "astro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Astro - \ No newline at end of file +export default Astro; diff --git a/src/components/Asus.tsx b/src/components/Asus.tsx index 89c2c301c..8b649501c 100644 --- a/src/components/Asus.tsx +++ b/src/components/Asus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AsusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AsusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Asus = React.forwardRef(function Asus({color = 'currentColor', size = 24, title = "asus", ...others}, ref) { - const Asus = React.forwardRef(function Asus({color = 'currentColor', size = 24, title = "asus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Asus - \ No newline at end of file +export default Asus; diff --git a/src/components/Atandt.tsx b/src/components/Atandt.tsx index 8a249750b..6f19c2bce 100644 --- a/src/components/Atandt.tsx +++ b/src/components/Atandt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AtandtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AtandtProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Atandt = React.forwardRef(function Atandt({color = 'currentColor', size = 24, title = "atandt", ...others}, ref) { - const Atandt = React.forwardRef(function Atandt({color = 'currentColor', size = 24, title = "atandt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Atandt - \ No newline at end of file +export default Atandt; diff --git a/src/components/Atari.tsx b/src/components/Atari.tsx index 57e3c92c1..9fcc11e23 100644 --- a/src/components/Atari.tsx +++ b/src/components/Atari.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AtariProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AtariProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Atari = React.forwardRef(function Atari({color = 'currentColor', size = 24, title = "atari", ...others}, ref) { - const Atari = React.forwardRef(function Atari({color = 'currentColor', size = 24, title = "atari", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Atari - \ No newline at end of file +export default Atari; diff --git a/src/components/Atlassian.tsx b/src/components/Atlassian.tsx index dee06156e..11c241216 100644 --- a/src/components/Atlassian.tsx +++ b/src/components/Atlassian.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AtlassianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AtlassianProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Atlassian = React.forwardRef(function Atlassian({color = 'currentColor', size = 24, title = "atlassian", ...others}, ref) { - const Atlassian = React.forwardRef(function Atlassian({color = 'currentColor', size = 24, title = "atlassian", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Atlassian - \ No newline at end of file +export default Atlassian; diff --git a/src/components/Atom.tsx b/src/components/Atom.tsx index 4da43e98a..545bbaf67 100644 --- a/src/components/Atom.tsx +++ b/src/components/Atom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AtomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AtomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Atom = React.forwardRef(function Atom({color = 'currentColor', size = 24, title = "atom", ...others}, ref) { - const Atom = React.forwardRef(function Atom({color = 'currentColor', size = 24, title = "atom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Atom - \ No newline at end of file +export default Atom; diff --git a/src/components/Auchan.tsx b/src/components/Auchan.tsx index 31ac792c2..59e7f96b2 100644 --- a/src/components/Auchan.tsx +++ b/src/components/Auchan.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AuchanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AuchanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Auchan = React.forwardRef(function Auchan({color = 'currentColor', size = 24, title = "auchan", ...others}, ref) { - const Auchan = React.forwardRef(function Auchan({color = 'currentColor', size = 24, title = "auchan", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Auchan - \ No newline at end of file +export default Auchan; diff --git a/src/components/Audacity.tsx b/src/components/Audacity.tsx index 8242e2d5e..74a40c06f 100644 --- a/src/components/Audacity.tsx +++ b/src/components/Audacity.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AudacityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AudacityProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Audacity = React.forwardRef(function Audacity({color = 'currentColor', size = 24, title = "audacity", ...others}, ref) { - const Audacity = React.forwardRef(function Audacity({color = 'currentColor', size = 24, title = "audacity", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Audacity - \ No newline at end of file +export default Audacity; diff --git a/src/components/Audi.tsx b/src/components/Audi.tsx index 1b1da3b47..c1ef66fda 100644 --- a/src/components/Audi.tsx +++ b/src/components/Audi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AudiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AudiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Audi = React.forwardRef(function Audi({color = 'currentColor', size = 24, title = "audi", ...others}, ref) { - const Audi = React.forwardRef(function Audi({color = 'currentColor', size = 24, title = "audi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Audi - \ No newline at end of file +export default Audi; diff --git a/src/components/Audible.tsx b/src/components/Audible.tsx index 3b02ecbfd..c945ad038 100644 --- a/src/components/Audible.tsx +++ b/src/components/Audible.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AudibleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AudibleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Audible = React.forwardRef(function Audible({color = 'currentColor', size = 24, title = "audible", ...others}, ref) { - const Audible = React.forwardRef(function Audible({color = 'currentColor', size = 24, title = "audible", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Audible - \ No newline at end of file +export default Audible; diff --git a/src/components/Audioboom.tsx b/src/components/Audioboom.tsx index 12f2683ca..e88d11651 100644 --- a/src/components/Audioboom.tsx +++ b/src/components/Audioboom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AudioboomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AudioboomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Audioboom = React.forwardRef(function Audioboom({color = 'currentColor', size = 24, title = "audioboom", ...others}, ref) { - const Audioboom = React.forwardRef(function Audioboom({color = 'currentColor', size = 24, title = "audioboom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Audioboom - \ No newline at end of file +export default Audioboom; diff --git a/src/components/Audiomack.tsx b/src/components/Audiomack.tsx index ecbc74038..6688366c5 100644 --- a/src/components/Audiomack.tsx +++ b/src/components/Audiomack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AudiomackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AudiomackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Audiomack = React.forwardRef(function Audiomack({color = 'currentColor', size = 24, title = "audiomack", ...others}, ref) { - const Audiomack = React.forwardRef(function Audiomack({color = 'currentColor', size = 24, title = "audiomack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Audiomack - \ No newline at end of file +export default Audiomack; diff --git a/src/components/Audiotechnica.tsx b/src/components/Audiotechnica.tsx index 9f1164321..4d147fcff 100644 --- a/src/components/Audiotechnica.tsx +++ b/src/components/Audiotechnica.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AudiotechnicaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AudiotechnicaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Audiotechnica = React.forwardRef(function Audiotechnica({color = 'currentColor', size = 24, title = "audiotechnica", ...others}, ref) { - const Audiotechnica = React.forwardRef(function Audiotechnica({color = 'currentColor', size = 24, title = "audiotechnica", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Audiotechnica - \ No newline at end of file +export default Audiotechnica; diff --git a/src/components/Aurelia.tsx b/src/components/Aurelia.tsx index 2c59ca623..24cbbc739 100644 --- a/src/components/Aurelia.tsx +++ b/src/components/Aurelia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AureliaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AureliaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Aurelia = React.forwardRef(function Aurelia({color = 'currentColor', size = 24, title = "aurelia", ...others}, ref) { - const Aurelia = React.forwardRef(function Aurelia({color = 'currentColor', size = 24, title = "aurelia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Aurelia - \ No newline at end of file +export default Aurelia; diff --git a/src/components/Auth0.tsx b/src/components/Auth0.tsx index 8dd97b0cc..6690477e3 100644 --- a/src/components/Auth0.tsx +++ b/src/components/Auth0.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Auth0Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Auth0Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Auth0 = React.forwardRef(function Auth0({color = 'currentColor', size = 24, title = "auth0", ...others}, ref) { - const Auth0 = React.forwardRef(function Auth0({color = 'currentColor', size = 24, title = "auth0", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Auth0 - \ No newline at end of file +export default Auth0; diff --git a/src/components/Authy.tsx b/src/components/Authy.tsx index c000f3a5c..b248824d4 100644 --- a/src/components/Authy.tsx +++ b/src/components/Authy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AuthyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AuthyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Authy = React.forwardRef(function Authy({color = 'currentColor', size = 24, title = "authy", ...others}, ref) { - const Authy = React.forwardRef(function Authy({color = 'currentColor', size = 24, title = "authy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Authy - \ No newline at end of file +export default Authy; diff --git a/src/components/Autodesk.tsx b/src/components/Autodesk.tsx index 75e43d509..367ffe556 100644 --- a/src/components/Autodesk.tsx +++ b/src/components/Autodesk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AutodeskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AutodeskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Autodesk = React.forwardRef(function Autodesk({color = 'currentColor', size = 24, title = "autodesk", ...others}, ref) { - const Autodesk = React.forwardRef(function Autodesk({color = 'currentColor', size = 24, title = "autodesk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Autodesk - \ No newline at end of file +export default Autodesk; diff --git a/src/components/Autohotkey.tsx b/src/components/Autohotkey.tsx index db31cec9d..4e71c44be 100644 --- a/src/components/Autohotkey.tsx +++ b/src/components/Autohotkey.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AutohotkeyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AutohotkeyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Autohotkey = React.forwardRef(function Autohotkey({color = 'currentColor', size = 24, title = "autohotkey", ...others}, ref) { - const Autohotkey = React.forwardRef(function Autohotkey({color = 'currentColor', size = 24, title = "autohotkey", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Autohotkey - \ No newline at end of file +export default Autohotkey; diff --git a/src/components/Automattic.tsx b/src/components/Automattic.tsx index e7789bd43..b566086cd 100644 --- a/src/components/Automattic.tsx +++ b/src/components/Automattic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AutomatticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AutomatticProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Automattic = React.forwardRef(function Automattic({color = 'currentColor', size = 24, title = "automattic", ...others}, ref) { - const Automattic = React.forwardRef(function Automattic({color = 'currentColor', size = 24, title = "automattic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Automattic - \ No newline at end of file +export default Automattic; diff --git a/src/components/Autoprefixer.tsx b/src/components/Autoprefixer.tsx index 43c0de818..19de53e6a 100644 --- a/src/components/Autoprefixer.tsx +++ b/src/components/Autoprefixer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AutoprefixerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AutoprefixerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Autoprefixer = React.forwardRef(function Autoprefixer({color = 'currentColor', size = 24, title = "autoprefixer", ...others}, ref) { - const Autoprefixer = React.forwardRef(function Autoprefixer({color = 'currentColor', size = 24, title = "autoprefixer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Autoprefixer - \ No newline at end of file +export default Autoprefixer; diff --git a/src/components/Avajs.tsx b/src/components/Avajs.tsx index 173fbdd3d..f3dea9951 100644 --- a/src/components/Avajs.tsx +++ b/src/components/Avajs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AvajsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AvajsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Avajs = React.forwardRef(function Avajs({color = 'currentColor', size = 24, title = "avajs", ...others}, ref) { - const Avajs = React.forwardRef(function Avajs({color = 'currentColor', size = 24, title = "avajs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Avajs - \ No newline at end of file +export default Avajs; diff --git a/src/components/Avast.tsx b/src/components/Avast.tsx index b9ee2edb9..0aded1b06 100644 --- a/src/components/Avast.tsx +++ b/src/components/Avast.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AvastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AvastProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Avast = React.forwardRef(function Avast({color = 'currentColor', size = 24, title = "avast", ...others}, ref) { - const Avast = React.forwardRef(function Avast({color = 'currentColor', size = 24, title = "avast", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Avast - \ No newline at end of file +export default Avast; diff --git a/src/components/Awesomelists.tsx b/src/components/Awesomelists.tsx index 7d3924a1d..7a37e88b8 100644 --- a/src/components/Awesomelists.tsx +++ b/src/components/Awesomelists.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AwesomelistsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AwesomelistsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Awesomelists = React.forwardRef(function Awesomelists({color = 'currentColor', size = 24, title = "awesomelists", ...others}, ref) { - const Awesomelists = React.forwardRef(function Awesomelists({color = 'currentColor', size = 24, title = "awesomelists", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Awesomelists - \ No newline at end of file +export default Awesomelists; diff --git a/src/components/Awesomewm.tsx b/src/components/Awesomewm.tsx index 48c2653dc..7948b90dc 100644 --- a/src/components/Awesomewm.tsx +++ b/src/components/Awesomewm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AwesomewmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AwesomewmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Awesomewm = React.forwardRef(function Awesomewm({color = 'currentColor', size = 24, title = "awesomewm", ...others}, ref) { - const Awesomewm = React.forwardRef(function Awesomewm({color = 'currentColor', size = 24, title = "awesomewm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Awesomewm - \ No newline at end of file +export default Awesomewm; diff --git a/src/components/Awsamplify.tsx b/src/components/Awsamplify.tsx index 770602c26..9f5a47d00 100644 --- a/src/components/Awsamplify.tsx +++ b/src/components/Awsamplify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AwsamplifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AwsamplifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Awsamplify = React.forwardRef(function Awsamplify({color = 'currentColor', size = 24, title = "awsamplify", ...others}, ref) { - const Awsamplify = React.forwardRef(function Awsamplify({color = 'currentColor', size = 24, title = "awsamplify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Awsamplify - \ No newline at end of file +export default Awsamplify; diff --git a/src/components/Awsfargate.tsx b/src/components/Awsfargate.tsx index 124f676cf..67ab12782 100644 --- a/src/components/Awsfargate.tsx +++ b/src/components/Awsfargate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AwsfargateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AwsfargateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Awsfargate = React.forwardRef(function Awsfargate({color = 'currentColor', size = 24, title = "awsfargate", ...others}, ref) { - const Awsfargate = React.forwardRef(function Awsfargate({color = 'currentColor', size = 24, title = "awsfargate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Awsfargate - \ No newline at end of file +export default Awsfargate; diff --git a/src/components/Awslambda.tsx b/src/components/Awslambda.tsx index c9e1bc0e2..73443e8fe 100644 --- a/src/components/Awslambda.tsx +++ b/src/components/Awslambda.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AwslambdaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AwslambdaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Awslambda = React.forwardRef(function Awslambda({color = 'currentColor', size = 24, title = "awslambda", ...others}, ref) { - const Awslambda = React.forwardRef(function Awslambda({color = 'currentColor', size = 24, title = "awslambda", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Awslambda - \ No newline at end of file +export default Awslambda; diff --git a/src/components/Axios.tsx b/src/components/Axios.tsx index 5592d4d6c..ebeb34069 100644 --- a/src/components/Axios.tsx +++ b/src/components/Axios.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AxiosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AxiosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Axios = React.forwardRef(function Axios({color = 'currentColor', size = 24, title = "axios", ...others}, ref) { - const Axios = React.forwardRef(function Axios({color = 'currentColor', size = 24, title = "axios", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Axios - \ No newline at end of file +export default Axios; diff --git a/src/components/Azureartifacts.tsx b/src/components/Azureartifacts.tsx index e202286ad..48f5ebe13 100644 --- a/src/components/Azureartifacts.tsx +++ b/src/components/Azureartifacts.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AzureartifactsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AzureartifactsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Azureartifacts = React.forwardRef(function Azureartifacts({color = 'currentColor', size = 24, title = "azureartifacts", ...others}, ref) { - const Azureartifacts = React.forwardRef(function Azureartifacts({color = 'currentColor', size = 24, title = "azureartifacts", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Azureartifacts - \ No newline at end of file +export default Azureartifacts; diff --git a/src/components/Azuredataexplorer.tsx b/src/components/Azuredataexplorer.tsx index a24961ce3..4de9aa917 100644 --- a/src/components/Azuredataexplorer.tsx +++ b/src/components/Azuredataexplorer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AzuredataexplorerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AzuredataexplorerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Azuredataexplorer = React.forwardRef(function Azuredataexplorer({color = 'currentColor', size = 24, title = "azuredataexplorer", ...others}, ref) { - const Azuredataexplorer = React.forwardRef(function Azuredataexplorer({color = 'currentColor', size = 24, title = "azuredataexplorer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Azuredataexplorer - \ No newline at end of file +export default Azuredataexplorer; diff --git a/src/components/Azuredevops.tsx b/src/components/Azuredevops.tsx index dfee13bc8..c07989635 100644 --- a/src/components/Azuredevops.tsx +++ b/src/components/Azuredevops.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AzuredevopsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AzuredevopsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Azuredevops = React.forwardRef(function Azuredevops({color = 'currentColor', size = 24, title = "azuredevops", ...others}, ref) { - const Azuredevops = React.forwardRef(function Azuredevops({color = 'currentColor', size = 24, title = "azuredevops", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Azuredevops - \ No newline at end of file +export default Azuredevops; diff --git a/src/components/Azurefunctions.tsx b/src/components/Azurefunctions.tsx index abc2c4189..5acdf53e4 100644 --- a/src/components/Azurefunctions.tsx +++ b/src/components/Azurefunctions.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AzurefunctionsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AzurefunctionsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Azurefunctions = React.forwardRef(function Azurefunctions({color = 'currentColor', size = 24, title = "azurefunctions", ...others}, ref) { - const Azurefunctions = React.forwardRef(function Azurefunctions({color = 'currentColor', size = 24, title = "azurefunctions", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Azurefunctions - \ No newline at end of file +export default Azurefunctions; diff --git a/src/components/Azurepipelines.tsx b/src/components/Azurepipelines.tsx index d98d177ad..20cc11f5c 100644 --- a/src/components/Azurepipelines.tsx +++ b/src/components/Azurepipelines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type AzurepipelinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type AzurepipelinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Azurepipelines = React.forwardRef(function Azurepipelines({color = 'currentColor', size = 24, title = "azurepipelines", ...others}, ref) { - const Azurepipelines = React.forwardRef(function Azurepipelines({color = 'currentColor', size = 24, title = "azurepipelines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Azurepipelines - \ No newline at end of file +export default Azurepipelines; diff --git a/src/components/Babel.tsx b/src/components/Babel.tsx index 7eea320d7..bdd4777d6 100644 --- a/src/components/Babel.tsx +++ b/src/components/Babel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BabelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BabelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Babel = React.forwardRef(function Babel({color = 'currentColor', size = 24, title = "babel", ...others}, ref) { - const Babel = React.forwardRef(function Babel({color = 'currentColor', size = 24, title = "babel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Babel - \ No newline at end of file +export default Babel; diff --git a/src/components/Backbonedotjs.tsx b/src/components/Backbonedotjs.tsx index 800e16c92..553fc191f 100644 --- a/src/components/Backbonedotjs.tsx +++ b/src/components/Backbonedotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BackbonedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BackbonedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Backbonedotjs = React.forwardRef(function Backbonedotjs({color = 'currentColor', size = 24, title = "backbonedotjs", ...others}, ref) { - const Backbonedotjs = React.forwardRef(function Backbonedotjs({color = 'currentColor', size = 24, title = "backbonedotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Backbonedotjs - \ No newline at end of file +export default Backbonedotjs; diff --git a/src/components/Backendless.tsx b/src/components/Backendless.tsx index 32114358d..d5d0659cb 100644 --- a/src/components/Backendless.tsx +++ b/src/components/Backendless.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BackendlessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BackendlessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Backendless = React.forwardRef(function Backendless({color = 'currentColor', size = 24, title = "backendless", ...others}, ref) { - const Backendless = React.forwardRef(function Backendless({color = 'currentColor', size = 24, title = "backendless", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Backendless - \ No newline at end of file +export default Backendless; diff --git a/src/components/Badgr.tsx b/src/components/Badgr.tsx index f95121b5b..0110310f1 100644 --- a/src/components/Badgr.tsx +++ b/src/components/Badgr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BadgrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BadgrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Badgr = React.forwardRef(function Badgr({color = 'currentColor', size = 24, title = "badgr", ...others}, ref) { - const Badgr = React.forwardRef(function Badgr({color = 'currentColor', size = 24, title = "badgr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Badgr - \ No newline at end of file +export default Badgr; diff --git a/src/components/Badoo.tsx b/src/components/Badoo.tsx index 78d7c519e..14d42efed 100644 --- a/src/components/Badoo.tsx +++ b/src/components/Badoo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BadooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BadooProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Badoo = React.forwardRef(function Badoo({color = 'currentColor', size = 24, title = "badoo", ...others}, ref) { - const Badoo = React.forwardRef(function Badoo({color = 'currentColor', size = 24, title = "badoo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Badoo - \ No newline at end of file +export default Badoo; diff --git a/src/components/Baidu.tsx b/src/components/Baidu.tsx index 48ff7a36c..1200ba904 100644 --- a/src/components/Baidu.tsx +++ b/src/components/Baidu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BaiduProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BaiduProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Baidu = React.forwardRef(function Baidu({color = 'currentColor', size = 24, title = "baidu", ...others}, ref) { - const Baidu = React.forwardRef(function Baidu({color = 'currentColor', size = 24, title = "baidu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Baidu - \ No newline at end of file +export default Baidu; diff --git a/src/components/Bamboo.tsx b/src/components/Bamboo.tsx index f63e7733f..4a4024aef 100644 --- a/src/components/Bamboo.tsx +++ b/src/components/Bamboo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BambooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BambooProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bamboo = React.forwardRef(function Bamboo({color = 'currentColor', size = 24, title = "bamboo", ...others}, ref) { - const Bamboo = React.forwardRef(function Bamboo({color = 'currentColor', size = 24, title = "bamboo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bamboo - \ No newline at end of file +export default Bamboo; diff --git a/src/components/Bandcamp.tsx b/src/components/Bandcamp.tsx index 19df72470..bbe888cd8 100644 --- a/src/components/Bandcamp.tsx +++ b/src/components/Bandcamp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BandcampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BandcampProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bandcamp = React.forwardRef(function Bandcamp({color = 'currentColor', size = 24, title = "bandcamp", ...others}, ref) { - const Bandcamp = React.forwardRef(function Bandcamp({color = 'currentColor', size = 24, title = "bandcamp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bandcamp - \ No newline at end of file +export default Bandcamp; diff --git a/src/components/Bandlab.tsx b/src/components/Bandlab.tsx index 4d782fbb6..5728b45cc 100644 --- a/src/components/Bandlab.tsx +++ b/src/components/Bandlab.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BandlabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BandlabProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bandlab = React.forwardRef(function Bandlab({color = 'currentColor', size = 24, title = "bandlab", ...others}, ref) { - const Bandlab = React.forwardRef(function Bandlab({color = 'currentColor', size = 24, title = "bandlab", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bandlab - \ No newline at end of file +export default Bandlab; diff --git a/src/components/Bandrautomation.tsx b/src/components/Bandrautomation.tsx index 6f03cbae8..bdd5bac5e 100644 --- a/src/components/Bandrautomation.tsx +++ b/src/components/Bandrautomation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BandrautomationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BandrautomationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bandrautomation = React.forwardRef(function Bandrautomation({color = 'currentColor', size = 24, title = "bandrautomation", ...others}, ref) { - const Bandrautomation = React.forwardRef(function Bandrautomation({color = 'currentColor', size = 24, title = "bandrautomation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bandrautomation - \ No newline at end of file +export default Bandrautomation; diff --git a/src/components/Bandsintown.tsx b/src/components/Bandsintown.tsx index 3b985355f..cfa8dc70d 100644 --- a/src/components/Bandsintown.tsx +++ b/src/components/Bandsintown.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BandsintownProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BandsintownProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bandsintown = React.forwardRef(function Bandsintown({color = 'currentColor', size = 24, title = "bandsintown", ...others}, ref) { - const Bandsintown = React.forwardRef(function Bandsintown({color = 'currentColor', size = 24, title = "bandsintown", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bandsintown - \ No newline at end of file +export default Bandsintown; diff --git a/src/components/Bankofamerica.tsx b/src/components/Bankofamerica.tsx index 728979772..0ce092178 100644 --- a/src/components/Bankofamerica.tsx +++ b/src/components/Bankofamerica.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BankofamericaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BankofamericaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bankofamerica = React.forwardRef(function Bankofamerica({color = 'currentColor', size = 24, title = "bankofamerica", ...others}, ref) { - const Bankofamerica = React.forwardRef(function Bankofamerica({color = 'currentColor', size = 24, title = "bankofamerica", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bankofamerica - \ No newline at end of file +export default Bankofamerica; diff --git a/src/components/Barclays.tsx b/src/components/Barclays.tsx index 99b2dfa27..fe5040f02 100644 --- a/src/components/Barclays.tsx +++ b/src/components/Barclays.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BarclaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BarclaysProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Barclays = React.forwardRef(function Barclays({color = 'currentColor', size = 24, title = "barclays", ...others}, ref) { - const Barclays = React.forwardRef(function Barclays({color = 'currentColor', size = 24, title = "barclays", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Barclays - \ No newline at end of file +export default Barclays; diff --git a/src/components/Baremetrics.tsx b/src/components/Baremetrics.tsx index 68e7634c8..76aff8c01 100644 --- a/src/components/Baremetrics.tsx +++ b/src/components/Baremetrics.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BaremetricsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BaremetricsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Baremetrics = React.forwardRef(function Baremetrics({color = 'currentColor', size = 24, title = "baremetrics", ...others}, ref) { - const Baremetrics = React.forwardRef(function Baremetrics({color = 'currentColor', size = 24, title = "baremetrics", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Baremetrics - \ No newline at end of file +export default Baremetrics; diff --git a/src/components/Basecamp.tsx b/src/components/Basecamp.tsx index 44e55c880..c32a00823 100644 --- a/src/components/Basecamp.tsx +++ b/src/components/Basecamp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BasecampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BasecampProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Basecamp = React.forwardRef(function Basecamp({color = 'currentColor', size = 24, title = "basecamp", ...others}, ref) { - const Basecamp = React.forwardRef(function Basecamp({color = 'currentColor', size = 24, title = "basecamp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Basecamp - \ No newline at end of file +export default Basecamp; diff --git a/src/components/Bastyon.tsx b/src/components/Bastyon.tsx index 01f237762..c34db7434 100644 --- a/src/components/Bastyon.tsx +++ b/src/components/Bastyon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BastyonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BastyonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bastyon = React.forwardRef(function Bastyon({color = 'currentColor', size = 24, title = "bastyon", ...others}, ref) { - const Bastyon = React.forwardRef(function Bastyon({color = 'currentColor', size = 24, title = "bastyon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bastyon - \ No newline at end of file +export default Bastyon; diff --git a/src/components/Bata.tsx b/src/components/Bata.tsx index 1769e3985..a81873829 100644 --- a/src/components/Bata.tsx +++ b/src/components/Bata.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BataProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bata = React.forwardRef(function Bata({color = 'currentColor', size = 24, title = "bata", ...others}, ref) { - const Bata = React.forwardRef(function Bata({color = 'currentColor', size = 24, title = "bata", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bata - \ No newline at end of file +export default Bata; diff --git a/src/components/Bathasu.tsx b/src/components/Bathasu.tsx index a4d9991db..411afe935 100644 --- a/src/components/Bathasu.tsx +++ b/src/components/Bathasu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BathasuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BathasuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bathasu = React.forwardRef(function Bathasu({color = 'currentColor', size = 24, title = "bathasu", ...others}, ref) { - const Bathasu = React.forwardRef(function Bathasu({color = 'currentColor', size = 24, title = "bathasu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bathasu - \ No newline at end of file +export default Bathasu; diff --git a/src/components/Battledotnet.tsx b/src/components/Battledotnet.tsx index d03358b2b..88d335b0c 100644 --- a/src/components/Battledotnet.tsx +++ b/src/components/Battledotnet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BattledotnetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BattledotnetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Battledotnet = React.forwardRef(function Battledotnet({color = 'currentColor', size = 24, title = "battledotnet", ...others}, ref) { - const Battledotnet = React.forwardRef(function Battledotnet({color = 'currentColor', size = 24, title = "battledotnet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Battledotnet - \ No newline at end of file +export default Battledotnet; diff --git a/src/components/Bbc.tsx b/src/components/Bbc.tsx index 2fc1d2ba2..5a0c52b3e 100644 --- a/src/components/Bbc.tsx +++ b/src/components/Bbc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BbcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BbcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bbc = React.forwardRef(function Bbc({color = 'currentColor', size = 24, title = "bbc", ...others}, ref) { - const Bbc = React.forwardRef(function Bbc({color = 'currentColor', size = 24, title = "bbc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bbc - \ No newline at end of file +export default Bbc; diff --git a/src/components/Bbciplayer.tsx b/src/components/Bbciplayer.tsx index 1c7ba06ba..9a823361f 100644 --- a/src/components/Bbciplayer.tsx +++ b/src/components/Bbciplayer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BbciplayerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BbciplayerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bbciplayer = React.forwardRef(function Bbciplayer({color = 'currentColor', size = 24, title = "bbciplayer", ...others}, ref) { - const Bbciplayer = React.forwardRef(function Bbciplayer({color = 'currentColor', size = 24, title = "bbciplayer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bbciplayer - \ No newline at end of file +export default Bbciplayer; diff --git a/src/components/Beatport.tsx b/src/components/Beatport.tsx index fad622931..88f28c416 100644 --- a/src/components/Beatport.tsx +++ b/src/components/Beatport.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BeatportProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BeatportProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Beatport = React.forwardRef(function Beatport({color = 'currentColor', size = 24, title = "beatport", ...others}, ref) { - const Beatport = React.forwardRef(function Beatport({color = 'currentColor', size = 24, title = "beatport", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Beatport - \ No newline at end of file +export default Beatport; diff --git a/src/components/Beats.tsx b/src/components/Beats.tsx index 68aafc50d..c6d395e2a 100644 --- a/src/components/Beats.tsx +++ b/src/components/Beats.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BeatsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BeatsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Beats = React.forwardRef(function Beats({color = 'currentColor', size = 24, title = "beats", ...others}, ref) { - const Beats = React.forwardRef(function Beats({color = 'currentColor', size = 24, title = "beats", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Beats - \ No newline at end of file +export default Beats; diff --git a/src/components/Beatsbydre.tsx b/src/components/Beatsbydre.tsx index 3309d4eaa..784ae3be2 100644 --- a/src/components/Beatsbydre.tsx +++ b/src/components/Beatsbydre.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BeatsbydreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BeatsbydreProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Beatsbydre = React.forwardRef(function Beatsbydre({color = 'currentColor', size = 24, title = "beatsbydre", ...others}, ref) { - const Beatsbydre = React.forwardRef(function Beatsbydre({color = 'currentColor', size = 24, title = "beatsbydre", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Beatsbydre - \ No newline at end of file +export default Beatsbydre; diff --git a/src/components/Behance.tsx b/src/components/Behance.tsx index 306c671ab..45f76fe53 100644 --- a/src/components/Behance.tsx +++ b/src/components/Behance.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BehanceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BehanceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Behance = React.forwardRef(function Behance({color = 'currentColor', size = 24, title = "behance", ...others}, ref) { - const Behance = React.forwardRef(function Behance({color = 'currentColor', size = 24, title = "behance", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Behance - \ No newline at end of file +export default Behance; diff --git a/src/components/Beijingsubway.tsx b/src/components/Beijingsubway.tsx index 9c99118b3..63770d64c 100644 --- a/src/components/Beijingsubway.tsx +++ b/src/components/Beijingsubway.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BeijingsubwayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BeijingsubwayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Beijingsubway = React.forwardRef(function Beijingsubway({color = 'currentColor', size = 24, title = "beijingsubway", ...others}, ref) { - const Beijingsubway = React.forwardRef(function Beijingsubway({color = 'currentColor', size = 24, title = "beijingsubway", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Beijingsubway - \ No newline at end of file +export default Beijingsubway; diff --git a/src/components/Bem.tsx b/src/components/Bem.tsx index 1f2b8bdf0..5098309f0 100644 --- a/src/components/Bem.tsx +++ b/src/components/Bem.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BemProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BemProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bem = React.forwardRef(function Bem({color = 'currentColor', size = 24, title = "bem", ...others}, ref) { - const Bem = React.forwardRef(function Bem({color = 'currentColor', size = 24, title = "bem", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bem - \ No newline at end of file +export default Bem; diff --git a/src/components/Bentley.tsx b/src/components/Bentley.tsx index 45485a750..6465bbc12 100644 --- a/src/components/Bentley.tsx +++ b/src/components/Bentley.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BentleyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BentleyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bentley = React.forwardRef(function Bentley({color = 'currentColor', size = 24, title = "bentley", ...others}, ref) { - const Bentley = React.forwardRef(function Bentley({color = 'currentColor', size = 24, title = "bentley", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bentley - \ No newline at end of file +export default Bentley; diff --git a/src/components/Betfair.tsx b/src/components/Betfair.tsx index d01850755..393b52dc6 100644 --- a/src/components/Betfair.tsx +++ b/src/components/Betfair.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BetfairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BetfairProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Betfair = React.forwardRef(function Betfair({color = 'currentColor', size = 24, title = "betfair", ...others}, ref) { - const Betfair = React.forwardRef(function Betfair({color = 'currentColor', size = 24, title = "betfair", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Betfair - \ No newline at end of file +export default Betfair; diff --git a/src/components/Bigbasket.tsx b/src/components/Bigbasket.tsx index 4750d11c8..32b6cae27 100644 --- a/src/components/Bigbasket.tsx +++ b/src/components/Bigbasket.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BigbasketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BigbasketProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bigbasket = React.forwardRef(function Bigbasket({color = 'currentColor', size = 24, title = "bigbasket", ...others}, ref) { - const Bigbasket = React.forwardRef(function Bigbasket({color = 'currentColor', size = 24, title = "bigbasket", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bigbasket - \ No newline at end of file +export default Bigbasket; diff --git a/src/components/Bigbluebutton.tsx b/src/components/Bigbluebutton.tsx index 59b92f12c..eafc29edd 100644 --- a/src/components/Bigbluebutton.tsx +++ b/src/components/Bigbluebutton.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BigbluebuttonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BigbluebuttonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bigbluebutton = React.forwardRef(function Bigbluebutton({color = 'currentColor', size = 24, title = "bigbluebutton", ...others}, ref) { - const Bigbluebutton = React.forwardRef(function Bigbluebutton({color = 'currentColor', size = 24, title = "bigbluebutton", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bigbluebutton - \ No newline at end of file +export default Bigbluebutton; diff --git a/src/components/Bigcartel.tsx b/src/components/Bigcartel.tsx index 5e20ed643..b49162b96 100644 --- a/src/components/Bigcartel.tsx +++ b/src/components/Bigcartel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BigcartelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BigcartelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bigcartel = React.forwardRef(function Bigcartel({color = 'currentColor', size = 24, title = "bigcartel", ...others}, ref) { - const Bigcartel = React.forwardRef(function Bigcartel({color = 'currentColor', size = 24, title = "bigcartel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bigcartel - \ No newline at end of file +export default Bigcartel; diff --git a/src/components/Bigcommerce.tsx b/src/components/Bigcommerce.tsx index f9a7523de..bab1f94a9 100644 --- a/src/components/Bigcommerce.tsx +++ b/src/components/Bigcommerce.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BigcommerceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BigcommerceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bigcommerce = React.forwardRef(function Bigcommerce({color = 'currentColor', size = 24, title = "bigcommerce", ...others}, ref) { - const Bigcommerce = React.forwardRef(function Bigcommerce({color = 'currentColor', size = 24, title = "bigcommerce", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bigcommerce - \ No newline at end of file +export default Bigcommerce; diff --git a/src/components/Bilibili.tsx b/src/components/Bilibili.tsx index 65f8cf616..30816ef8f 100644 --- a/src/components/Bilibili.tsx +++ b/src/components/Bilibili.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BilibiliProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BilibiliProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bilibili = React.forwardRef(function Bilibili({color = 'currentColor', size = 24, title = "bilibili", ...others}, ref) { - const Bilibili = React.forwardRef(function Bilibili({color = 'currentColor', size = 24, title = "bilibili", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bilibili - \ No newline at end of file +export default Bilibili; diff --git a/src/components/Binance.tsx b/src/components/Binance.tsx index b7a1f333c..432a53728 100644 --- a/src/components/Binance.tsx +++ b/src/components/Binance.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BinanceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BinanceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Binance = React.forwardRef(function Binance({color = 'currentColor', size = 24, title = "binance", ...others}, ref) { - const Binance = React.forwardRef(function Binance({color = 'currentColor', size = 24, title = "binance", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Binance - \ No newline at end of file +export default Binance; diff --git a/src/components/Biolink.tsx b/src/components/Biolink.tsx index 676685af6..7cf2508cb 100644 --- a/src/components/Biolink.tsx +++ b/src/components/Biolink.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BiolinkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BiolinkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Biolink = React.forwardRef(function Biolink({color = 'currentColor', size = 24, title = "biolink", ...others}, ref) { - const Biolink = React.forwardRef(function Biolink({color = 'currentColor', size = 24, title = "biolink", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Biolink - \ No newline at end of file +export default Biolink; diff --git a/src/components/Bit.tsx b/src/components/Bit.tsx index 95b0c685f..b4962b37c 100644 --- a/src/components/Bit.tsx +++ b/src/components/Bit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bit = React.forwardRef(function Bit({color = 'currentColor', size = 24, title = "bit", ...others}, ref) { - const Bit = React.forwardRef(function Bit({color = 'currentColor', size = 24, title = "bit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bit - \ No newline at end of file +export default Bit; diff --git a/src/components/Bitbucket.tsx b/src/components/Bitbucket.tsx index 7be0b216b..e32317eaf 100644 --- a/src/components/Bitbucket.tsx +++ b/src/components/Bitbucket.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BitbucketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BitbucketProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bitbucket = React.forwardRef(function Bitbucket({color = 'currentColor', size = 24, title = "bitbucket", ...others}, ref) { - const Bitbucket = React.forwardRef(function Bitbucket({color = 'currentColor', size = 24, title = "bitbucket", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bitbucket - \ No newline at end of file +export default Bitbucket; diff --git a/src/components/Bitcoin.tsx b/src/components/Bitcoin.tsx index 6d97a821e..7c9b66a2a 100644 --- a/src/components/Bitcoin.tsx +++ b/src/components/Bitcoin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BitcoinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BitcoinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bitcoin = React.forwardRef(function Bitcoin({color = 'currentColor', size = 24, title = "bitcoin", ...others}, ref) { - const Bitcoin = React.forwardRef(function Bitcoin({color = 'currentColor', size = 24, title = "bitcoin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bitcoin - \ No newline at end of file +export default Bitcoin; diff --git a/src/components/Bitcoincash.tsx b/src/components/Bitcoincash.tsx index 40323b839..9036286cd 100644 --- a/src/components/Bitcoincash.tsx +++ b/src/components/Bitcoincash.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BitcoincashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BitcoincashProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bitcoincash = React.forwardRef(function Bitcoincash({color = 'currentColor', size = 24, title = "bitcoincash", ...others}, ref) { - const Bitcoincash = React.forwardRef(function Bitcoincash({color = 'currentColor', size = 24, title = "bitcoincash", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bitcoincash - \ No newline at end of file +export default Bitcoincash; diff --git a/src/components/Bitcoinsv.tsx b/src/components/Bitcoinsv.tsx index 404e449ff..f2b836d90 100644 --- a/src/components/Bitcoinsv.tsx +++ b/src/components/Bitcoinsv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BitcoinsvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BitcoinsvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bitcoinsv = React.forwardRef(function Bitcoinsv({color = 'currentColor', size = 24, title = "bitcoinsv", ...others}, ref) { - const Bitcoinsv = React.forwardRef(function Bitcoinsv({color = 'currentColor', size = 24, title = "bitcoinsv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bitcoinsv - \ No newline at end of file +export default Bitcoinsv; diff --git a/src/components/Bitdefender.tsx b/src/components/Bitdefender.tsx index 29d1b35d0..dc15de3ea 100644 --- a/src/components/Bitdefender.tsx +++ b/src/components/Bitdefender.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BitdefenderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BitdefenderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bitdefender = React.forwardRef(function Bitdefender({color = 'currentColor', size = 24, title = "bitdefender", ...others}, ref) { - const Bitdefender = React.forwardRef(function Bitdefender({color = 'currentColor', size = 24, title = "bitdefender", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bitdefender - \ No newline at end of file +export default Bitdefender; diff --git a/src/components/Bitly.tsx b/src/components/Bitly.tsx index 92a28edb9..6ff23567d 100644 --- a/src/components/Bitly.tsx +++ b/src/components/Bitly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BitlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BitlyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bitly = React.forwardRef(function Bitly({color = 'currentColor', size = 24, title = "bitly", ...others}, ref) { - const Bitly = React.forwardRef(function Bitly({color = 'currentColor', size = 24, title = "bitly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bitly - \ No newline at end of file +export default Bitly; diff --git a/src/components/Bitrise.tsx b/src/components/Bitrise.tsx index e6ccf1f8b..175b64903 100644 --- a/src/components/Bitrise.tsx +++ b/src/components/Bitrise.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BitriseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BitriseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bitrise = React.forwardRef(function Bitrise({color = 'currentColor', size = 24, title = "bitrise", ...others}, ref) { - const Bitrise = React.forwardRef(function Bitrise({color = 'currentColor', size = 24, title = "bitrise", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bitrise - \ No newline at end of file +export default Bitrise; diff --git a/src/components/Bitwarden.tsx b/src/components/Bitwarden.tsx index aa3ae31d7..d2395bdc2 100644 --- a/src/components/Bitwarden.tsx +++ b/src/components/Bitwarden.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BitwardenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BitwardenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bitwarden = React.forwardRef(function Bitwarden({color = 'currentColor', size = 24, title = "bitwarden", ...others}, ref) { - const Bitwarden = React.forwardRef(function Bitwarden({color = 'currentColor', size = 24, title = "bitwarden", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bitwarden - \ No newline at end of file +export default Bitwarden; diff --git a/src/components/Bitwig.tsx b/src/components/Bitwig.tsx index 9a491c111..7e37f4faf 100644 --- a/src/components/Bitwig.tsx +++ b/src/components/Bitwig.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BitwigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BitwigProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bitwig = React.forwardRef(function Bitwig({color = 'currentColor', size = 24, title = "bitwig", ...others}, ref) { - const Bitwig = React.forwardRef(function Bitwig({color = 'currentColor', size = 24, title = "bitwig", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bitwig - \ No newline at end of file +export default Bitwig; diff --git a/src/components/Blackberry.tsx b/src/components/Blackberry.tsx index 2fbcc47b5..99b9eb6dd 100644 --- a/src/components/Blackberry.tsx +++ b/src/components/Blackberry.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BlackberryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BlackberryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Blackberry = React.forwardRef(function Blackberry({color = 'currentColor', size = 24, title = "blackberry", ...others}, ref) { - const Blackberry = React.forwardRef(function Blackberry({color = 'currentColor', size = 24, title = "blackberry", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Blackberry - \ No newline at end of file +export default Blackberry; diff --git a/src/components/Blazemeter.tsx b/src/components/Blazemeter.tsx index adad172c9..ca42ef28d 100644 --- a/src/components/Blazemeter.tsx +++ b/src/components/Blazemeter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BlazemeterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BlazemeterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Blazemeter = React.forwardRef(function Blazemeter({color = 'currentColor', size = 24, title = "blazemeter", ...others}, ref) { - const Blazemeter = React.forwardRef(function Blazemeter({color = 'currentColor', size = 24, title = "blazemeter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Blazemeter - \ No newline at end of file +export default Blazemeter; diff --git a/src/components/Blazor.tsx b/src/components/Blazor.tsx index 7ac84fad2..d535f06ba 100644 --- a/src/components/Blazor.tsx +++ b/src/components/Blazor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BlazorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BlazorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Blazor = React.forwardRef(function Blazor({color = 'currentColor', size = 24, title = "blazor", ...others}, ref) { - const Blazor = React.forwardRef(function Blazor({color = 'currentColor', size = 24, title = "blazor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Blazor - \ No newline at end of file +export default Blazor; diff --git a/src/components/Blender.tsx b/src/components/Blender.tsx index 605ad0f85..937ef3487 100644 --- a/src/components/Blender.tsx +++ b/src/components/Blender.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BlenderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BlenderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Blender = React.forwardRef(function Blender({color = 'currentColor', size = 24, title = "blender", ...others}, ref) { - const Blender = React.forwardRef(function Blender({color = 'currentColor', size = 24, title = "blender", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Blender - \ No newline at end of file +export default Blender; diff --git a/src/components/Blockchaindotcom.tsx b/src/components/Blockchaindotcom.tsx index e50643c75..248852a84 100644 --- a/src/components/Blockchaindotcom.tsx +++ b/src/components/Blockchaindotcom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BlockchaindotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BlockchaindotcomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Blockchaindotcom = React.forwardRef(function Blockchaindotcom({color = 'currentColor', size = 24, title = "blockchaindotcom", ...others}, ref) { - const Blockchaindotcom = React.forwardRef(function Blockchaindotcom({color = 'currentColor', size = 24, title = "blockchaindotcom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Blockchaindotcom - \ No newline at end of file +export default Blockchaindotcom; diff --git a/src/components/Blogger.tsx b/src/components/Blogger.tsx index e2bcc3783..855fe1a20 100644 --- a/src/components/Blogger.tsx +++ b/src/components/Blogger.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BloggerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BloggerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Blogger = React.forwardRef(function Blogger({color = 'currentColor', size = 24, title = "blogger", ...others}, ref) { - const Blogger = React.forwardRef(function Blogger({color = 'currentColor', size = 24, title = "blogger", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Blogger - \ No newline at end of file +export default Blogger; diff --git a/src/components/Bloglovin.tsx b/src/components/Bloglovin.tsx index 4f94b2123..2738f34ce 100644 --- a/src/components/Bloglovin.tsx +++ b/src/components/Bloglovin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BloglovinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BloglovinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bloglovin = React.forwardRef(function Bloglovin({color = 'currentColor', size = 24, title = "bloglovin", ...others}, ref) { - const Bloglovin = React.forwardRef(function Bloglovin({color = 'currentColor', size = 24, title = "bloglovin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bloglovin - \ No newline at end of file +export default Bloglovin; diff --git a/src/components/Blueprint.tsx b/src/components/Blueprint.tsx index 4e60a238f..bf8a37651 100644 --- a/src/components/Blueprint.tsx +++ b/src/components/Blueprint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BlueprintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BlueprintProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Blueprint = React.forwardRef(function Blueprint({color = 'currentColor', size = 24, title = "blueprint", ...others}, ref) { - const Blueprint = React.forwardRef(function Blueprint({color = 'currentColor', size = 24, title = "blueprint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Blueprint - \ No newline at end of file +export default Blueprint; diff --git a/src/components/Bluetooth.tsx b/src/components/Bluetooth.tsx index 7bbc7cb00..14c329f04 100644 --- a/src/components/Bluetooth.tsx +++ b/src/components/Bluetooth.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BluetoothProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BluetoothProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bluetooth = React.forwardRef(function Bluetooth({color = 'currentColor', size = 24, title = "bluetooth", ...others}, ref) { - const Bluetooth = React.forwardRef(function Bluetooth({color = 'currentColor', size = 24, title = "bluetooth", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bluetooth - \ No newline at end of file +export default Bluetooth; diff --git a/src/components/Bmcsoftware.tsx b/src/components/Bmcsoftware.tsx index b8b7b2729..89f2cb802 100644 --- a/src/components/Bmcsoftware.tsx +++ b/src/components/Bmcsoftware.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BmcsoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BmcsoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bmcsoftware = React.forwardRef(function Bmcsoftware({color = 'currentColor', size = 24, title = "bmcsoftware", ...others}, ref) { - const Bmcsoftware = React.forwardRef(function Bmcsoftware({color = 'currentColor', size = 24, title = "bmcsoftware", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bmcsoftware - \ No newline at end of file +export default Bmcsoftware; diff --git a/src/components/Bmw.tsx b/src/components/Bmw.tsx index 579970239..b53137d15 100644 --- a/src/components/Bmw.tsx +++ b/src/components/Bmw.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BmwProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BmwProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bmw = React.forwardRef(function Bmw({color = 'currentColor', size = 24, title = "bmw", ...others}, ref) { - const Bmw = React.forwardRef(function Bmw({color = 'currentColor', size = 24, title = "bmw", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bmw - \ No newline at end of file +export default Bmw; diff --git a/src/components/Boehringeringelheim.tsx b/src/components/Boehringeringelheim.tsx index 5449da848..2eaa79757 100644 --- a/src/components/Boehringeringelheim.tsx +++ b/src/components/Boehringeringelheim.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BoehringeringelheimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BoehringeringelheimProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Boehringeringelheim = React.forwardRef(function Boehringeringelheim({color = 'currentColor', size = 24, title = "boehringeringelheim", ...others}, ref) { - const Boehringeringelheim = React.forwardRef(function Boehringeringelheim({color = 'currentColor', size = 24, title = "boehringeringelheim", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Boehringeringelheim - \ No newline at end of file +export default Boehringeringelheim; diff --git a/src/components/Boeing.tsx b/src/components/Boeing.tsx index cd539b4cc..ef345e7bc 100644 --- a/src/components/Boeing.tsx +++ b/src/components/Boeing.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BoeingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BoeingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Boeing = React.forwardRef(function Boeing({color = 'currentColor', size = 24, title = "boeing", ...others}, ref) { - const Boeing = React.forwardRef(function Boeing({color = 'currentColor', size = 24, title = "boeing", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Boeing - \ No newline at end of file +export default Boeing; diff --git a/src/components/Bookalope.tsx b/src/components/Bookalope.tsx index 07328fb1e..306d0041d 100644 --- a/src/components/Bookalope.tsx +++ b/src/components/Bookalope.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BookalopeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BookalopeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bookalope = React.forwardRef(function Bookalope({color = 'currentColor', size = 24, title = "bookalope", ...others}, ref) { - const Bookalope = React.forwardRef(function Bookalope({color = 'currentColor', size = 24, title = "bookalope", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bookalope - \ No newline at end of file +export default Bookalope; diff --git a/src/components/Bookbub.tsx b/src/components/Bookbub.tsx index 5fd3c9b90..e7bc7ed51 100644 --- a/src/components/Bookbub.tsx +++ b/src/components/Bookbub.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BookbubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BookbubProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bookbub = React.forwardRef(function Bookbub({color = 'currentColor', size = 24, title = "bookbub", ...others}, ref) { - const Bookbub = React.forwardRef(function Bookbub({color = 'currentColor', size = 24, title = "bookbub", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bookbub - \ No newline at end of file +export default Bookbub; diff --git a/src/components/Bookmeter.tsx b/src/components/Bookmeter.tsx index 573565945..b05fb5797 100644 --- a/src/components/Bookmeter.tsx +++ b/src/components/Bookmeter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BookmeterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BookmeterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bookmeter = React.forwardRef(function Bookmeter({color = 'currentColor', size = 24, title = "bookmeter", ...others}, ref) { - const Bookmeter = React.forwardRef(function Bookmeter({color = 'currentColor', size = 24, title = "bookmeter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bookmeter - \ No newline at end of file +export default Bookmeter; diff --git a/src/components/Bookmyshow.tsx b/src/components/Bookmyshow.tsx index 89bc57d11..22446078a 100644 --- a/src/components/Bookmyshow.tsx +++ b/src/components/Bookmyshow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BookmyshowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BookmyshowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bookmyshow = React.forwardRef(function Bookmyshow({color = 'currentColor', size = 24, title = "bookmyshow", ...others}, ref) { - const Bookmyshow = React.forwardRef(function Bookmyshow({color = 'currentColor', size = 24, title = "bookmyshow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bookmyshow - \ No newline at end of file +export default Bookmyshow; diff --git a/src/components/Bookstack.tsx b/src/components/Bookstack.tsx index 3ca7a263f..4257404c7 100644 --- a/src/components/Bookstack.tsx +++ b/src/components/Bookstack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BookstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BookstackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bookstack = React.forwardRef(function Bookstack({color = 'currentColor', size = 24, title = "bookstack", ...others}, ref) { - const Bookstack = React.forwardRef(function Bookstack({color = 'currentColor', size = 24, title = "bookstack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bookstack - \ No newline at end of file +export default Bookstack; diff --git a/src/components/Boost.tsx b/src/components/Boost.tsx index a18cdb60a..42e9bc4c9 100644 --- a/src/components/Boost.tsx +++ b/src/components/Boost.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BoostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BoostProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Boost = React.forwardRef(function Boost({color = 'currentColor', size = 24, title = "boost", ...others}, ref) { - const Boost = React.forwardRef(function Boost({color = 'currentColor', size = 24, title = "boost", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Boost - \ No newline at end of file +export default Boost; diff --git a/src/components/Boots.tsx b/src/components/Boots.tsx index a07e1394d..4bd8eabea 100644 --- a/src/components/Boots.tsx +++ b/src/components/Boots.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BootsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BootsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Boots = React.forwardRef(function Boots({color = 'currentColor', size = 24, title = "boots", ...others}, ref) { - const Boots = React.forwardRef(function Boots({color = 'currentColor', size = 24, title = "boots", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Boots - \ No newline at end of file +export default Boots; diff --git a/src/components/Bootstrap.tsx b/src/components/Bootstrap.tsx index 5bfbb5ff2..61dc683c5 100644 --- a/src/components/Bootstrap.tsx +++ b/src/components/Bootstrap.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BootstrapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BootstrapProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bootstrap = React.forwardRef(function Bootstrap({color = 'currentColor', size = 24, title = "bootstrap", ...others}, ref) { - const Bootstrap = React.forwardRef(function Bootstrap({color = 'currentColor', size = 24, title = "bootstrap", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bootstrap - \ No newline at end of file +export default Bootstrap; diff --git a/src/components/Borgbackup.tsx b/src/components/Borgbackup.tsx index 0e051a677..80bc31b5d 100644 --- a/src/components/Borgbackup.tsx +++ b/src/components/Borgbackup.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BorgbackupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BorgbackupProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Borgbackup = React.forwardRef(function Borgbackup({color = 'currentColor', size = 24, title = "borgbackup", ...others}, ref) { - const Borgbackup = React.forwardRef(function Borgbackup({color = 'currentColor', size = 24, title = "borgbackup", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Borgbackup - \ No newline at end of file +export default Borgbackup; diff --git a/src/components/Bosch.tsx b/src/components/Bosch.tsx index a45f5be6e..6f953b0eb 100644 --- a/src/components/Bosch.tsx +++ b/src/components/Bosch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BoschProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BoschProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bosch = React.forwardRef(function Bosch({color = 'currentColor', size = 24, title = "bosch", ...others}, ref) { - const Bosch = React.forwardRef(function Bosch({color = 'currentColor', size = 24, title = "bosch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bosch - \ No newline at end of file +export default Bosch; diff --git a/src/components/Bose.tsx b/src/components/Bose.tsx index c2d925cf6..32c5269ae 100644 --- a/src/components/Bose.tsx +++ b/src/components/Bose.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BoseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BoseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bose = React.forwardRef(function Bose({color = 'currentColor', size = 24, title = "bose", ...others}, ref) { - const Bose = React.forwardRef(function Bose({color = 'currentColor', size = 24, title = "bose", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bose - \ No newline at end of file +export default Bose; diff --git a/src/components/Boulanger.tsx b/src/components/Boulanger.tsx index 49da72736..1d606caba 100644 --- a/src/components/Boulanger.tsx +++ b/src/components/Boulanger.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BoulangerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BoulangerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Boulanger = React.forwardRef(function Boulanger({color = 'currentColor', size = 24, title = "boulanger", ...others}, ref) { - const Boulanger = React.forwardRef(function Boulanger({color = 'currentColor', size = 24, title = "boulanger", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Boulanger - \ No newline at end of file +export default Boulanger; diff --git a/src/components/Bower.tsx b/src/components/Bower.tsx index 4f051548b..c582b6e12 100644 --- a/src/components/Bower.tsx +++ b/src/components/Bower.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BowerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BowerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bower = React.forwardRef(function Bower({color = 'currentColor', size = 24, title = "bower", ...others}, ref) { - const Bower = React.forwardRef(function Bower({color = 'currentColor', size = 24, title = "bower", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bower - \ No newline at end of file +export default Bower; diff --git a/src/components/Box.tsx b/src/components/Box.tsx index 474bbefb6..0e1ce1019 100644 --- a/src/components/Box.tsx +++ b/src/components/Box.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BoxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Box = React.forwardRef(function Box({color = 'currentColor', size = 24, title = "box", ...others}, ref) { - const Box = React.forwardRef(function Box({color = 'currentColor', size = 24, title = "box", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Box - \ No newline at end of file +export default Box; diff --git a/src/components/Boxysvg.tsx b/src/components/Boxysvg.tsx index 2724e4258..f36c6a4a5 100644 --- a/src/components/Boxysvg.tsx +++ b/src/components/Boxysvg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BoxysvgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BoxysvgProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Boxysvg = React.forwardRef(function Boxysvg({color = 'currentColor', size = 24, title = "boxysvg", ...others}, ref) { - const Boxysvg = React.forwardRef(function Boxysvg({color = 'currentColor', size = 24, title = "boxysvg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Boxysvg - \ No newline at end of file +export default Boxysvg; diff --git a/src/components/Brandfolder.tsx b/src/components/Brandfolder.tsx index ee2753ec5..673c68d93 100644 --- a/src/components/Brandfolder.tsx +++ b/src/components/Brandfolder.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BrandfolderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BrandfolderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Brandfolder = React.forwardRef(function Brandfolder({color = 'currentColor', size = 24, title = "brandfolder", ...others}, ref) { - const Brandfolder = React.forwardRef(function Brandfolder({color = 'currentColor', size = 24, title = "brandfolder", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Brandfolder - \ No newline at end of file +export default Brandfolder; diff --git a/src/components/Brave.tsx b/src/components/Brave.tsx index ec41dbf0f..bf5ba8a40 100644 --- a/src/components/Brave.tsx +++ b/src/components/Brave.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BraveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BraveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Brave = React.forwardRef(function Brave({color = 'currentColor', size = 24, title = "brave", ...others}, ref) { - const Brave = React.forwardRef(function Brave({color = 'currentColor', size = 24, title = "brave", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Brave - \ No newline at end of file +export default Brave; diff --git a/src/components/Breaker.tsx b/src/components/Breaker.tsx index d9e8c8768..29bf1d2a2 100644 --- a/src/components/Breaker.tsx +++ b/src/components/Breaker.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BreakerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BreakerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Breaker = React.forwardRef(function Breaker({color = 'currentColor', size = 24, title = "breaker", ...others}, ref) { - const Breaker = React.forwardRef(function Breaker({color = 'currentColor', size = 24, title = "breaker", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Breaker - \ No newline at end of file +export default Breaker; diff --git a/src/components/Britishairways.tsx b/src/components/Britishairways.tsx index f18f276a2..92ccf182a 100644 --- a/src/components/Britishairways.tsx +++ b/src/components/Britishairways.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BritishairwaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BritishairwaysProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Britishairways = React.forwardRef(function Britishairways({color = 'currentColor', size = 24, title = "britishairways", ...others}, ref) { - const Britishairways = React.forwardRef(function Britishairways({color = 'currentColor', size = 24, title = "britishairways", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Britishairways - \ No newline at end of file +export default Britishairways; diff --git a/src/components/Broadcom.tsx b/src/components/Broadcom.tsx index f9078122b..fa48c02ca 100644 --- a/src/components/Broadcom.tsx +++ b/src/components/Broadcom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BroadcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BroadcomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Broadcom = React.forwardRef(function Broadcom({color = 'currentColor', size = 24, title = "broadcom", ...others}, ref) { - const Broadcom = React.forwardRef(function Broadcom({color = 'currentColor', size = 24, title = "broadcom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Broadcom - \ No newline at end of file +export default Broadcom; diff --git a/src/components/Bt.tsx b/src/components/Bt.tsx index c4b86b06c..6d0961e2a 100644 --- a/src/components/Bt.tsx +++ b/src/components/Bt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BtProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bt = React.forwardRef(function Bt({color = 'currentColor', size = 24, title = "bt", ...others}, ref) { - const Bt = React.forwardRef(function Bt({color = 'currentColor', size = 24, title = "bt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bt - \ No newline at end of file +export default Bt; diff --git a/src/components/Buddy.tsx b/src/components/Buddy.tsx index 733d6868d..29c71d02c 100644 --- a/src/components/Buddy.tsx +++ b/src/components/Buddy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BuddyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BuddyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Buddy = React.forwardRef(function Buddy({color = 'currentColor', size = 24, title = "buddy", ...others}, ref) { - const Buddy = React.forwardRef(function Buddy({color = 'currentColor', size = 24, title = "buddy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Buddy - \ No newline at end of file +export default Buddy; diff --git a/src/components/Budibase.tsx b/src/components/Budibase.tsx index b056250b8..144c5b6fa 100644 --- a/src/components/Budibase.tsx +++ b/src/components/Budibase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BudibaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BudibaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Budibase = React.forwardRef(function Budibase({color = 'currentColor', size = 24, title = "budibase", ...others}, ref) { - const Budibase = React.forwardRef(function Budibase({color = 'currentColor', size = 24, title = "budibase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Budibase - \ No newline at end of file +export default Budibase; diff --git a/src/components/Buefy.tsx b/src/components/Buefy.tsx index ef3cd5f9b..443a4820e 100644 --- a/src/components/Buefy.tsx +++ b/src/components/Buefy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BuefyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BuefyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Buefy = React.forwardRef(function Buefy({color = 'currentColor', size = 24, title = "buefy", ...others}, ref) { - const Buefy = React.forwardRef(function Buefy({color = 'currentColor', size = 24, title = "buefy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Buefy - \ No newline at end of file +export default Buefy; diff --git a/src/components/Buffer.tsx b/src/components/Buffer.tsx index e01cba1b3..8ffa94cea 100644 --- a/src/components/Buffer.tsx +++ b/src/components/Buffer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BufferProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BufferProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Buffer = React.forwardRef(function Buffer({color = 'currentColor', size = 24, title = "buffer", ...others}, ref) { - const Buffer = React.forwardRef(function Buffer({color = 'currentColor', size = 24, title = "buffer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Buffer - \ No newline at end of file +export default Buffer; diff --git a/src/components/Bugatti.tsx b/src/components/Bugatti.tsx index 96980f38c..068795852 100644 --- a/src/components/Bugatti.tsx +++ b/src/components/Bugatti.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BugattiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BugattiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bugatti = React.forwardRef(function Bugatti({color = 'currentColor', size = 24, title = "bugatti", ...others}, ref) { - const Bugatti = React.forwardRef(function Bugatti({color = 'currentColor', size = 24, title = "bugatti", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bugatti - \ No newline at end of file +export default Bugatti; diff --git a/src/components/Bugcrowd.tsx b/src/components/Bugcrowd.tsx index 6371aca20..497cf9088 100644 --- a/src/components/Bugcrowd.tsx +++ b/src/components/Bugcrowd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BugcrowdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BugcrowdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bugcrowd = React.forwardRef(function Bugcrowd({color = 'currentColor', size = 24, title = "bugcrowd", ...others}, ref) { - const Bugcrowd = React.forwardRef(function Bugcrowd({color = 'currentColor', size = 24, title = "bugcrowd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bugcrowd - \ No newline at end of file +export default Bugcrowd; diff --git a/src/components/Bugsnag.tsx b/src/components/Bugsnag.tsx index 65d2c0caf..01401e777 100644 --- a/src/components/Bugsnag.tsx +++ b/src/components/Bugsnag.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BugsnagProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BugsnagProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bugsnag = React.forwardRef(function Bugsnag({color = 'currentColor', size = 24, title = "bugsnag", ...others}, ref) { - const Bugsnag = React.forwardRef(function Bugsnag({color = 'currentColor', size = 24, title = "bugsnag", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bugsnag - \ No newline at end of file +export default Bugsnag; diff --git a/src/components/Buildkite.tsx b/src/components/Buildkite.tsx index d598f6608..ecfa01172 100644 --- a/src/components/Buildkite.tsx +++ b/src/components/Buildkite.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BuildkiteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BuildkiteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Buildkite = React.forwardRef(function Buildkite({color = 'currentColor', size = 24, title = "buildkite", ...others}, ref) { - const Buildkite = React.forwardRef(function Buildkite({color = 'currentColor', size = 24, title = "buildkite", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Buildkite - \ No newline at end of file +export default Buildkite; diff --git a/src/components/Bukalapak.tsx b/src/components/Bukalapak.tsx index 2960f243a..34e87dc5a 100644 --- a/src/components/Bukalapak.tsx +++ b/src/components/Bukalapak.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BukalapakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BukalapakProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bukalapak = React.forwardRef(function Bukalapak({color = 'currentColor', size = 24, title = "bukalapak", ...others}, ref) { - const Bukalapak = React.forwardRef(function Bukalapak({color = 'currentColor', size = 24, title = "bukalapak", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bukalapak - \ No newline at end of file +export default Bukalapak; diff --git a/src/components/Bulma.tsx b/src/components/Bulma.tsx index fd4bc1f69..97047b1e3 100644 --- a/src/components/Bulma.tsx +++ b/src/components/Bulma.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BulmaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BulmaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bulma = React.forwardRef(function Bulma({color = 'currentColor', size = 24, title = "bulma", ...others}, ref) { - const Bulma = React.forwardRef(function Bulma({color = 'currentColor', size = 24, title = "bulma", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bulma - \ No newline at end of file +export default Bulma; diff --git a/src/components/Bun.tsx b/src/components/Bun.tsx index f574593e8..4a441d5f3 100644 --- a/src/components/Bun.tsx +++ b/src/components/Bun.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BunProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BunProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bun = React.forwardRef(function Bun({color = 'currentColor', size = 24, title = "bun", ...others}, ref) { - const Bun = React.forwardRef(function Bun({color = 'currentColor', size = 24, title = "bun", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bun - \ No newline at end of file +export default Bun; diff --git a/src/components/Bunq.tsx b/src/components/Bunq.tsx index fa7db901b..8d3374a05 100644 --- a/src/components/Bunq.tsx +++ b/src/components/Bunq.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BunqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BunqProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bunq = React.forwardRef(function Bunq({color = 'currentColor', size = 24, title = "bunq", ...others}, ref) { - const Bunq = React.forwardRef(function Bunq({color = 'currentColor', size = 24, title = "bunq", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bunq - \ No newline at end of file +export default Bunq; diff --git a/src/components/Burgerking.tsx b/src/components/Burgerking.tsx index 6a072420e..8df54f729 100644 --- a/src/components/Burgerking.tsx +++ b/src/components/Burgerking.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BurgerkingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BurgerkingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Burgerking = React.forwardRef(function Burgerking({color = 'currentColor', size = 24, title = "burgerking", ...others}, ref) { - const Burgerking = React.forwardRef(function Burgerking({color = 'currentColor', size = 24, title = "burgerking", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Burgerking - \ No newline at end of file +export default Burgerking; diff --git a/src/components/Burton.tsx b/src/components/Burton.tsx index e16d8b78f..05091d54e 100644 --- a/src/components/Burton.tsx +++ b/src/components/Burton.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BurtonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BurtonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Burton = React.forwardRef(function Burton({color = 'currentColor', size = 24, title = "burton", ...others}, ref) { - const Burton = React.forwardRef(function Burton({color = 'currentColor', size = 24, title = "burton", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Burton - \ No newline at end of file +export default Burton; diff --git a/src/components/Buymeacoffee.tsx b/src/components/Buymeacoffee.tsx index c18cda81d..1d884b5fa 100644 --- a/src/components/Buymeacoffee.tsx +++ b/src/components/Buymeacoffee.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BuymeacoffeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BuymeacoffeeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Buymeacoffee = React.forwardRef(function Buymeacoffee({color = 'currentColor', size = 24, title = "buymeacoffee", ...others}, ref) { - const Buymeacoffee = React.forwardRef(function Buymeacoffee({color = 'currentColor', size = 24, title = "buymeacoffee", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Buymeacoffee - \ No newline at end of file +export default Buymeacoffee; diff --git a/src/components/Buzzfeed.tsx b/src/components/Buzzfeed.tsx index a5c269ed7..985beec7d 100644 --- a/src/components/Buzzfeed.tsx +++ b/src/components/Buzzfeed.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BuzzfeedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BuzzfeedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Buzzfeed = React.forwardRef(function Buzzfeed({color = 'currentColor', size = 24, title = "buzzfeed", ...others}, ref) { - const Buzzfeed = React.forwardRef(function Buzzfeed({color = 'currentColor', size = 24, title = "buzzfeed", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Buzzfeed - \ No newline at end of file +export default Buzzfeed; diff --git a/src/components/Byjus.tsx b/src/components/Byjus.tsx index fb3694aa2..3a20abfcb 100644 --- a/src/components/Byjus.tsx +++ b/src/components/Byjus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ByjusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ByjusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Byjus = React.forwardRef(function Byjus({color = 'currentColor', size = 24, title = "byjus", ...others}, ref) { - const Byjus = React.forwardRef(function Byjus({color = 'currentColor', size = 24, title = "byjus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Byjus - \ No newline at end of file +export default Byjus; diff --git a/src/components/Byte.tsx b/src/components/Byte.tsx index 8946b09bb..94f545efd 100644 --- a/src/components/Byte.tsx +++ b/src/components/Byte.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ByteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ByteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Byte = React.forwardRef(function Byte({color = 'currentColor', size = 24, title = "byte", ...others}, ref) { - const Byte = React.forwardRef(function Byte({color = 'currentColor', size = 24, title = "byte", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Byte - \ No newline at end of file +export default Byte; diff --git a/src/components/Bytedance.tsx b/src/components/Bytedance.tsx index 0cedee13d..725e2276a 100644 --- a/src/components/Bytedance.tsx +++ b/src/components/Bytedance.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type BytedanceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type BytedanceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Bytedance = React.forwardRef(function Bytedance({color = 'currentColor', size = 24, title = "bytedance", ...others}, ref) { - const Bytedance = React.forwardRef(function Bytedance({color = 'currentColor', size = 24, title = "bytedance", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Bytedance - \ No newline at end of file +export default Bytedance; diff --git a/src/components/C.tsx b/src/components/C.tsx index 26cf5baa7..f6b1179b9 100644 --- a/src/components/C.tsx +++ b/src/components/C.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const C = React.forwardRef(function C({color = 'currentColor', size = 24, title = "c", ...others}, ref) { - const C = React.forwardRef(function C({color = 'currentColor', size = 24, title = "c", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default C - \ No newline at end of file +export default C; diff --git a/src/components/Cachet.tsx b/src/components/Cachet.tsx index 5dd55a9a1..096e7fab7 100644 --- a/src/components/Cachet.tsx +++ b/src/components/Cachet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CachetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CachetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cachet = React.forwardRef(function Cachet({color = 'currentColor', size = 24, title = "cachet", ...others}, ref) { - const Cachet = React.forwardRef(function Cachet({color = 'currentColor', size = 24, title = "cachet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cachet - \ No newline at end of file +export default Cachet; diff --git a/src/components/Cafepress.tsx b/src/components/Cafepress.tsx new file mode 100644 index 000000000..bea42a959 --- /dev/null +++ b/src/components/Cafepress.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type CafepressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Cafepress = React.forwardRef(function Cafepress({color = 'currentColor', size = 24, title = "cafepress", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Cafepress; diff --git a/src/components/Caffeine.tsx b/src/components/Caffeine.tsx index f0f70890a..8996e7817 100644 --- a/src/components/Caffeine.tsx +++ b/src/components/Caffeine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CaffeineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CaffeineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Caffeine = React.forwardRef(function Caffeine({color = 'currentColor', size = 24, title = "caffeine", ...others}, ref) { - const Caffeine = React.forwardRef(function Caffeine({color = 'currentColor', size = 24, title = "caffeine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Caffeine - \ No newline at end of file +export default Caffeine; diff --git a/src/components/Cairometro.tsx b/src/components/Cairometro.tsx index 81f3da993..6410b328d 100644 --- a/src/components/Cairometro.tsx +++ b/src/components/Cairometro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CairometroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CairometroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cairometro = React.forwardRef(function Cairometro({color = 'currentColor', size = 24, title = "cairometro", ...others}, ref) { - const Cairometro = React.forwardRef(function Cairometro({color = 'currentColor', size = 24, title = "cairometro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cairometro - \ No newline at end of file +export default Cairometro; diff --git a/src/components/Cakephp.tsx b/src/components/Cakephp.tsx index 889ddda94..55ff96435 100644 --- a/src/components/Cakephp.tsx +++ b/src/components/Cakephp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CakephpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CakephpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cakephp = React.forwardRef(function Cakephp({color = 'currentColor', size = 24, title = "cakephp", ...others}, ref) { - const Cakephp = React.forwardRef(function Cakephp({color = 'currentColor', size = 24, title = "cakephp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cakephp - \ No newline at end of file +export default Cakephp; diff --git a/src/components/Campaignmonitor.tsx b/src/components/Campaignmonitor.tsx index e0ea4111f..2c8dfd73c 100644 --- a/src/components/Campaignmonitor.tsx +++ b/src/components/Campaignmonitor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CampaignmonitorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CampaignmonitorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Campaignmonitor = React.forwardRef(function Campaignmonitor({color = 'currentColor', size = 24, title = "campaignmonitor", ...others}, ref) { - const Campaignmonitor = React.forwardRef(function Campaignmonitor({color = 'currentColor', size = 24, title = "campaignmonitor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Campaignmonitor - \ No newline at end of file +export default Campaignmonitor; diff --git a/src/components/Canonical.tsx b/src/components/Canonical.tsx index 1458e3fda..13de7bcdb 100644 --- a/src/components/Canonical.tsx +++ b/src/components/Canonical.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CanonicalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CanonicalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Canonical = React.forwardRef(function Canonical({color = 'currentColor', size = 24, title = "canonical", ...others}, ref) { - const Canonical = React.forwardRef(function Canonical({color = 'currentColor', size = 24, title = "canonical", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Canonical - \ No newline at end of file +export default Canonical; diff --git a/src/components/Canva.tsx b/src/components/Canva.tsx index 3503d4b18..48b8fe2e6 100644 --- a/src/components/Canva.tsx +++ b/src/components/Canva.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CanvaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CanvaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Canva = React.forwardRef(function Canva({color = 'currentColor', size = 24, title = "canva", ...others}, ref) { - const Canva = React.forwardRef(function Canva({color = 'currentColor', size = 24, title = "canva", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Canva - \ No newline at end of file +export default Canva; diff --git a/src/components/Capacitor.tsx b/src/components/Capacitor.tsx index 280764da8..23a4eb1a5 100644 --- a/src/components/Capacitor.tsx +++ b/src/components/Capacitor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CapacitorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CapacitorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Capacitor = React.forwardRef(function Capacitor({color = 'currentColor', size = 24, title = "capacitor", ...others}, ref) { - const Capacitor = React.forwardRef(function Capacitor({color = 'currentColor', size = 24, title = "capacitor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Capacitor - \ No newline at end of file +export default Capacitor; diff --git a/src/components/Carrefour.tsx b/src/components/Carrefour.tsx index 9b501818e..3f92213ae 100644 --- a/src/components/Carrefour.tsx +++ b/src/components/Carrefour.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CarrefourProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CarrefourProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Carrefour = React.forwardRef(function Carrefour({color = 'currentColor', size = 24, title = "carrefour", ...others}, ref) { - const Carrefour = React.forwardRef(function Carrefour({color = 'currentColor', size = 24, title = "carrefour", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Carrefour - \ No newline at end of file +export default Carrefour; diff --git a/src/components/Carthrottle.tsx b/src/components/Carthrottle.tsx index 7b74be6dc..330e1eea0 100644 --- a/src/components/Carthrottle.tsx +++ b/src/components/Carthrottle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CarthrottleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CarthrottleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Carthrottle = React.forwardRef(function Carthrottle({color = 'currentColor', size = 24, title = "carthrottle", ...others}, ref) { - const Carthrottle = React.forwardRef(function Carthrottle({color = 'currentColor', size = 24, title = "carthrottle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Carthrottle - \ No newline at end of file +export default Carthrottle; diff --git a/src/components/Carto.tsx b/src/components/Carto.tsx index dc270ef47..d84b93ecd 100644 --- a/src/components/Carto.tsx +++ b/src/components/Carto.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CartoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CartoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Carto = React.forwardRef(function Carto({color = 'currentColor', size = 24, title = "carto", ...others}, ref) { - const Carto = React.forwardRef(function Carto({color = 'currentColor', size = 24, title = "carto", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Carto - \ No newline at end of file +export default Carto; diff --git a/src/components/Cashapp.tsx b/src/components/Cashapp.tsx index 0e7d2628d..aecc9acad 100644 --- a/src/components/Cashapp.tsx +++ b/src/components/Cashapp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CashappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CashappProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cashapp = React.forwardRef(function Cashapp({color = 'currentColor', size = 24, title = "cashapp", ...others}, ref) { - const Cashapp = React.forwardRef(function Cashapp({color = 'currentColor', size = 24, title = "cashapp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cashapp - \ No newline at end of file +export default Cashapp; diff --git a/src/components/Castbox.tsx b/src/components/Castbox.tsx index 37f172bb7..0b2751493 100644 --- a/src/components/Castbox.tsx +++ b/src/components/Castbox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CastboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CastboxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Castbox = React.forwardRef(function Castbox({color = 'currentColor', size = 24, title = "castbox", ...others}, ref) { - const Castbox = React.forwardRef(function Castbox({color = 'currentColor', size = 24, title = "castbox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Castbox - \ No newline at end of file +export default Castbox; diff --git a/src/components/Castorama.tsx b/src/components/Castorama.tsx index 9cb80d0c6..de609f19a 100644 --- a/src/components/Castorama.tsx +++ b/src/components/Castorama.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CastoramaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CastoramaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Castorama = React.forwardRef(function Castorama({color = 'currentColor', size = 24, title = "castorama", ...others}, ref) { - const Castorama = React.forwardRef(function Castorama({color = 'currentColor', size = 24, title = "castorama", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Castorama - \ No newline at end of file +export default Castorama; diff --git a/src/components/Castro.tsx b/src/components/Castro.tsx index f373f5192..90bcc072d 100644 --- a/src/components/Castro.tsx +++ b/src/components/Castro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CastroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CastroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Castro = React.forwardRef(function Castro({color = 'currentColor', size = 24, title = "castro", ...others}, ref) { - const Castro = React.forwardRef(function Castro({color = 'currentColor', size = 24, title = "castro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Castro - \ No newline at end of file +export default Castro; diff --git a/src/components/Caterpillar.tsx b/src/components/Caterpillar.tsx index b67917a99..0f04c20f7 100644 --- a/src/components/Caterpillar.tsx +++ b/src/components/Caterpillar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CaterpillarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CaterpillarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Caterpillar = React.forwardRef(function Caterpillar({color = 'currentColor', size = 24, title = "caterpillar", ...others}, ref) { - const Caterpillar = React.forwardRef(function Caterpillar({color = 'currentColor', size = 24, title = "caterpillar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Caterpillar - \ No newline at end of file +export default Caterpillar; diff --git a/src/components/Cbs.tsx b/src/components/Cbs.tsx index de319fb36..345195c01 100644 --- a/src/components/Cbs.tsx +++ b/src/components/Cbs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CbsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CbsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cbs = React.forwardRef(function Cbs({color = 'currentColor', size = 24, title = "cbs", ...others}, ref) { - const Cbs = React.forwardRef(function Cbs({color = 'currentColor', size = 24, title = "cbs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cbs - \ No newline at end of file +export default Cbs; diff --git a/src/components/Cdprojekt.tsx b/src/components/Cdprojekt.tsx index fa6fe48db..ad42dff31 100644 --- a/src/components/Cdprojekt.tsx +++ b/src/components/Cdprojekt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CdprojektProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CdprojektProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cdprojekt = React.forwardRef(function Cdprojekt({color = 'currentColor', size = 24, title = "cdprojekt", ...others}, ref) { - const Cdprojekt = React.forwardRef(function Cdprojekt({color = 'currentColor', size = 24, title = "cdprojekt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cdprojekt - \ No newline at end of file +export default Cdprojekt; diff --git a/src/components/Celery.tsx b/src/components/Celery.tsx index 43f53a1ff..ef5749ddf 100644 --- a/src/components/Celery.tsx +++ b/src/components/Celery.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CeleryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CeleryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Celery = React.forwardRef(function Celery({color = 'currentColor', size = 24, title = "celery", ...others}, ref) { - const Celery = React.forwardRef(function Celery({color = 'currentColor', size = 24, title = "celery", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Celery - \ No newline at end of file +export default Celery; diff --git a/src/components/Centos.tsx b/src/components/Centos.tsx index 57f5b68c7..6e9f161fc 100644 --- a/src/components/Centos.tsx +++ b/src/components/Centos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CentosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CentosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Centos = React.forwardRef(function Centos({color = 'currentColor', size = 24, title = "centos", ...others}, ref) { - const Centos = React.forwardRef(function Centos({color = 'currentColor', size = 24, title = "centos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Centos - \ No newline at end of file +export default Centos; diff --git a/src/components/Ceph.tsx b/src/components/Ceph.tsx index 45b5b6c0a..78c1cb3f0 100644 --- a/src/components/Ceph.tsx +++ b/src/components/Ceph.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CephProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CephProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ceph = React.forwardRef(function Ceph({color = 'currentColor', size = 24, title = "ceph", ...others}, ref) { - const Ceph = React.forwardRef(function Ceph({color = 'currentColor', size = 24, title = "ceph", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ceph - \ No newline at end of file +export default Ceph; diff --git a/src/components/Cesium.tsx b/src/components/Cesium.tsx index 05c599799..1722f2a00 100644 --- a/src/components/Cesium.tsx +++ b/src/components/Cesium.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CesiumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CesiumProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cesium = React.forwardRef(function Cesium({color = 'currentColor', size = 24, title = "cesium", ...others}, ref) { - const Cesium = React.forwardRef(function Cesium({color = 'currentColor', size = 24, title = "cesium", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cesium - \ No newline at end of file +export default Cesium; diff --git a/src/components/Chai.tsx b/src/components/Chai.tsx index e5b0f7fec..5583e5dbb 100644 --- a/src/components/Chai.tsx +++ b/src/components/Chai.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChaiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chai = React.forwardRef(function Chai({color = 'currentColor', size = 24, title = "chai", ...others}, ref) { - const Chai = React.forwardRef(function Chai({color = 'currentColor', size = 24, title = "chai", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chai - \ No newline at end of file +export default Chai; diff --git a/src/components/Chainlink.tsx b/src/components/Chainlink.tsx index 8d276b1c4..c6ff89f9a 100644 --- a/src/components/Chainlink.tsx +++ b/src/components/Chainlink.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChainlinkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChainlinkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chainlink = React.forwardRef(function Chainlink({color = 'currentColor', size = 24, title = "chainlink", ...others}, ref) { - const Chainlink = React.forwardRef(function Chainlink({color = 'currentColor', size = 24, title = "chainlink", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chainlink - \ No newline at end of file +export default Chainlink; diff --git a/src/components/Chakraui.tsx b/src/components/Chakraui.tsx index e511d8a05..edd07fe91 100644 --- a/src/components/Chakraui.tsx +++ b/src/components/Chakraui.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChakrauiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChakrauiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chakraui = React.forwardRef(function Chakraui({color = 'currentColor', size = 24, title = "chakraui", ...others}, ref) { - const Chakraui = React.forwardRef(function Chakraui({color = 'currentColor', size = 24, title = "chakraui", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chakraui - \ No newline at end of file +export default Chakraui; diff --git a/src/components/Chartdotjs.tsx b/src/components/Chartdotjs.tsx index 8b178caae..428cc9f37 100644 --- a/src/components/Chartdotjs.tsx +++ b/src/components/Chartdotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChartdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChartdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chartdotjs = React.forwardRef(function Chartdotjs({color = 'currentColor', size = 24, title = "chartdotjs", ...others}, ref) { - const Chartdotjs = React.forwardRef(function Chartdotjs({color = 'currentColor', size = 24, title = "chartdotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chartdotjs - \ No newline at end of file +export default Chartdotjs; diff --git a/src/components/Chartmogul.tsx b/src/components/Chartmogul.tsx index 18e0b0346..a1abf074f 100644 --- a/src/components/Chartmogul.tsx +++ b/src/components/Chartmogul.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChartmogulProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChartmogulProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chartmogul = React.forwardRef(function Chartmogul({color = 'currentColor', size = 24, title = "chartmogul", ...others}, ref) { - const Chartmogul = React.forwardRef(function Chartmogul({color = 'currentColor', size = 24, title = "chartmogul", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chartmogul - \ No newline at end of file +export default Chartmogul; diff --git a/src/components/Chase.tsx b/src/components/Chase.tsx index bf30027f1..b624580c2 100644 --- a/src/components/Chase.tsx +++ b/src/components/Chase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chase = React.forwardRef(function Chase({color = 'currentColor', size = 24, title = "chase", ...others}, ref) { - const Chase = React.forwardRef(function Chase({color = 'currentColor', size = 24, title = "chase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chase - \ No newline at end of file +export default Chase; diff --git a/src/components/Chatbot.tsx b/src/components/Chatbot.tsx index cfb4013d9..b54a466e6 100644 --- a/src/components/Chatbot.tsx +++ b/src/components/Chatbot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChatbotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChatbotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chatbot = React.forwardRef(function Chatbot({color = 'currentColor', size = 24, title = "chatbot", ...others}, ref) { - const Chatbot = React.forwardRef(function Chatbot({color = 'currentColor', size = 24, title = "chatbot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chatbot - \ No newline at end of file +export default Chatbot; diff --git a/src/components/Checkio.tsx b/src/components/Checkio.tsx index cb66f2b34..13b4e5d01 100644 --- a/src/components/Checkio.tsx +++ b/src/components/Checkio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CheckioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CheckioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Checkio = React.forwardRef(function Checkio({color = 'currentColor', size = 24, title = "checkio", ...others}, ref) { - const Checkio = React.forwardRef(function Checkio({color = 'currentColor', size = 24, title = "checkio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Checkio - \ No newline at end of file +export default Checkio; diff --git a/src/components/Checkmarx.tsx b/src/components/Checkmarx.tsx index 51e4c0747..775b33033 100644 --- a/src/components/Checkmarx.tsx +++ b/src/components/Checkmarx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CheckmarxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CheckmarxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Checkmarx = React.forwardRef(function Checkmarx({color = 'currentColor', size = 24, title = "checkmarx", ...others}, ref) { - const Checkmarx = React.forwardRef(function Checkmarx({color = 'currentColor', size = 24, title = "checkmarx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Checkmarx - \ No newline at end of file +export default Checkmarx; diff --git a/src/components/Chef.tsx b/src/components/Chef.tsx index 13ff4f1d0..9fdb33ea1 100644 --- a/src/components/Chef.tsx +++ b/src/components/Chef.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChefProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChefProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chef = React.forwardRef(function Chef({color = 'currentColor', size = 24, title = "chef", ...others}, ref) { - const Chef = React.forwardRef(function Chef({color = 'currentColor', size = 24, title = "chef", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chef - \ No newline at end of file +export default Chef; diff --git a/src/components/Chemex.tsx b/src/components/Chemex.tsx index c4f404760..6fa0e5dd2 100644 --- a/src/components/Chemex.tsx +++ b/src/components/Chemex.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChemexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChemexProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chemex = React.forwardRef(function Chemex({color = 'currentColor', size = 24, title = "chemex", ...others}, ref) { - const Chemex = React.forwardRef(function Chemex({color = 'currentColor', size = 24, title = "chemex", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chemex - \ No newline at end of file +export default Chemex; diff --git a/src/components/Chevrolet.tsx b/src/components/Chevrolet.tsx index 5a62ace55..f744a70b2 100644 --- a/src/components/Chevrolet.tsx +++ b/src/components/Chevrolet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChevroletProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChevroletProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chevrolet = React.forwardRef(function Chevrolet({color = 'currentColor', size = 24, title = "chevrolet", ...others}, ref) { - const Chevrolet = React.forwardRef(function Chevrolet({color = 'currentColor', size = 24, title = "chevrolet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chevrolet - \ No newline at end of file +export default Chevrolet; diff --git a/src/components/Chinaeasternairlines.tsx b/src/components/Chinaeasternairlines.tsx index 0d6c88441..50451c909 100644 --- a/src/components/Chinaeasternairlines.tsx +++ b/src/components/Chinaeasternairlines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChinaeasternairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChinaeasternairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chinaeasternairlines = React.forwardRef(function Chinaeasternairlines({color = 'currentColor', size = 24, title = "chinaeasternairlines", ...others}, ref) { - const Chinaeasternairlines = React.forwardRef(function Chinaeasternairlines({color = 'currentColor', size = 24, title = "chinaeasternairlines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chinaeasternairlines - \ No newline at end of file +export default Chinaeasternairlines; diff --git a/src/components/Chinasouthernairlines.tsx b/src/components/Chinasouthernairlines.tsx index d2e4ac8eb..5e0b297ad 100644 --- a/src/components/Chinasouthernairlines.tsx +++ b/src/components/Chinasouthernairlines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChinasouthernairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChinasouthernairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chinasouthernairlines = React.forwardRef(function Chinasouthernairlines({color = 'currentColor', size = 24, title = "chinasouthernairlines", ...others}, ref) { - const Chinasouthernairlines = React.forwardRef(function Chinasouthernairlines({color = 'currentColor', size = 24, title = "chinasouthernairlines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chinasouthernairlines - \ No newline at end of file +export default Chinasouthernairlines; diff --git a/src/components/Chocolatey.tsx b/src/components/Chocolatey.tsx index 416c6947c..46ce29e19 100644 --- a/src/components/Chocolatey.tsx +++ b/src/components/Chocolatey.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChocolateyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChocolateyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chocolatey = React.forwardRef(function Chocolatey({color = 'currentColor', size = 24, title = "chocolatey", ...others}, ref) { - const Chocolatey = React.forwardRef(function Chocolatey({color = 'currentColor', size = 24, title = "chocolatey", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chocolatey - \ No newline at end of file +export default Chocolatey; diff --git a/src/components/Chromecast.tsx b/src/components/Chromecast.tsx index 68c092acb..a648e67c8 100644 --- a/src/components/Chromecast.tsx +++ b/src/components/Chromecast.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChromecastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChromecastProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chromecast = React.forwardRef(function Chromecast({color = 'currentColor', size = 24, title = "chromecast", ...others}, ref) { - const Chromecast = React.forwardRef(function Chromecast({color = 'currentColor', size = 24, title = "chromecast", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chromecast - \ No newline at end of file +export default Chromecast; diff --git a/src/components/Chrysler.tsx b/src/components/Chrysler.tsx index 30a7c8dc5..4e9d07ea5 100644 --- a/src/components/Chrysler.tsx +++ b/src/components/Chrysler.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChryslerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChryslerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chrysler = React.forwardRef(function Chrysler({color = 'currentColor', size = 24, title = "chrysler", ...others}, ref) { - const Chrysler = React.forwardRef(function Chrysler({color = 'currentColor', size = 24, title = "chrysler", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chrysler - \ No newline at end of file +export default Chrysler; diff --git a/src/components/Chupachups.tsx b/src/components/Chupachups.tsx index 28cb6280d..99b0cd247 100644 --- a/src/components/Chupachups.tsx +++ b/src/components/Chupachups.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ChupachupsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ChupachupsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Chupachups = React.forwardRef(function Chupachups({color = 'currentColor', size = 24, title = "chupachups", ...others}, ref) { - const Chupachups = React.forwardRef(function Chupachups({color = 'currentColor', size = 24, title = "chupachups", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Chupachups - \ No newline at end of file +export default Chupachups; diff --git a/src/components/Cilium.tsx b/src/components/Cilium.tsx index fdc209b19..2ce13ec28 100644 --- a/src/components/Cilium.tsx +++ b/src/components/Cilium.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CiliumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CiliumProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cilium = React.forwardRef(function Cilium({color = 'currentColor', size = 24, title = "cilium", ...others}, ref) { - const Cilium = React.forwardRef(function Cilium({color = 'currentColor', size = 24, title = "cilium", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cilium - \ No newline at end of file +export default Cilium; diff --git a/src/components/CinemaFourD.tsx b/src/components/CinemaFourD.tsx index 26132f3fd..ee44135b2 100644 --- a/src/components/CinemaFourD.tsx +++ b/src/components/CinemaFourD.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CinemaFourDProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CinemaFourDProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const CinemaFourD = React.forwardRef(function CinemaFourD({color = 'currentColor', size = 24, title = "cinema4d", ...others}, ref) { - const CinemaFourD = React.forwardRef(function CinemaFourD({color = 'currentColor', size = 24, title = "cinema4d", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default CinemaFourD - \ No newline at end of file +export default CinemaFourD; diff --git a/src/components/Circle.tsx b/src/components/Circle.tsx index 553a9a010..3727d235d 100644 --- a/src/components/Circle.tsx +++ b/src/components/Circle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CircleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CircleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Circle = React.forwardRef(function Circle({color = 'currentColor', size = 24, title = "circle", ...others}, ref) { - const Circle = React.forwardRef(function Circle({color = 'currentColor', size = 24, title = "circle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Circle - \ No newline at end of file +export default Circle; diff --git a/src/components/Circleci.tsx b/src/components/Circleci.tsx index 013e9f69a..c3a0b3335 100644 --- a/src/components/Circleci.tsx +++ b/src/components/Circleci.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CircleciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CircleciProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Circleci = React.forwardRef(function Circleci({color = 'currentColor', size = 24, title = "circleci", ...others}, ref) { - const Circleci = React.forwardRef(function Circleci({color = 'currentColor', size = 24, title = "circleci", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Circleci - \ No newline at end of file +export default Circleci; diff --git a/src/components/Cirrusci.tsx b/src/components/Cirrusci.tsx index d086d8f23..335cd898f 100644 --- a/src/components/Cirrusci.tsx +++ b/src/components/Cirrusci.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CirrusciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CirrusciProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cirrusci = React.forwardRef(function Cirrusci({color = 'currentColor', size = 24, title = "cirrusci", ...others}, ref) { - const Cirrusci = React.forwardRef(function Cirrusci({color = 'currentColor', size = 24, title = "cirrusci", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cirrusci - \ No newline at end of file +export default Cirrusci; diff --git a/src/components/Cisco.tsx b/src/components/Cisco.tsx index d79a1661b..23a6eb507 100644 --- a/src/components/Cisco.tsx +++ b/src/components/Cisco.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CiscoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CiscoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cisco = React.forwardRef(function Cisco({color = 'currentColor', size = 24, title = "cisco", ...others}, ref) { - const Cisco = React.forwardRef(function Cisco({color = 'currentColor', size = 24, title = "cisco", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cisco - \ No newline at end of file +export default Cisco; diff --git a/src/components/Citrix.tsx b/src/components/Citrix.tsx index b8e1db598..518477769 100644 --- a/src/components/Citrix.tsx +++ b/src/components/Citrix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CitrixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CitrixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Citrix = React.forwardRef(function Citrix({color = 'currentColor', size = 24, title = "citrix", ...others}, ref) { - const Citrix = React.forwardRef(function Citrix({color = 'currentColor', size = 24, title = "citrix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Citrix - \ No newline at end of file +export default Citrix; diff --git a/src/components/Citroen.tsx b/src/components/Citroen.tsx index 0f3ae1341..87cc98f4b 100644 --- a/src/components/Citroen.tsx +++ b/src/components/Citroen.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CitroenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CitroenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Citroen = React.forwardRef(function Citroen({color = 'currentColor', size = 24, title = "citroen", ...others}, ref) { - const Citroen = React.forwardRef(function Citroen({color = 'currentColor', size = 24, title = "citroen", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Citroen - \ No newline at end of file +export default Citroen; diff --git a/src/components/Civicrm.tsx b/src/components/Civicrm.tsx index 5b66ea215..53f62c2dd 100644 --- a/src/components/Civicrm.tsx +++ b/src/components/Civicrm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CivicrmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CivicrmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Civicrm = React.forwardRef(function Civicrm({color = 'currentColor', size = 24, title = "civicrm", ...others}, ref) { - const Civicrm = React.forwardRef(function Civicrm({color = 'currentColor', size = 24, title = "civicrm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Civicrm - \ No newline at end of file +export default Civicrm; diff --git a/src/components/Civo.tsx b/src/components/Civo.tsx index d0968009c..eb73a195b 100644 --- a/src/components/Civo.tsx +++ b/src/components/Civo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CivoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CivoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Civo = React.forwardRef(function Civo({color = 'currentColor', size = 24, title = "civo", ...others}, ref) { - const Civo = React.forwardRef(function Civo({color = 'currentColor', size = 24, title = "civo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Civo - \ No newline at end of file +export default Civo; diff --git a/src/components/CkeditorFour.tsx b/src/components/CkeditorFour.tsx index 9840f8a97..140de4d97 100644 --- a/src/components/CkeditorFour.tsx +++ b/src/components/CkeditorFour.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CkeditorFourProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CkeditorFourProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const CkeditorFour = React.forwardRef(function CkeditorFour({color = 'currentColor', size = 24, title = "ckeditor4", ...others}, ref) { - const CkeditorFour = React.forwardRef(function CkeditorFour({color = 'currentColor', size = 24, title = "ckeditor4", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default CkeditorFour - \ No newline at end of file +export default CkeditorFour; diff --git a/src/components/Claris.tsx b/src/components/Claris.tsx index 98107ebc8..d663d0e40 100644 --- a/src/components/Claris.tsx +++ b/src/components/Claris.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ClarisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ClarisProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Claris = React.forwardRef(function Claris({color = 'currentColor', size = 24, title = "claris", ...others}, ref) { - const Claris = React.forwardRef(function Claris({color = 'currentColor', size = 24, title = "claris", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Claris - \ No newline at end of file +export default Claris; diff --git a/src/components/Clickhouse.tsx b/src/components/Clickhouse.tsx index 028a2af23..3c0f63c05 100644 --- a/src/components/Clickhouse.tsx +++ b/src/components/Clickhouse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ClickhouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ClickhouseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Clickhouse = React.forwardRef(function Clickhouse({color = 'currentColor', size = 24, title = "clickhouse", ...others}, ref) { - const Clickhouse = React.forwardRef(function Clickhouse({color = 'currentColor', size = 24, title = "clickhouse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Clickhouse - \ No newline at end of file +export default Clickhouse; diff --git a/src/components/Clickup.tsx b/src/components/Clickup.tsx index c58a71df5..f98eb0398 100644 --- a/src/components/Clickup.tsx +++ b/src/components/Clickup.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ClickupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ClickupProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Clickup = React.forwardRef(function Clickup({color = 'currentColor', size = 24, title = "clickup", ...others}, ref) { - const Clickup = React.forwardRef(function Clickup({color = 'currentColor', size = 24, title = "clickup", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Clickup - \ No newline at end of file +export default Clickup; diff --git a/src/components/Clion.tsx b/src/components/Clion.tsx index f2cca0743..7da62c700 100644 --- a/src/components/Clion.tsx +++ b/src/components/Clion.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ClionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ClionProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Clion = React.forwardRef(function Clion({color = 'currentColor', size = 24, title = "clion", ...others}, ref) { - const Clion = React.forwardRef(function Clion({color = 'currentColor', size = 24, title = "clion", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Clion - \ No newline at end of file +export default Clion; diff --git a/src/components/Cliqz.tsx b/src/components/Cliqz.tsx index 001944f34..4c6d31c86 100644 --- a/src/components/Cliqz.tsx +++ b/src/components/Cliqz.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CliqzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CliqzProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cliqz = React.forwardRef(function Cliqz({color = 'currentColor', size = 24, title = "cliqz", ...others}, ref) { - const Cliqz = React.forwardRef(function Cliqz({color = 'currentColor', size = 24, title = "cliqz", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cliqz - \ No newline at end of file +export default Cliqz; diff --git a/src/components/Clockify.tsx b/src/components/Clockify.tsx index e6963f53a..cb2ca8f26 100644 --- a/src/components/Clockify.tsx +++ b/src/components/Clockify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ClockifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ClockifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Clockify = React.forwardRef(function Clockify({color = 'currentColor', size = 24, title = "clockify", ...others}, ref) { - const Clockify = React.forwardRef(function Clockify({color = 'currentColor', size = 24, title = "clockify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Clockify - \ No newline at end of file +export default Clockify; diff --git a/src/components/Clojure.tsx b/src/components/Clojure.tsx index a7ee7ee39..2b447880a 100644 --- a/src/components/Clojure.tsx +++ b/src/components/Clojure.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ClojureProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ClojureProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Clojure = React.forwardRef(function Clojure({color = 'currentColor', size = 24, title = "clojure", ...others}, ref) { - const Clojure = React.forwardRef(function Clojure({color = 'currentColor', size = 24, title = "clojure", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Clojure - \ No newline at end of file +export default Clojure; diff --git a/src/components/CloudSixSix.tsx b/src/components/CloudSixSix.tsx index be3a5b4b7..60342ee3f 100644 --- a/src/components/CloudSixSix.tsx +++ b/src/components/CloudSixSix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CloudSixSixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CloudSixSixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const CloudSixSix = React.forwardRef(function CloudSixSix({color = 'currentColor', size = 24, title = "cloud66", ...others}, ref) { - const CloudSixSix = React.forwardRef(function CloudSixSix({color = 'currentColor', size = 24, title = "cloud66", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default CloudSixSix - \ No newline at end of file +export default CloudSixSix; diff --git a/src/components/Cloudbees.tsx b/src/components/Cloudbees.tsx index 487afc37b..12f4e5332 100644 --- a/src/components/Cloudbees.tsx +++ b/src/components/Cloudbees.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CloudbeesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CloudbeesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cloudbees = React.forwardRef(function Cloudbees({color = 'currentColor', size = 24, title = "cloudbees", ...others}, ref) { - const Cloudbees = React.forwardRef(function Cloudbees({color = 'currentColor', size = 24, title = "cloudbees", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cloudbees - \ No newline at end of file +export default Cloudbees; diff --git a/src/components/Cloudcannon.tsx b/src/components/Cloudcannon.tsx index 9378f9eb3..3ab6d5a2c 100644 --- a/src/components/Cloudcannon.tsx +++ b/src/components/Cloudcannon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CloudcannonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CloudcannonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cloudcannon = React.forwardRef(function Cloudcannon({color = 'currentColor', size = 24, title = "cloudcannon", ...others}, ref) { - const Cloudcannon = React.forwardRef(function Cloudcannon({color = 'currentColor', size = 24, title = "cloudcannon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cloudcannon - \ No newline at end of file +export default Cloudcannon; diff --git a/src/components/Cloudera.tsx b/src/components/Cloudera.tsx index 7602e15b6..f86dfa0bf 100644 --- a/src/components/Cloudera.tsx +++ b/src/components/Cloudera.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ClouderaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ClouderaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cloudera = React.forwardRef(function Cloudera({color = 'currentColor', size = 24, title = "cloudera", ...others}, ref) { - const Cloudera = React.forwardRef(function Cloudera({color = 'currentColor', size = 24, title = "cloudera", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cloudera - \ No newline at end of file +export default Cloudera; diff --git a/src/components/Cloudflare.tsx b/src/components/Cloudflare.tsx index 1420548b3..77be6589c 100644 --- a/src/components/Cloudflare.tsx +++ b/src/components/Cloudflare.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CloudflareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CloudflareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cloudflare = React.forwardRef(function Cloudflare({color = 'currentColor', size = 24, title = "cloudflare", ...others}, ref) { - const Cloudflare = React.forwardRef(function Cloudflare({color = 'currentColor', size = 24, title = "cloudflare", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cloudflare - \ No newline at end of file +export default Cloudflare; diff --git a/src/components/Cloudflarepages.tsx b/src/components/Cloudflarepages.tsx index 50b22ee98..c00fc47e1 100644 --- a/src/components/Cloudflarepages.tsx +++ b/src/components/Cloudflarepages.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CloudflarepagesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CloudflarepagesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cloudflarepages = React.forwardRef(function Cloudflarepages({color = 'currentColor', size = 24, title = "cloudflarepages", ...others}, ref) { - const Cloudflarepages = React.forwardRef(function Cloudflarepages({color = 'currentColor', size = 24, title = "cloudflarepages", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cloudflarepages - \ No newline at end of file +export default Cloudflarepages; diff --git a/src/components/Cloudfoundry.tsx b/src/components/Cloudfoundry.tsx index f12e5b8a2..b40a8e79c 100644 --- a/src/components/Cloudfoundry.tsx +++ b/src/components/Cloudfoundry.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CloudfoundryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CloudfoundryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cloudfoundry = React.forwardRef(function Cloudfoundry({color = 'currentColor', size = 24, title = "cloudfoundry", ...others}, ref) { - const Cloudfoundry = React.forwardRef(function Cloudfoundry({color = 'currentColor', size = 24, title = "cloudfoundry", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cloudfoundry - \ No newline at end of file +export default Cloudfoundry; diff --git a/src/components/Cloudsmith.tsx b/src/components/Cloudsmith.tsx index 6358c03cd..6b492a4f2 100644 --- a/src/components/Cloudsmith.tsx +++ b/src/components/Cloudsmith.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CloudsmithProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CloudsmithProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cloudsmith = React.forwardRef(function Cloudsmith({color = 'currentColor', size = 24, title = "cloudsmith", ...others}, ref) { - const Cloudsmith = React.forwardRef(function Cloudsmith({color = 'currentColor', size = 24, title = "cloudsmith", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cloudsmith - \ No newline at end of file +export default Cloudsmith; diff --git a/src/components/Cloudways.tsx b/src/components/Cloudways.tsx index f0767f8dc..2eb0604f7 100644 --- a/src/components/Cloudways.tsx +++ b/src/components/Cloudways.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CloudwaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CloudwaysProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cloudways = React.forwardRef(function Cloudways({color = 'currentColor', size = 24, title = "cloudways", ...others}, ref) { - const Cloudways = React.forwardRef(function Cloudways({color = 'currentColor', size = 24, title = "cloudways", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cloudways - \ No newline at end of file +export default Cloudways; diff --git a/src/components/Clubhouse.tsx b/src/components/Clubhouse.tsx index 4d065aa4d..f8b4a641a 100644 --- a/src/components/Clubhouse.tsx +++ b/src/components/Clubhouse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ClubhouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ClubhouseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Clubhouse = React.forwardRef(function Clubhouse({color = 'currentColor', size = 24, title = "clubhouse", ...others}, ref) { - const Clubhouse = React.forwardRef(function Clubhouse({color = 'currentColor', size = 24, title = "clubhouse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Clubhouse - \ No newline at end of file +export default Clubhouse; diff --git a/src/components/Clyp.tsx b/src/components/Clyp.tsx index ab7912631..f1f017bf9 100644 --- a/src/components/Clyp.tsx +++ b/src/components/Clyp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ClypProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ClypProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Clyp = React.forwardRef(function Clyp({color = 'currentColor', size = 24, title = "clyp", ...others}, ref) { - const Clyp = React.forwardRef(function Clyp({color = 'currentColor', size = 24, title = "clyp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Clyp - \ No newline at end of file +export default Clyp; diff --git a/src/components/Cmake.tsx b/src/components/Cmake.tsx index 9dcb3cc7d..9e26c5277 100644 --- a/src/components/Cmake.tsx +++ b/src/components/Cmake.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CmakeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CmakeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cmake = React.forwardRef(function Cmake({color = 'currentColor', size = 24, title = "cmake", ...others}, ref) { - const Cmake = React.forwardRef(function Cmake({color = 'currentColor', size = 24, title = "cmake", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cmake - \ No newline at end of file +export default Cmake; diff --git a/src/components/Cncf.tsx b/src/components/Cncf.tsx index c662e6de9..21ff06a8a 100644 --- a/src/components/Cncf.tsx +++ b/src/components/Cncf.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CncfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CncfProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cncf = React.forwardRef(function Cncf({color = 'currentColor', size = 24, title = "cncf", ...others}, ref) { - const Cncf = React.forwardRef(function Cncf({color = 'currentColor', size = 24, title = "cncf", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cncf - \ No newline at end of file +export default Cncf; diff --git a/src/components/Cnn.tsx b/src/components/Cnn.tsx index df02e14ab..a5b8624e8 100644 --- a/src/components/Cnn.tsx +++ b/src/components/Cnn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CnnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CnnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cnn = React.forwardRef(function Cnn({color = 'currentColor', size = 24, title = "cnn", ...others}, ref) { - const Cnn = React.forwardRef(function Cnn({color = 'currentColor', size = 24, title = "cnn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cnn - \ No newline at end of file +export default Cnn; diff --git a/src/components/Cockpit.tsx b/src/components/Cockpit.tsx index 860db84d1..0bb677b80 100644 --- a/src/components/Cockpit.tsx +++ b/src/components/Cockpit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CockpitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CockpitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cockpit = React.forwardRef(function Cockpit({color = 'currentColor', size = 24, title = "cockpit", ...others}, ref) { - const Cockpit = React.forwardRef(function Cockpit({color = 'currentColor', size = 24, title = "cockpit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cockpit - \ No newline at end of file +export default Cockpit; diff --git a/src/components/Cockroachlabs.tsx b/src/components/Cockroachlabs.tsx index fbedc391c..2d716c9d8 100644 --- a/src/components/Cockroachlabs.tsx +++ b/src/components/Cockroachlabs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CockroachlabsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CockroachlabsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cockroachlabs = React.forwardRef(function Cockroachlabs({color = 'currentColor', size = 24, title = "cockroachlabs", ...others}, ref) { - const Cockroachlabs = React.forwardRef(function Cockroachlabs({color = 'currentColor', size = 24, title = "cockroachlabs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cockroachlabs - \ No newline at end of file +export default Cockroachlabs; diff --git a/src/components/Cocoapods.tsx b/src/components/Cocoapods.tsx index a1052ce24..78cf08707 100644 --- a/src/components/Cocoapods.tsx +++ b/src/components/Cocoapods.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CocoapodsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CocoapodsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cocoapods = React.forwardRef(function Cocoapods({color = 'currentColor', size = 24, title = "cocoapods", ...others}, ref) { - const Cocoapods = React.forwardRef(function Cocoapods({color = 'currentColor', size = 24, title = "cocoapods", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cocoapods - \ No newline at end of file +export default Cocoapods; diff --git a/src/components/Cocos.tsx b/src/components/Cocos.tsx index 771941ce3..b6df94783 100644 --- a/src/components/Cocos.tsx +++ b/src/components/Cocos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CocosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CocosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cocos = React.forwardRef(function Cocos({color = 'currentColor', size = 24, title = "cocos", ...others}, ref) { - const Cocos = React.forwardRef(function Cocos({color = 'currentColor', size = 24, title = "cocos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cocos - \ No newline at end of file +export default Cocos; diff --git a/src/components/Coda.tsx b/src/components/Coda.tsx index 1faac7eca..a66468b00 100644 --- a/src/components/Coda.tsx +++ b/src/components/Coda.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coda = React.forwardRef(function Coda({color = 'currentColor', size = 24, title = "coda", ...others}, ref) { - const Coda = React.forwardRef(function Coda({color = 'currentColor', size = 24, title = "coda", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coda - \ No newline at end of file +export default Coda; diff --git a/src/components/Codacy.tsx b/src/components/Codacy.tsx index 556ac1e57..115515803 100644 --- a/src/components/Codacy.tsx +++ b/src/components/Codacy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodacyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodacyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codacy = React.forwardRef(function Codacy({color = 'currentColor', size = 24, title = "codacy", ...others}, ref) { - const Codacy = React.forwardRef(function Codacy({color = 'currentColor', size = 24, title = "codacy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codacy - \ No newline at end of file +export default Codacy; diff --git a/src/components/Codeberg.tsx b/src/components/Codeberg.tsx index ff2dcfaf5..9becd9f32 100644 --- a/src/components/Codeberg.tsx +++ b/src/components/Codeberg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodebergProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodebergProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codeberg = React.forwardRef(function Codeberg({color = 'currentColor', size = 24, title = "codeberg", ...others}, ref) { - const Codeberg = React.forwardRef(function Codeberg({color = 'currentColor', size = 24, title = "codeberg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codeberg - \ No newline at end of file +export default Codeberg; diff --git a/src/components/Codecademy.tsx b/src/components/Codecademy.tsx index be575b674..cf252e16a 100644 --- a/src/components/Codecademy.tsx +++ b/src/components/Codecademy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodecademyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodecademyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codecademy = React.forwardRef(function Codecademy({color = 'currentColor', size = 24, title = "codecademy", ...others}, ref) { - const Codecademy = React.forwardRef(function Codecademy({color = 'currentColor', size = 24, title = "codecademy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codecademy - \ No newline at end of file +export default Codecademy; diff --git a/src/components/Codeceptjs.tsx b/src/components/Codeceptjs.tsx index 6f5d4998e..417316794 100644 --- a/src/components/Codeceptjs.tsx +++ b/src/components/Codeceptjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodeceptjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodeceptjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codeceptjs = React.forwardRef(function Codeceptjs({color = 'currentColor', size = 24, title = "codeceptjs", ...others}, ref) { - const Codeceptjs = React.forwardRef(function Codeceptjs({color = 'currentColor', size = 24, title = "codeceptjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codeceptjs - \ No newline at end of file +export default Codeceptjs; diff --git a/src/components/Codechef.tsx b/src/components/Codechef.tsx index f50c72808..dc5ef5cd4 100644 --- a/src/components/Codechef.tsx +++ b/src/components/Codechef.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodechefProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodechefProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codechef = React.forwardRef(function Codechef({color = 'currentColor', size = 24, title = "codechef", ...others}, ref) { - const Codechef = React.forwardRef(function Codechef({color = 'currentColor', size = 24, title = "codechef", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codechef - \ No newline at end of file +export default Codechef; diff --git a/src/components/Codeclimate.tsx b/src/components/Codeclimate.tsx index 88627a3c5..c4daa0f13 100644 --- a/src/components/Codeclimate.tsx +++ b/src/components/Codeclimate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodeclimateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodeclimateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codeclimate = React.forwardRef(function Codeclimate({color = 'currentColor', size = 24, title = "codeclimate", ...others}, ref) { - const Codeclimate = React.forwardRef(function Codeclimate({color = 'currentColor', size = 24, title = "codeclimate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codeclimate - \ No newline at end of file +export default Codeclimate; diff --git a/src/components/Codecov.tsx b/src/components/Codecov.tsx index d012a7be2..8e852e92e 100644 --- a/src/components/Codecov.tsx +++ b/src/components/Codecov.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodecovProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodecovProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codecov = React.forwardRef(function Codecov({color = 'currentColor', size = 24, title = "codecov", ...others}, ref) { - const Codecov = React.forwardRef(function Codecov({color = 'currentColor', size = 24, title = "codecov", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codecov - \ No newline at end of file +export default Codecov; diff --git a/src/components/Codefactor.tsx b/src/components/Codefactor.tsx index d1bafdaf5..99f7ab069 100644 --- a/src/components/Codefactor.tsx +++ b/src/components/Codefactor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodefactorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodefactorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codefactor = React.forwardRef(function Codefactor({color = 'currentColor', size = 24, title = "codefactor", ...others}, ref) { - const Codefactor = React.forwardRef(function Codefactor({color = 'currentColor', size = 24, title = "codefactor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codefactor - \ No newline at end of file +export default Codefactor; diff --git a/src/components/Codeforces.tsx b/src/components/Codeforces.tsx index bbcc4d754..fc1ebed79 100644 --- a/src/components/Codeforces.tsx +++ b/src/components/Codeforces.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodeforcesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodeforcesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codeforces = React.forwardRef(function Codeforces({color = 'currentColor', size = 24, title = "codeforces", ...others}, ref) { - const Codeforces = React.forwardRef(function Codeforces({color = 'currentColor', size = 24, title = "codeforces", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codeforces - \ No newline at end of file +export default Codeforces; diff --git a/src/components/Codeigniter.tsx b/src/components/Codeigniter.tsx index e3ac4d6a6..ac026f78f 100644 --- a/src/components/Codeigniter.tsx +++ b/src/components/Codeigniter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodeigniterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodeigniterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codeigniter = React.forwardRef(function Codeigniter({color = 'currentColor', size = 24, title = "codeigniter", ...others}, ref) { - const Codeigniter = React.forwardRef(function Codeigniter({color = 'currentColor', size = 24, title = "codeigniter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codeigniter - \ No newline at end of file +export default Codeigniter; diff --git a/src/components/Codemagic.tsx b/src/components/Codemagic.tsx index 8e64f4bb1..939f61cb0 100644 --- a/src/components/Codemagic.tsx +++ b/src/components/Codemagic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodemagicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodemagicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codemagic = React.forwardRef(function Codemagic({color = 'currentColor', size = 24, title = "codemagic", ...others}, ref) { - const Codemagic = React.forwardRef(function Codemagic({color = 'currentColor', size = 24, title = "codemagic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codemagic - \ No newline at end of file +export default Codemagic; diff --git a/src/components/Codemirror.tsx b/src/components/Codemirror.tsx index 243c5b554..692d4466f 100644 --- a/src/components/Codemirror.tsx +++ b/src/components/Codemirror.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodemirrorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodemirrorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codemirror = React.forwardRef(function Codemirror({color = 'currentColor', size = 24, title = "codemirror", ...others}, ref) { - const Codemirror = React.forwardRef(function Codemirror({color = 'currentColor', size = 24, title = "codemirror", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codemirror - \ No newline at end of file +export default Codemirror; diff --git a/src/components/Codenewbie.tsx b/src/components/Codenewbie.tsx index d2f117098..a84f17c2e 100644 --- a/src/components/Codenewbie.tsx +++ b/src/components/Codenewbie.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodenewbieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodenewbieProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codenewbie = React.forwardRef(function Codenewbie({color = 'currentColor', size = 24, title = "codenewbie", ...others}, ref) { - const Codenewbie = React.forwardRef(function Codenewbie({color = 'currentColor', size = 24, title = "codenewbie", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codenewbie - \ No newline at end of file +export default Codenewbie; diff --git a/src/components/Codepen.tsx b/src/components/Codepen.tsx index b6c4f33e5..bafd33c3f 100644 --- a/src/components/Codepen.tsx +++ b/src/components/Codepen.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodepenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodepenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codepen = React.forwardRef(function Codepen({color = 'currentColor', size = 24, title = "codepen", ...others}, ref) { - const Codepen = React.forwardRef(function Codepen({color = 'currentColor', size = 24, title = "codepen", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codepen - \ No newline at end of file +export default Codepen; diff --git a/src/components/Codeproject.tsx b/src/components/Codeproject.tsx index b9a96a779..93e9815ae 100644 --- a/src/components/Codeproject.tsx +++ b/src/components/Codeproject.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodeprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodeprojectProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codeproject = React.forwardRef(function Codeproject({color = 'currentColor', size = 24, title = "codeproject", ...others}, ref) { - const Codeproject = React.forwardRef(function Codeproject({color = 'currentColor', size = 24, title = "codeproject", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codeproject - \ No newline at end of file +export default Codeproject; diff --git a/src/components/Codereview.tsx b/src/components/Codereview.tsx index b4319c539..43d9cb6eb 100644 --- a/src/components/Codereview.tsx +++ b/src/components/Codereview.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodereviewProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodereviewProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codereview = React.forwardRef(function Codereview({color = 'currentColor', size = 24, title = "codereview", ...others}, ref) { - const Codereview = React.forwardRef(function Codereview({color = 'currentColor', size = 24, title = "codereview", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codereview - \ No newline at end of file +export default Codereview; diff --git a/src/components/Codersrank.tsx b/src/components/Codersrank.tsx index 9f05edeb3..0ee945eec 100644 --- a/src/components/Codersrank.tsx +++ b/src/components/Codersrank.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodersrankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodersrankProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codersrank = React.forwardRef(function Codersrank({color = 'currentColor', size = 24, title = "codersrank", ...others}, ref) { - const Codersrank = React.forwardRef(function Codersrank({color = 'currentColor', size = 24, title = "codersrank", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codersrank - \ No newline at end of file +export default Codersrank; diff --git a/src/components/Coderwall.tsx b/src/components/Coderwall.tsx index 3eb9b0227..22a65dace 100644 --- a/src/components/Coderwall.tsx +++ b/src/components/Coderwall.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CoderwallProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CoderwallProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coderwall = React.forwardRef(function Coderwall({color = 'currentColor', size = 24, title = "coderwall", ...others}, ref) { - const Coderwall = React.forwardRef(function Coderwall({color = 'currentColor', size = 24, title = "coderwall", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coderwall - \ No newline at end of file +export default Coderwall; diff --git a/src/components/Codesandbox.tsx b/src/components/Codesandbox.tsx index af110b641..f5af2e226 100644 --- a/src/components/Codesandbox.tsx +++ b/src/components/Codesandbox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodesandboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodesandboxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codesandbox = React.forwardRef(function Codesandbox({color = 'currentColor', size = 24, title = "codesandbox", ...others}, ref) { - const Codesandbox = React.forwardRef(function Codesandbox({color = 'currentColor', size = 24, title = "codesandbox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codesandbox - \ No newline at end of file +export default Codesandbox; diff --git a/src/components/Codeship.tsx b/src/components/Codeship.tsx index b8c9bfe3f..57950d933 100644 --- a/src/components/Codeship.tsx +++ b/src/components/Codeship.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodeshipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodeshipProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codeship = React.forwardRef(function Codeship({color = 'currentColor', size = 24, title = "codeship", ...others}, ref) { - const Codeship = React.forwardRef(function Codeship({color = 'currentColor', size = 24, title = "codeship", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codeship - \ No newline at end of file +export default Codeship; diff --git a/src/components/Codewars.tsx b/src/components/Codewars.tsx index b664a26a1..a73e8dd6e 100644 --- a/src/components/Codewars.tsx +++ b/src/components/Codewars.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodewarsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodewarsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codewars = React.forwardRef(function Codewars({color = 'currentColor', size = 24, title = "codewars", ...others}, ref) { - const Codewars = React.forwardRef(function Codewars({color = 'currentColor', size = 24, title = "codewars", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codewars - \ No newline at end of file +export default Codewars; diff --git a/src/components/Codingame.tsx b/src/components/Codingame.tsx index cc30e9ab5..4bcc36eea 100644 --- a/src/components/Codingame.tsx +++ b/src/components/Codingame.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodingameProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodingameProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codingame = React.forwardRef(function Codingame({color = 'currentColor', size = 24, title = "codingame", ...others}, ref) { - const Codingame = React.forwardRef(function Codingame({color = 'currentColor', size = 24, title = "codingame", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codingame - \ No newline at end of file +export default Codingame; diff --git a/src/components/Codingninjas.tsx b/src/components/Codingninjas.tsx index 0893e365e..219ce1f72 100644 --- a/src/components/Codingninjas.tsx +++ b/src/components/Codingninjas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodingninjasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodingninjasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codingninjas = React.forwardRef(function Codingninjas({color = 'currentColor', size = 24, title = "codingninjas", ...others}, ref) { - const Codingninjas = React.forwardRef(function Codingninjas({color = 'currentColor', size = 24, title = "codingninjas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codingninjas - \ No newline at end of file +export default Codingninjas; diff --git a/src/components/Codio.tsx b/src/components/Codio.tsx index 00aaae7f9..a4f878d8b 100644 --- a/src/components/Codio.tsx +++ b/src/components/Codio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CodioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CodioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Codio = React.forwardRef(function Codio({color = 'currentColor', size = 24, title = "codio", ...others}, ref) { - const Codio = React.forwardRef(function Codio({color = 'currentColor', size = 24, title = "codio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Codio - \ No newline at end of file +export default Codio; diff --git a/src/components/Coffeescript.tsx b/src/components/Coffeescript.tsx index 2f6ce119f..d5b15fc01 100644 --- a/src/components/Coffeescript.tsx +++ b/src/components/Coffeescript.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CoffeescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CoffeescriptProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coffeescript = React.forwardRef(function Coffeescript({color = 'currentColor', size = 24, title = "coffeescript", ...others}, ref) { - const Coffeescript = React.forwardRef(function Coffeescript({color = 'currentColor', size = 24, title = "coffeescript", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coffeescript - \ No newline at end of file +export default Coffeescript; diff --git a/src/components/Cognizant.tsx b/src/components/Cognizant.tsx index ea49ec762..6eaab3b6b 100644 --- a/src/components/Cognizant.tsx +++ b/src/components/Cognizant.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CognizantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CognizantProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cognizant = React.forwardRef(function Cognizant({color = 'currentColor', size = 24, title = "cognizant", ...others}, ref) { - const Cognizant = React.forwardRef(function Cognizant({color = 'currentColor', size = 24, title = "cognizant", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cognizant - \ No newline at end of file +export default Cognizant; diff --git a/src/components/Coil.tsx b/src/components/Coil.tsx index af8cc8038..cde06ee29 100644 --- a/src/components/Coil.tsx +++ b/src/components/Coil.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CoilProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CoilProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coil = React.forwardRef(function Coil({color = 'currentColor', size = 24, title = "coil", ...others}, ref) { - const Coil = React.forwardRef(function Coil({color = 'currentColor', size = 24, title = "coil", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coil - \ No newline at end of file +export default Coil; diff --git a/src/components/Coinbase.tsx b/src/components/Coinbase.tsx index e49dab947..001786789 100644 --- a/src/components/Coinbase.tsx +++ b/src/components/Coinbase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CoinbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CoinbaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coinbase = React.forwardRef(function Coinbase({color = 'currentColor', size = 24, title = "coinbase", ...others}, ref) { - const Coinbase = React.forwardRef(function Coinbase({color = 'currentColor', size = 24, title = "coinbase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coinbase - \ No newline at end of file +export default Coinbase; diff --git a/src/components/Coinmarketcap.tsx b/src/components/Coinmarketcap.tsx index 5728b72da..a8f3b4659 100644 --- a/src/components/Coinmarketcap.tsx +++ b/src/components/Coinmarketcap.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CoinmarketcapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CoinmarketcapProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coinmarketcap = React.forwardRef(function Coinmarketcap({color = 'currentColor', size = 24, title = "coinmarketcap", ...others}, ref) { - const Coinmarketcap = React.forwardRef(function Coinmarketcap({color = 'currentColor', size = 24, title = "coinmarketcap", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coinmarketcap - \ No newline at end of file +export default Coinmarketcap; diff --git a/src/components/Commerzbank.tsx b/src/components/Commerzbank.tsx index 28e3cf11f..b0dbdb1e2 100644 --- a/src/components/Commerzbank.tsx +++ b/src/components/Commerzbank.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CommerzbankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CommerzbankProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Commerzbank = React.forwardRef(function Commerzbank({color = 'currentColor', size = 24, title = "commerzbank", ...others}, ref) { - const Commerzbank = React.forwardRef(function Commerzbank({color = 'currentColor', size = 24, title = "commerzbank", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Commerzbank - \ No newline at end of file +export default Commerzbank; diff --git a/src/components/Commitlint.tsx b/src/components/Commitlint.tsx index bfc2b62e1..80221324a 100644 --- a/src/components/Commitlint.tsx +++ b/src/components/Commitlint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CommitlintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CommitlintProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Commitlint = React.forwardRef(function Commitlint({color = 'currentColor', size = 24, title = "commitlint", ...others}, ref) { - const Commitlint = React.forwardRef(function Commitlint({color = 'currentColor', size = 24, title = "commitlint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Commitlint - \ No newline at end of file +export default Commitlint; diff --git a/src/components/Commodore.tsx b/src/components/Commodore.tsx new file mode 100644 index 000000000..a1d9f2600 --- /dev/null +++ b/src/components/Commodore.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type CommodoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Commodore = React.forwardRef(function Commodore({color = 'currentColor', size = 24, title = "commodore", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Commodore; diff --git a/src/components/Commonworkflowlanguage.tsx b/src/components/Commonworkflowlanguage.tsx index 3e7e1d760..84c9c3fd0 100644 --- a/src/components/Commonworkflowlanguage.tsx +++ b/src/components/Commonworkflowlanguage.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CommonworkflowlanguageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CommonworkflowlanguageProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Commonworkflowlanguage = React.forwardRef(function Commonworkflowlanguage({color = 'currentColor', size = 24, title = "commonworkflowlanguage", ...others}, ref) { - const Commonworkflowlanguage = React.forwardRef(function Commonworkflowlanguage({color = 'currentColor', size = 24, title = "commonworkflowlanguage", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Commonworkflowlanguage - \ No newline at end of file +export default Commonworkflowlanguage; diff --git a/src/components/Composer.tsx b/src/components/Composer.tsx index 7b6113afb..7ac754ed5 100644 --- a/src/components/Composer.tsx +++ b/src/components/Composer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ComposerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ComposerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Composer = React.forwardRef(function Composer({color = 'currentColor', size = 24, title = "composer", ...others}, ref) { - const Composer = React.forwardRef(function Composer({color = 'currentColor', size = 24, title = "composer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Composer - \ No newline at end of file +export default Composer; diff --git a/src/components/Comsol.tsx b/src/components/Comsol.tsx index 8c7efec9d..d7ab67641 100644 --- a/src/components/Comsol.tsx +++ b/src/components/Comsol.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ComsolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ComsolProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Comsol = React.forwardRef(function Comsol({color = 'currentColor', size = 24, title = "comsol", ...others}, ref) { - const Comsol = React.forwardRef(function Comsol({color = 'currentColor', size = 24, title = "comsol", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Comsol - \ No newline at end of file +export default Comsol; diff --git a/src/components/Conan.tsx b/src/components/Conan.tsx index 405f325ca..44d25e259 100644 --- a/src/components/Conan.tsx +++ b/src/components/Conan.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ConanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ConanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Conan = React.forwardRef(function Conan({color = 'currentColor', size = 24, title = "conan", ...others}, ref) { - const Conan = React.forwardRef(function Conan({color = 'currentColor', size = 24, title = "conan", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Conan - \ No newline at end of file +export default Conan; diff --git a/src/components/Concourse.tsx b/src/components/Concourse.tsx index 0b8a62959..b1bb2a993 100644 --- a/src/components/Concourse.tsx +++ b/src/components/Concourse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ConcourseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ConcourseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Concourse = React.forwardRef(function Concourse({color = 'currentColor', size = 24, title = "concourse", ...others}, ref) { - const Concourse = React.forwardRef(function Concourse({color = 'currentColor', size = 24, title = "concourse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Concourse - \ No newline at end of file +export default Concourse; diff --git a/src/components/Condaforge.tsx b/src/components/Condaforge.tsx index 8fdd833a1..0649140bb 100644 --- a/src/components/Condaforge.tsx +++ b/src/components/Condaforge.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CondaforgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CondaforgeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Condaforge = React.forwardRef(function Condaforge({color = 'currentColor', size = 24, title = "condaforge", ...others}, ref) { - const Condaforge = React.forwardRef(function Condaforge({color = 'currentColor', size = 24, title = "condaforge", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Condaforge - \ No newline at end of file +export default Condaforge; diff --git a/src/components/Conekta.tsx b/src/components/Conekta.tsx index 787b93e90..6584fd8a2 100644 --- a/src/components/Conekta.tsx +++ b/src/components/Conekta.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ConektaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ConektaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Conekta = React.forwardRef(function Conekta({color = 'currentColor', size = 24, title = "conekta", ...others}, ref) { - const Conekta = React.forwardRef(function Conekta({color = 'currentColor', size = 24, title = "conekta", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Conekta - \ No newline at end of file +export default Conekta; diff --git a/src/components/Confluence.tsx b/src/components/Confluence.tsx index bd8796e95..5fdc12c68 100644 --- a/src/components/Confluence.tsx +++ b/src/components/Confluence.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ConfluenceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ConfluenceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Confluence = React.forwardRef(function Confluence({color = 'currentColor', size = 24, title = "confluence", ...others}, ref) { - const Confluence = React.forwardRef(function Confluence({color = 'currentColor', size = 24, title = "confluence", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Confluence - \ No newline at end of file +export default Confluence; diff --git a/src/components/ConstructThree.tsx b/src/components/ConstructThree.tsx index c77f40706..0cc34247b 100644 --- a/src/components/ConstructThree.tsx +++ b/src/components/ConstructThree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ConstructThreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ConstructThreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const ConstructThree = React.forwardRef(function ConstructThree({color = 'currentColor', size = 24, title = "construct3", ...others}, ref) { - const ConstructThree = React.forwardRef(function ConstructThree({color = 'currentColor', size = 24, title = "construct3", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default ConstructThree - \ No newline at end of file +export default ConstructThree; diff --git a/src/components/Consul.tsx b/src/components/Consul.tsx index 3ab21870b..70df159fc 100644 --- a/src/components/Consul.tsx +++ b/src/components/Consul.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ConsulProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ConsulProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Consul = React.forwardRef(function Consul({color = 'currentColor', size = 24, title = "consul", ...others}, ref) { - const Consul = React.forwardRef(function Consul({color = 'currentColor', size = 24, title = "consul", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Consul - \ No newline at end of file +export default Consul; diff --git a/src/components/Contactlesspayment.tsx b/src/components/Contactlesspayment.tsx index c74133f9d..4d9015e42 100644 --- a/src/components/Contactlesspayment.tsx +++ b/src/components/Contactlesspayment.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ContactlesspaymentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ContactlesspaymentProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Contactlesspayment = React.forwardRef(function Contactlesspayment({color = 'currentColor', size = 24, title = "contactlesspayment", ...others}, ref) { - const Contactlesspayment = React.forwardRef(function Contactlesspayment({color = 'currentColor', size = 24, title = "contactlesspayment", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Contactlesspayment - \ No newline at end of file +export default Contactlesspayment; diff --git a/src/components/Containerd.tsx b/src/components/Containerd.tsx index d80990745..475a005f3 100644 --- a/src/components/Containerd.tsx +++ b/src/components/Containerd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ContainerdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ContainerdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Containerd = React.forwardRef(function Containerd({color = 'currentColor', size = 24, title = "containerd", ...others}, ref) { - const Containerd = React.forwardRef(function Containerd({color = 'currentColor', size = 24, title = "containerd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Containerd - \ No newline at end of file +export default Containerd; diff --git a/src/components/Contentful.tsx b/src/components/Contentful.tsx index b391275f1..cc68c7792 100644 --- a/src/components/Contentful.tsx +++ b/src/components/Contentful.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ContentfulProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ContentfulProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Contentful = React.forwardRef(function Contentful({color = 'currentColor', size = 24, title = "contentful", ...others}, ref) { - const Contentful = React.forwardRef(function Contentful({color = 'currentColor', size = 24, title = "contentful", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Contentful - \ No newline at end of file +export default Contentful; diff --git a/src/components/Conventionalcommits.tsx b/src/components/Conventionalcommits.tsx index a05d3e19b..26fea6a81 100644 --- a/src/components/Conventionalcommits.tsx +++ b/src/components/Conventionalcommits.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ConventionalcommitsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ConventionalcommitsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Conventionalcommits = React.forwardRef(function Conventionalcommits({color = 'currentColor', size = 24, title = "conventionalcommits", ...others}, ref) { - const Conventionalcommits = React.forwardRef(function Conventionalcommits({color = 'currentColor', size = 24, title = "conventionalcommits", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Conventionalcommits - \ No newline at end of file +export default Conventionalcommits; diff --git a/src/components/Convertio.tsx b/src/components/Convertio.tsx index db4255c04..84774119e 100644 --- a/src/components/Convertio.tsx +++ b/src/components/Convertio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ConvertioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ConvertioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Convertio = React.forwardRef(function Convertio({color = 'currentColor', size = 24, title = "convertio", ...others}, ref) { - const Convertio = React.forwardRef(function Convertio({color = 'currentColor', size = 24, title = "convertio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Convertio - \ No newline at end of file +export default Convertio; diff --git a/src/components/Cookiecutter.tsx b/src/components/Cookiecutter.tsx index b77acfd4b..576f7092a 100644 --- a/src/components/Cookiecutter.tsx +++ b/src/components/Cookiecutter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CookiecutterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CookiecutterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cookiecutter = React.forwardRef(function Cookiecutter({color = 'currentColor', size = 24, title = "cookiecutter", ...others}, ref) { - const Cookiecutter = React.forwardRef(function Cookiecutter({color = 'currentColor', size = 24, title = "cookiecutter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cookiecutter - \ No newline at end of file +export default Cookiecutter; diff --git a/src/components/Coop.tsx b/src/components/Coop.tsx index 456db967f..f70462eba 100644 --- a/src/components/Coop.tsx +++ b/src/components/Coop.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CoopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CoopProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coop = React.forwardRef(function Coop({color = 'currentColor', size = 24, title = "coop", ...others}, ref) { - const Coop = React.forwardRef(function Coop({color = 'currentColor', size = 24, title = "coop", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coop - \ No newline at end of file +export default Coop; diff --git a/src/components/Cora.tsx b/src/components/Cora.tsx index 6c8c98701..afb9e0c22 100644 --- a/src/components/Cora.tsx +++ b/src/components/Cora.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CoraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cora = React.forwardRef(function Cora({color = 'currentColor', size = 24, title = "cora", ...others}, ref) { - const Cora = React.forwardRef(function Cora({color = 'currentColor', size = 24, title = "cora", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cora - \ No newline at end of file +export default Cora; diff --git a/src/components/Coronaengine.tsx b/src/components/Coronaengine.tsx index 8bd570332..6b4a3e96b 100644 --- a/src/components/Coronaengine.tsx +++ b/src/components/Coronaengine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CoronaengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CoronaengineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coronaengine = React.forwardRef(function Coronaengine({color = 'currentColor', size = 24, title = "coronaengine", ...others}, ref) { - const Coronaengine = React.forwardRef(function Coronaengine({color = 'currentColor', size = 24, title = "coronaengine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coronaengine - \ No newline at end of file +export default Coronaengine; diff --git a/src/components/Coronarenderer.tsx b/src/components/Coronarenderer.tsx index 8435cb438..3a7f73da4 100644 --- a/src/components/Coronarenderer.tsx +++ b/src/components/Coronarenderer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CoronarendererProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CoronarendererProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coronarenderer = React.forwardRef(function Coronarenderer({color = 'currentColor', size = 24, title = "coronarenderer", ...others}, ref) { - const Coronarenderer = React.forwardRef(function Coronarenderer({color = 'currentColor', size = 24, title = "coronarenderer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coronarenderer - \ No newline at end of file +export default Coronarenderer; diff --git a/src/components/Corsair.tsx b/src/components/Corsair.tsx index 0c6a47fc2..3f140989e 100644 --- a/src/components/Corsair.tsx +++ b/src/components/Corsair.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CorsairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CorsairProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Corsair = React.forwardRef(function Corsair({color = 'currentColor', size = 24, title = "corsair", ...others}, ref) { - const Corsair = React.forwardRef(function Corsair({color = 'currentColor', size = 24, title = "corsair", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Corsair - \ No newline at end of file +export default Corsair; diff --git a/src/components/Couchbase.tsx b/src/components/Couchbase.tsx index ce2ee9b6c..83e80a550 100644 --- a/src/components/Couchbase.tsx +++ b/src/components/Couchbase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CouchbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CouchbaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Couchbase = React.forwardRef(function Couchbase({color = 'currentColor', size = 24, title = "couchbase", ...others}, ref) { - const Couchbase = React.forwardRef(function Couchbase({color = 'currentColor', size = 24, title = "couchbase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Couchbase - \ No newline at end of file +export default Couchbase; diff --git a/src/components/Counterstrike.tsx b/src/components/Counterstrike.tsx index 74a8a3de8..ae40c6629 100644 --- a/src/components/Counterstrike.tsx +++ b/src/components/Counterstrike.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CounterstrikeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CounterstrikeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Counterstrike = React.forwardRef(function Counterstrike({color = 'currentColor', size = 24, title = "counterstrike", ...others}, ref) { - const Counterstrike = React.forwardRef(function Counterstrike({color = 'currentColor', size = 24, title = "counterstrike", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Counterstrike - \ No newline at end of file +export default Counterstrike; diff --git a/src/components/Countingworkspro.tsx b/src/components/Countingworkspro.tsx index 7bf45bf5c..ecab309bf 100644 --- a/src/components/Countingworkspro.tsx +++ b/src/components/Countingworkspro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CountingworksproProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CountingworksproProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Countingworkspro = React.forwardRef(function Countingworkspro({color = 'currentColor', size = 24, title = "countingworkspro", ...others}, ref) { - const Countingworkspro = React.forwardRef(function Countingworkspro({color = 'currentColor', size = 24, title = "countingworkspro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Countingworkspro - \ No newline at end of file +export default Countingworkspro; diff --git a/src/components/Coursera.tsx b/src/components/Coursera.tsx index 1d3116fd5..fa7d40961 100644 --- a/src/components/Coursera.tsx +++ b/src/components/Coursera.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CourseraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CourseraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coursera = React.forwardRef(function Coursera({color = 'currentColor', size = 24, title = "coursera", ...others}, ref) { - const Coursera = React.forwardRef(function Coursera({color = 'currentColor', size = 24, title = "coursera", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coursera - \ No newline at end of file +export default Coursera; diff --git a/src/components/Coveralls.tsx b/src/components/Coveralls.tsx index bfe228f12..61a900dba 100644 --- a/src/components/Coveralls.tsx +++ b/src/components/Coveralls.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CoverallsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CoverallsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Coveralls = React.forwardRef(function Coveralls({color = 'currentColor', size = 24, title = "coveralls", ...others}, ref) { - const Coveralls = React.forwardRef(function Coveralls({color = 'currentColor', size = 24, title = "coveralls", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Coveralls - \ No newline at end of file +export default Coveralls; diff --git a/src/components/Cpanel.tsx b/src/components/Cpanel.tsx index 5cc0cb598..51d95b872 100644 --- a/src/components/Cpanel.tsx +++ b/src/components/Cpanel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CpanelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CpanelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cpanel = React.forwardRef(function Cpanel({color = 'currentColor', size = 24, title = "cpanel", ...others}, ref) { - const Cpanel = React.forwardRef(function Cpanel({color = 'currentColor', size = 24, title = "cpanel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cpanel - \ No newline at end of file +export default Cpanel; diff --git a/src/components/Cplusplus.tsx b/src/components/Cplusplus.tsx index f6648c430..b12fbf89a 100644 --- a/src/components/Cplusplus.tsx +++ b/src/components/Cplusplus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CplusplusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CplusplusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cplusplus = React.forwardRef(function Cplusplus({color = 'currentColor', size = 24, title = "cplusplus", ...others}, ref) { - const Cplusplus = React.forwardRef(function Cplusplus({color = 'currentColor', size = 24, title = "cplusplus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cplusplus - \ No newline at end of file +export default Cplusplus; diff --git a/src/components/Craftcms.tsx b/src/components/Craftcms.tsx index 2f46a3aaa..0ca53b397 100644 --- a/src/components/Craftcms.tsx +++ b/src/components/Craftcms.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CraftcmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CraftcmsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Craftcms = React.forwardRef(function Craftcms({color = 'currentColor', size = 24, title = "craftcms", ...others}, ref) { - const Craftcms = React.forwardRef(function Craftcms({color = 'currentColor', size = 24, title = "craftcms", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Craftcms - \ No newline at end of file +export default Craftcms; diff --git a/src/components/Cratedb.tsx b/src/components/Cratedb.tsx index 317c20321..be39fff94 100644 --- a/src/components/Cratedb.tsx +++ b/src/components/Cratedb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CratedbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CratedbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cratedb = React.forwardRef(function Cratedb({color = 'currentColor', size = 24, title = "cratedb", ...others}, ref) { - const Cratedb = React.forwardRef(function Cratedb({color = 'currentColor', size = 24, title = "cratedb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cratedb - \ No newline at end of file +export default Cratedb; diff --git a/src/components/Createreactapp.tsx b/src/components/Createreactapp.tsx index 275545fa6..d5f245cef 100644 --- a/src/components/Createreactapp.tsx +++ b/src/components/Createreactapp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CreatereactappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CreatereactappProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Createreactapp = React.forwardRef(function Createreactapp({color = 'currentColor', size = 24, title = "createreactapp", ...others}, ref) { - const Createreactapp = React.forwardRef(function Createreactapp({color = 'currentColor', size = 24, title = "createreactapp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Createreactapp - \ No newline at end of file +export default Createreactapp; diff --git a/src/components/Creativecommons.tsx b/src/components/Creativecommons.tsx index 433a038ed..63f8b11b2 100644 --- a/src/components/Creativecommons.tsx +++ b/src/components/Creativecommons.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CreativecommonsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CreativecommonsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Creativecommons = React.forwardRef(function Creativecommons({color = 'currentColor', size = 24, title = "creativecommons", ...others}, ref) { - const Creativecommons = React.forwardRef(function Creativecommons({color = 'currentColor', size = 24, title = "creativecommons", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Creativecommons - \ No newline at end of file +export default Creativecommons; diff --git a/src/components/Credly.tsx b/src/components/Credly.tsx index 7ad4832dc..f94fc1740 100644 --- a/src/components/Credly.tsx +++ b/src/components/Credly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CredlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CredlyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Credly = React.forwardRef(function Credly({color = 'currentColor', size = 24, title = "credly", ...others}, ref) { - const Credly = React.forwardRef(function Credly({color = 'currentColor', size = 24, title = "credly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Credly - \ No newline at end of file +export default Credly; diff --git a/src/components/Crehana.tsx b/src/components/Crehana.tsx index 83bf11ae8..99832c049 100644 --- a/src/components/Crehana.tsx +++ b/src/components/Crehana.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CrehanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CrehanaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Crehana = React.forwardRef(function Crehana({color = 'currentColor', size = 24, title = "crehana", ...others}, ref) { - const Crehana = React.forwardRef(function Crehana({color = 'currentColor', size = 24, title = "crehana", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Crehana - \ No newline at end of file +export default Crehana; diff --git a/src/components/Criticalrole.tsx b/src/components/Criticalrole.tsx index 95f8de7f5..f68d0878c 100644 --- a/src/components/Criticalrole.tsx +++ b/src/components/Criticalrole.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CriticalroleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CriticalroleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Criticalrole = React.forwardRef(function Criticalrole({color = 'currentColor', size = 24, title = "criticalrole", ...others}, ref) { - const Criticalrole = React.forwardRef(function Criticalrole({color = 'currentColor', size = 24, title = "criticalrole", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Criticalrole - \ No newline at end of file +export default Criticalrole; diff --git a/src/components/Crowdin.tsx b/src/components/Crowdin.tsx index ad49bb347..7837ea33e 100644 --- a/src/components/Crowdin.tsx +++ b/src/components/Crowdin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CrowdinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CrowdinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Crowdin = React.forwardRef(function Crowdin({color = 'currentColor', size = 24, title = "crowdin", ...others}, ref) { - const Crowdin = React.forwardRef(function Crowdin({color = 'currentColor', size = 24, title = "crowdin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Crowdin - \ No newline at end of file +export default Crowdin; diff --git a/src/components/Crowdsource.tsx b/src/components/Crowdsource.tsx index 435857387..1e3caa1bb 100644 --- a/src/components/Crowdsource.tsx +++ b/src/components/Crowdsource.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CrowdsourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CrowdsourceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Crowdsource = React.forwardRef(function Crowdsource({color = 'currentColor', size = 24, title = "crowdsource", ...others}, ref) { - const Crowdsource = React.forwardRef(function Crowdsource({color = 'currentColor', size = 24, title = "crowdsource", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Crowdsource - \ No newline at end of file +export default Crowdsource; diff --git a/src/components/Crunchbase.tsx b/src/components/Crunchbase.tsx index 71c8220cd..f293d78df 100644 --- a/src/components/Crunchbase.tsx +++ b/src/components/Crunchbase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CrunchbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CrunchbaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Crunchbase = React.forwardRef(function Crunchbase({color = 'currentColor', size = 24, title = "crunchbase", ...others}, ref) { - const Crunchbase = React.forwardRef(function Crunchbase({color = 'currentColor', size = 24, title = "crunchbase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Crunchbase - \ No newline at end of file +export default Crunchbase; diff --git a/src/components/Crunchyroll.tsx b/src/components/Crunchyroll.tsx index 57f97a2e9..e91720b3c 100644 --- a/src/components/Crunchyroll.tsx +++ b/src/components/Crunchyroll.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CrunchyrollProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CrunchyrollProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Crunchyroll = React.forwardRef(function Crunchyroll({color = 'currentColor', size = 24, title = "crunchyroll", ...others}, ref) { - const Crunchyroll = React.forwardRef(function Crunchyroll({color = 'currentColor', size = 24, title = "crunchyroll", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Crunchyroll - \ No newline at end of file +export default Crunchyroll; diff --git a/src/components/Cryengine.tsx b/src/components/Cryengine.tsx index 58f3d4a51..69efd6237 100644 --- a/src/components/Cryengine.tsx +++ b/src/components/Cryengine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CryengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CryengineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cryengine = React.forwardRef(function Cryengine({color = 'currentColor', size = 24, title = "cryengine", ...others}, ref) { - const Cryengine = React.forwardRef(function Cryengine({color = 'currentColor', size = 24, title = "cryengine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cryengine - \ No newline at end of file +export default Cryengine; diff --git a/src/components/Crystal.tsx b/src/components/Crystal.tsx index 8e4a1b8ec..6fc8eb849 100644 --- a/src/components/Crystal.tsx +++ b/src/components/Crystal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CrystalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CrystalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Crystal = React.forwardRef(function Crystal({color = 'currentColor', size = 24, title = "crystal", ...others}, ref) { - const Crystal = React.forwardRef(function Crystal({color = 'currentColor', size = 24, title = "crystal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Crystal - \ No newline at end of file +export default Crystal; diff --git a/src/components/Csharp.tsx b/src/components/Csharp.tsx index 07295019e..a38d2b3a5 100644 --- a/src/components/Csharp.tsx +++ b/src/components/Csharp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CsharpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CsharpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Csharp = React.forwardRef(function Csharp({color = 'currentColor', size = 24, title = "csharp", ...others}, ref) { - const Csharp = React.forwardRef(function Csharp({color = 'currentColor', size = 24, title = "csharp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Csharp - \ No newline at end of file +export default Csharp; diff --git a/src/components/CssThree.tsx b/src/components/CssThree.tsx index 14d191040..a1ada182a 100644 --- a/src/components/CssThree.tsx +++ b/src/components/CssThree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CssThreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CssThreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const CssThree = React.forwardRef(function CssThree({color = 'currentColor', size = 24, title = "css3", ...others}, ref) { - const CssThree = React.forwardRef(function CssThree({color = 'currentColor', size = 24, title = "css3", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default CssThree - \ No newline at end of file +export default CssThree; diff --git a/src/components/Cssmodules.tsx b/src/components/Cssmodules.tsx index 4c1fc0d2a..52e94e94d 100644 --- a/src/components/Cssmodules.tsx +++ b/src/components/Cssmodules.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CssmodulesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CssmodulesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cssmodules = React.forwardRef(function Cssmodules({color = 'currentColor', size = 24, title = "cssmodules", ...others}, ref) { - const Cssmodules = React.forwardRef(function Cssmodules({color = 'currentColor', size = 24, title = "cssmodules", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cssmodules - \ No newline at end of file +export default Cssmodules; diff --git a/src/components/Csswizardry.tsx b/src/components/Csswizardry.tsx index 66e0bb76a..28a90757e 100644 --- a/src/components/Csswizardry.tsx +++ b/src/components/Csswizardry.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CsswizardryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CsswizardryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Csswizardry = React.forwardRef(function Csswizardry({color = 'currentColor', size = 24, title = "csswizardry", ...others}, ref) { - const Csswizardry = React.forwardRef(function Csswizardry({color = 'currentColor', size = 24, title = "csswizardry", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Csswizardry - \ No newline at end of file +export default Csswizardry; diff --git a/src/components/Cucumber.tsx b/src/components/Cucumber.tsx index d39cee0e6..0636faba9 100644 --- a/src/components/Cucumber.tsx +++ b/src/components/Cucumber.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CucumberProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CucumberProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cucumber = React.forwardRef(function Cucumber({color = 'currentColor', size = 24, title = "cucumber", ...others}, ref) { - const Cucumber = React.forwardRef(function Cucumber({color = 'currentColor', size = 24, title = "cucumber", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cucumber - \ No newline at end of file +export default Cucumber; diff --git a/src/components/Curl.tsx b/src/components/Curl.tsx index c315d9db7..4084c22aa 100644 --- a/src/components/Curl.tsx +++ b/src/components/Curl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CurlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CurlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Curl = React.forwardRef(function Curl({color = 'currentColor', size = 24, title = "curl", ...others}, ref) { - const Curl = React.forwardRef(function Curl({color = 'currentColor', size = 24, title = "curl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Curl - \ No newline at end of file +export default Curl; diff --git a/src/components/Curseforge.tsx b/src/components/Curseforge.tsx index 005416250..7d18423a8 100644 --- a/src/components/Curseforge.tsx +++ b/src/components/Curseforge.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CurseforgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CurseforgeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Curseforge = React.forwardRef(function Curseforge({color = 'currentColor', size = 24, title = "curseforge", ...others}, ref) { - const Curseforge = React.forwardRef(function Curseforge({color = 'currentColor', size = 24, title = "curseforge", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Curseforge - \ No newline at end of file +export default Curseforge; diff --git a/src/components/Cycling7Four.tsx b/src/components/Cycling7Four.tsx index d7062934f..31b825374 100644 --- a/src/components/Cycling7Four.tsx +++ b/src/components/Cycling7Four.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Cycling7FourProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Cycling7FourProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cycling7Four = React.forwardRef(function Cycling7Four({color = 'currentColor', size = 24, title = "cycling74", ...others}, ref) { - const Cycling7Four = React.forwardRef(function Cycling7Four({color = 'currentColor', size = 24, title = "cycling74", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cycling7Four - \ No newline at end of file +export default Cycling7Four; diff --git a/src/components/Cypress.tsx b/src/components/Cypress.tsx index 1779998db..e250f2bd1 100644 --- a/src/components/Cypress.tsx +++ b/src/components/Cypress.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CypressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CypressProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cypress = React.forwardRef(function Cypress({color = 'currentColor', size = 24, title = "cypress", ...others}, ref) { - const Cypress = React.forwardRef(function Cypress({color = 'currentColor', size = 24, title = "cypress", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cypress - \ No newline at end of file +export default Cypress; diff --git a/src/components/Cytoscapedotjs.tsx b/src/components/Cytoscapedotjs.tsx index 27ac75b11..98ae7eeb7 100644 --- a/src/components/Cytoscapedotjs.tsx +++ b/src/components/Cytoscapedotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type CytoscapedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type CytoscapedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Cytoscapedotjs = React.forwardRef(function Cytoscapedotjs({color = 'currentColor', size = 24, title = "cytoscapedotjs", ...others}, ref) { - const Cytoscapedotjs = React.forwardRef(function Cytoscapedotjs({color = 'currentColor', size = 24, title = "cytoscapedotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Cytoscapedotjs - \ No newline at end of file +export default Cytoscapedotjs; diff --git a/src/components/D.tsx b/src/components/D.tsx index 1c3aa0080..097ff6e5c 100644 --- a/src/components/D.tsx +++ b/src/components/D.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const D = React.forwardRef(function D({color = 'currentColor', size = 24, title = "d", ...others}, ref) { - const D = React.forwardRef(function D({color = 'currentColor', size = 24, title = "d", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default D - \ No newline at end of file +export default D; diff --git a/src/components/DThreeDotjs.tsx b/src/components/DThreeDotjs.tsx index 27ce13b99..cfbd9cc3a 100644 --- a/src/components/DThreeDotjs.tsx +++ b/src/components/DThreeDotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DThreeDotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DThreeDotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const DThreeDotjs = React.forwardRef(function DThreeDotjs({color = 'currentColor', size = 24, title = "d3dotjs", ...others}, ref) { - const DThreeDotjs = React.forwardRef(function DThreeDotjs({color = 'currentColor', size = 24, title = "d3dotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default DThreeDotjs - \ No newline at end of file +export default DThreeDotjs; diff --git a/src/components/Dacia.tsx b/src/components/Dacia.tsx index 4a6c965d3..f9ef6f179 100644 --- a/src/components/Dacia.tsx +++ b/src/components/Dacia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DaciaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DaciaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dacia = React.forwardRef(function Dacia({color = 'currentColor', size = 24, title = "dacia", ...others}, ref) { - const Dacia = React.forwardRef(function Dacia({color = 'currentColor', size = 24, title = "dacia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dacia - \ No newline at end of file +export default Dacia; diff --git a/src/components/Daf.tsx b/src/components/Daf.tsx index 708df2d52..5a9852a02 100644 --- a/src/components/Daf.tsx +++ b/src/components/Daf.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DafProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DafProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Daf = React.forwardRef(function Daf({color = 'currentColor', size = 24, title = "daf", ...others}, ref) { - const Daf = React.forwardRef(function Daf({color = 'currentColor', size = 24, title = "daf", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Daf - \ No newline at end of file +export default Daf; diff --git a/src/components/Dailymotion.tsx b/src/components/Dailymotion.tsx index 42bb84d18..6112953f9 100644 --- a/src/components/Dailymotion.tsx +++ b/src/components/Dailymotion.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DailymotionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DailymotionProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dailymotion = React.forwardRef(function Dailymotion({color = 'currentColor', size = 24, title = "dailymotion", ...others}, ref) { - const Dailymotion = React.forwardRef(function Dailymotion({color = 'currentColor', size = 24, title = "dailymotion", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dailymotion - \ No newline at end of file +export default Dailymotion; diff --git a/src/components/Daimler.tsx b/src/components/Daimler.tsx index 12ac0ec0e..1bfefb6f9 100644 --- a/src/components/Daimler.tsx +++ b/src/components/Daimler.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DaimlerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DaimlerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Daimler = React.forwardRef(function Daimler({color = 'currentColor', size = 24, title = "daimler", ...others}, ref) { - const Daimler = React.forwardRef(function Daimler({color = 'currentColor', size = 24, title = "daimler", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Daimler - \ No newline at end of file +export default Daimler; diff --git a/src/components/Dapr.tsx b/src/components/Dapr.tsx index c9bc65426..e2de7f0a3 100644 --- a/src/components/Dapr.tsx +++ b/src/components/Dapr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DaprProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DaprProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dapr = React.forwardRef(function Dapr({color = 'currentColor', size = 24, title = "dapr", ...others}, ref) { - const Dapr = React.forwardRef(function Dapr({color = 'currentColor', size = 24, title = "dapr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dapr - \ No newline at end of file +export default Dapr; diff --git a/src/components/Darkreader.tsx b/src/components/Darkreader.tsx index 5bacce7fa..1239459a0 100644 --- a/src/components/Darkreader.tsx +++ b/src/components/Darkreader.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DarkreaderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DarkreaderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Darkreader = React.forwardRef(function Darkreader({color = 'currentColor', size = 24, title = "darkreader", ...others}, ref) { - const Darkreader = React.forwardRef(function Darkreader({color = 'currentColor', size = 24, title = "darkreader", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Darkreader - \ No newline at end of file +export default Darkreader; diff --git a/src/components/Dart.tsx b/src/components/Dart.tsx index bac099d88..dd6dddef8 100644 --- a/src/components/Dart.tsx +++ b/src/components/Dart.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DartProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dart = React.forwardRef(function Dart({color = 'currentColor', size = 24, title = "dart", ...others}, ref) { - const Dart = React.forwardRef(function Dart({color = 'currentColor', size = 24, title = "dart", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dart - \ No newline at end of file +export default Dart; diff --git a/src/components/Darty.tsx b/src/components/Darty.tsx index da7f5f167..f598f3a9b 100644 --- a/src/components/Darty.tsx +++ b/src/components/Darty.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DartyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DartyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Darty = React.forwardRef(function Darty({color = 'currentColor', size = 24, title = "darty", ...others}, ref) { - const Darty = React.forwardRef(function Darty({color = 'currentColor', size = 24, title = "darty", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Darty - \ No newline at end of file +export default Darty; diff --git a/src/components/Daserste.tsx b/src/components/Daserste.tsx index 764f6c487..4ac73c2c2 100644 --- a/src/components/Daserste.tsx +++ b/src/components/Daserste.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DasersteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DasersteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Daserste = React.forwardRef(function Daserste({color = 'currentColor', size = 24, title = "daserste", ...others}, ref) { - const Daserste = React.forwardRef(function Daserste({color = 'currentColor', size = 24, title = "daserste", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Daserste - \ No newline at end of file +export default Daserste; diff --git a/src/components/Dash.tsx b/src/components/Dash.tsx index 027cb0ca9..2a16b3267 100644 --- a/src/components/Dash.tsx +++ b/src/components/Dash.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DashProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dash = React.forwardRef(function Dash({color = 'currentColor', size = 24, title = "dash", ...others}, ref) { - const Dash = React.forwardRef(function Dash({color = 'currentColor', size = 24, title = "dash", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dash - \ No newline at end of file +export default Dash; diff --git a/src/components/Dashlane.tsx b/src/components/Dashlane.tsx index 31cc68bab..e80b81f48 100644 --- a/src/components/Dashlane.tsx +++ b/src/components/Dashlane.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DashlaneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DashlaneProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dashlane = React.forwardRef(function Dashlane({color = 'currentColor', size = 24, title = "dashlane", ...others}, ref) { - const Dashlane = React.forwardRef(function Dashlane({color = 'currentColor', size = 24, title = "dashlane", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dashlane - \ No newline at end of file +export default Dashlane; diff --git a/src/components/Dask.tsx b/src/components/Dask.tsx index f998e6109..101f0859b 100644 --- a/src/components/Dask.tsx +++ b/src/components/Dask.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DaskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DaskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dask = React.forwardRef(function Dask({color = 'currentColor', size = 24, title = "dask", ...others}, ref) { - const Dask = React.forwardRef(function Dask({color = 'currentColor', size = 24, title = "dask", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dask - \ No newline at end of file +export default Dask; diff --git a/src/components/Dassaultsystemes.tsx b/src/components/Dassaultsystemes.tsx index 721dfeec8..bc5e2181e 100644 --- a/src/components/Dassaultsystemes.tsx +++ b/src/components/Dassaultsystemes.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DassaultsystemesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DassaultsystemesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dassaultsystemes = React.forwardRef(function Dassaultsystemes({color = 'currentColor', size = 24, title = "dassaultsystemes", ...others}, ref) { - const Dassaultsystemes = React.forwardRef(function Dassaultsystemes({color = 'currentColor', size = 24, title = "dassaultsystemes", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dassaultsystemes - \ No newline at end of file +export default Dassaultsystemes; diff --git a/src/components/Databricks.tsx b/src/components/Databricks.tsx index 3fb0e9069..f01a24f56 100644 --- a/src/components/Databricks.tsx +++ b/src/components/Databricks.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DatabricksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DatabricksProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Databricks = React.forwardRef(function Databricks({color = 'currentColor', size = 24, title = "databricks", ...others}, ref) { - const Databricks = React.forwardRef(function Databricks({color = 'currentColor', size = 24, title = "databricks", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Databricks - \ No newline at end of file +export default Databricks; diff --git a/src/components/Datacamp.tsx b/src/components/Datacamp.tsx index 17ebd13ad..af39b6d40 100644 --- a/src/components/Datacamp.tsx +++ b/src/components/Datacamp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DatacampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DatacampProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Datacamp = React.forwardRef(function Datacamp({color = 'currentColor', size = 24, title = "datacamp", ...others}, ref) { - const Datacamp = React.forwardRef(function Datacamp({color = 'currentColor', size = 24, title = "datacamp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Datacamp - \ No newline at end of file +export default Datacamp; diff --git a/src/components/Datadog.tsx b/src/components/Datadog.tsx index 8cbd03a06..12c9cae95 100644 --- a/src/components/Datadog.tsx +++ b/src/components/Datadog.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DatadogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DatadogProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Datadog = React.forwardRef(function Datadog({color = 'currentColor', size = 24, title = "datadog", ...others}, ref) { - const Datadog = React.forwardRef(function Datadog({color = 'currentColor', size = 24, title = "datadog", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Datadog - \ No newline at end of file +export default Datadog; diff --git a/src/components/Datadotai.tsx b/src/components/Datadotai.tsx index 49736c221..2d2a66572 100644 --- a/src/components/Datadotai.tsx +++ b/src/components/Datadotai.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DatadotaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DatadotaiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Datadotai = React.forwardRef(function Datadotai({color = 'currentColor', size = 24, title = "datadotai", ...others}, ref) { - const Datadotai = React.forwardRef(function Datadotai({color = 'currentColor', size = 24, title = "datadotai", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Datadotai - \ No newline at end of file +export default Datadotai; diff --git a/src/components/Datagrip.tsx b/src/components/Datagrip.tsx index a2668326c..fd57b76a6 100644 --- a/src/components/Datagrip.tsx +++ b/src/components/Datagrip.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DatagripProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DatagripProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Datagrip = React.forwardRef(function Datagrip({color = 'currentColor', size = 24, title = "datagrip", ...others}, ref) { - const Datagrip = React.forwardRef(function Datagrip({color = 'currentColor', size = 24, title = "datagrip", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Datagrip - \ No newline at end of file +export default Datagrip; diff --git a/src/components/Dataiku.tsx b/src/components/Dataiku.tsx index bc92ac452..c9438b3f7 100644 --- a/src/components/Dataiku.tsx +++ b/src/components/Dataiku.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DataikuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DataikuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dataiku = React.forwardRef(function Dataiku({color = 'currentColor', size = 24, title = "dataiku", ...others}, ref) { - const Dataiku = React.forwardRef(function Dataiku({color = 'currentColor', size = 24, title = "dataiku", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dataiku - \ No newline at end of file +export default Dataiku; diff --git a/src/components/Datastax.tsx b/src/components/Datastax.tsx index 40185b128..ec9f74e3a 100644 --- a/src/components/Datastax.tsx +++ b/src/components/Datastax.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DatastaxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DatastaxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Datastax = React.forwardRef(function Datastax({color = 'currentColor', size = 24, title = "datastax", ...others}, ref) { - const Datastax = React.forwardRef(function Datastax({color = 'currentColor', size = 24, title = "datastax", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Datastax - \ No newline at end of file +export default Datastax; diff --git a/src/components/Dataverse.tsx b/src/components/Dataverse.tsx new file mode 100644 index 000000000..16f4b9c0e --- /dev/null +++ b/src/components/Dataverse.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type DataverseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Dataverse = React.forwardRef(function Dataverse({color = 'currentColor', size = 24, title = "dataverse", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Dataverse; diff --git a/src/components/Dataversioncontrol.tsx b/src/components/Dataversioncontrol.tsx index ba9960280..525f34bb9 100644 --- a/src/components/Dataversioncontrol.tsx +++ b/src/components/Dataversioncontrol.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DataversioncontrolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DataversioncontrolProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dataversioncontrol = React.forwardRef(function Dataversioncontrol({color = 'currentColor', size = 24, title = "dataversioncontrol", ...others}, ref) { - const Dataversioncontrol = React.forwardRef(function Dataversioncontrol({color = 'currentColor', size = 24, title = "dataversioncontrol", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dataversioncontrol - \ No newline at end of file +export default Dataversioncontrol; diff --git a/src/components/Datocms.tsx b/src/components/Datocms.tsx index e3210f995..b7c6207b0 100644 --- a/src/components/Datocms.tsx +++ b/src/components/Datocms.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DatocmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DatocmsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Datocms = React.forwardRef(function Datocms({color = 'currentColor', size = 24, title = "datocms", ...others}, ref) { - const Datocms = React.forwardRef(function Datocms({color = 'currentColor', size = 24, title = "datocms", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Datocms - \ No newline at end of file +export default Datocms; diff --git a/src/components/Datto.tsx b/src/components/Datto.tsx index df4b4d62f..8310bebf0 100644 --- a/src/components/Datto.tsx +++ b/src/components/Datto.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DattoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DattoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Datto = React.forwardRef(function Datto({color = 'currentColor', size = 24, title = "datto", ...others}, ref) { - const Datto = React.forwardRef(function Datto({color = 'currentColor', size = 24, title = "datto", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Datto - \ No newline at end of file +export default Datto; diff --git a/src/components/Dazn.tsx b/src/components/Dazn.tsx index a1f88306a..15d387367 100644 --- a/src/components/Dazn.tsx +++ b/src/components/Dazn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DaznProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DaznProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dazn = React.forwardRef(function Dazn({color = 'currentColor', size = 24, title = "dazn", ...others}, ref) { - const Dazn = React.forwardRef(function Dazn({color = 'currentColor', size = 24, title = "dazn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dazn - \ No newline at end of file +export default Dazn; diff --git a/src/components/Dblp.tsx b/src/components/Dblp.tsx index bca0fe79b..6a8edd325 100644 --- a/src/components/Dblp.tsx +++ b/src/components/Dblp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DblpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DblpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dblp = React.forwardRef(function Dblp({color = 'currentColor', size = 24, title = "dblp", ...others}, ref) { - const Dblp = React.forwardRef(function Dblp({color = 'currentColor', size = 24, title = "dblp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dblp - \ No newline at end of file +export default Dblp; diff --git a/src/components/Dbt.tsx b/src/components/Dbt.tsx index 1c3786f80..516194808 100644 --- a/src/components/Dbt.tsx +++ b/src/components/Dbt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DbtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DbtProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dbt = React.forwardRef(function Dbt({color = 'currentColor', size = 24, title = "dbt", ...others}, ref) { - const Dbt = React.forwardRef(function Dbt({color = 'currentColor', size = 24, title = "dbt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dbt - \ No newline at end of file +export default Dbt; diff --git a/src/components/Dcentertainment.tsx b/src/components/Dcentertainment.tsx index 320f01f60..dce3f3544 100644 --- a/src/components/Dcentertainment.tsx +++ b/src/components/Dcentertainment.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DcentertainmentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DcentertainmentProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dcentertainment = React.forwardRef(function Dcentertainment({color = 'currentColor', size = 24, title = "dcentertainment", ...others}, ref) { - const Dcentertainment = React.forwardRef(function Dcentertainment({color = 'currentColor', size = 24, title = "dcentertainment", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dcentertainment - \ No newline at end of file +export default Dcentertainment; diff --git a/src/components/Debian.tsx b/src/components/Debian.tsx index 8f0bffae2..4db4124fd 100644 --- a/src/components/Debian.tsx +++ b/src/components/Debian.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DebianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DebianProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Debian = React.forwardRef(function Debian({color = 'currentColor', size = 24, title = "debian", ...others}, ref) { - const Debian = React.forwardRef(function Debian({color = 'currentColor', size = 24, title = "debian", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Debian - \ No newline at end of file +export default Debian; diff --git a/src/components/Dedge.tsx b/src/components/Dedge.tsx index 749f7f9e0..78fec64a1 100644 --- a/src/components/Dedge.tsx +++ b/src/components/Dedge.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DedgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DedgeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dedge = React.forwardRef(function Dedge({color = 'currentColor', size = 24, title = "dedge", ...others}, ref) { - const Dedge = React.forwardRef(function Dedge({color = 'currentColor', size = 24, title = "dedge", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dedge - \ No newline at end of file +export default Dedge; diff --git a/src/components/Deepin.tsx b/src/components/Deepin.tsx index 0a2aedf21..21c3a9003 100644 --- a/src/components/Deepin.tsx +++ b/src/components/Deepin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DeepinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DeepinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Deepin = React.forwardRef(function Deepin({color = 'currentColor', size = 24, title = "deepin", ...others}, ref) { - const Deepin = React.forwardRef(function Deepin({color = 'currentColor', size = 24, title = "deepin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Deepin - \ No newline at end of file +export default Deepin; diff --git a/src/components/Deepnote.tsx b/src/components/Deepnote.tsx index 5868a4689..c6f937b10 100644 --- a/src/components/Deepnote.tsx +++ b/src/components/Deepnote.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DeepnoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DeepnoteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Deepnote = React.forwardRef(function Deepnote({color = 'currentColor', size = 24, title = "deepnote", ...others}, ref) { - const Deepnote = React.forwardRef(function Deepnote({color = 'currentColor', size = 24, title = "deepnote", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Deepnote - \ No newline at end of file +export default Deepnote; diff --git a/src/components/Deezer.tsx b/src/components/Deezer.tsx index 5a6278d37..15e3d87cc 100644 --- a/src/components/Deezer.tsx +++ b/src/components/Deezer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DeezerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DeezerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Deezer = React.forwardRef(function Deezer({color = 'currentColor', size = 24, title = "deezer", ...others}, ref) { - const Deezer = React.forwardRef(function Deezer({color = 'currentColor', size = 24, title = "deezer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Deezer - \ No newline at end of file +export default Deezer; diff --git a/src/components/Delicious.tsx b/src/components/Delicious.tsx index 9c68d8119..7103a987a 100644 --- a/src/components/Delicious.tsx +++ b/src/components/Delicious.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DeliciousProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DeliciousProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Delicious = React.forwardRef(function Delicious({color = 'currentColor', size = 24, title = "delicious", ...others}, ref) { - const Delicious = React.forwardRef(function Delicious({color = 'currentColor', size = 24, title = "delicious", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Delicious - \ No newline at end of file +export default Delicious; diff --git a/src/components/Deliveroo.tsx b/src/components/Deliveroo.tsx index f9855f767..b006639ab 100644 --- a/src/components/Deliveroo.tsx +++ b/src/components/Deliveroo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DeliverooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DeliverooProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Deliveroo = React.forwardRef(function Deliveroo({color = 'currentColor', size = 24, title = "deliveroo", ...others}, ref) { - const Deliveroo = React.forwardRef(function Deliveroo({color = 'currentColor', size = 24, title = "deliveroo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Deliveroo - \ No newline at end of file +export default Deliveroo; diff --git a/src/components/Dell.tsx b/src/components/Dell.tsx index 809a64909..6fce1f4eb 100644 --- a/src/components/Dell.tsx +++ b/src/components/Dell.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DellProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dell = React.forwardRef(function Dell({color = 'currentColor', size = 24, title = "dell", ...others}, ref) { - const Dell = React.forwardRef(function Dell({color = 'currentColor', size = 24, title = "dell", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dell - \ No newline at end of file +export default Dell; diff --git a/src/components/Delonghi.tsx b/src/components/Delonghi.tsx index 255676d5d..9e9c7cd46 100644 --- a/src/components/Delonghi.tsx +++ b/src/components/Delonghi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DelonghiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DelonghiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Delonghi = React.forwardRef(function Delonghi({color = 'currentColor', size = 24, title = "delonghi", ...others}, ref) { - const Delonghi = React.forwardRef(function Delonghi({color = 'currentColor', size = 24, title = "delonghi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Delonghi - \ No newline at end of file +export default Delonghi; diff --git a/src/components/Delphi.tsx b/src/components/Delphi.tsx index dd3ffefc5..1fddc0e63 100644 --- a/src/components/Delphi.tsx +++ b/src/components/Delphi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DelphiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DelphiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Delphi = React.forwardRef(function Delphi({color = 'currentColor', size = 24, title = "delphi", ...others}, ref) { - const Delphi = React.forwardRef(function Delphi({color = 'currentColor', size = 24, title = "delphi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Delphi - \ No newline at end of file +export default Delphi; diff --git a/src/components/Delta.tsx b/src/components/Delta.tsx index a9691562e..92b285883 100644 --- a/src/components/Delta.tsx +++ b/src/components/Delta.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DeltaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DeltaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Delta = React.forwardRef(function Delta({color = 'currentColor', size = 24, title = "delta", ...others}, ref) { - const Delta = React.forwardRef(function Delta({color = 'currentColor', size = 24, title = "delta", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Delta - \ No newline at end of file +export default Delta; diff --git a/src/components/Deno.tsx b/src/components/Deno.tsx index d4202e5e5..fbac28dda 100644 --- a/src/components/Deno.tsx +++ b/src/components/Deno.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DenoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DenoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Deno = React.forwardRef(function Deno({color = 'currentColor', size = 24, title = "deno", ...others}, ref) { - const Deno = React.forwardRef(function Deno({color = 'currentColor', size = 24, title = "deno", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Deno - \ No newline at end of file +export default Deno; diff --git a/src/components/Dependabot.tsx b/src/components/Dependabot.tsx index c57f5e6a0..d556fc0aa 100644 --- a/src/components/Dependabot.tsx +++ b/src/components/Dependabot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DependabotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DependabotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dependabot = React.forwardRef(function Dependabot({color = 'currentColor', size = 24, title = "dependabot", ...others}, ref) { - const Dependabot = React.forwardRef(function Dependabot({color = 'currentColor', size = 24, title = "dependabot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dependabot - \ No newline at end of file +export default Dependabot; diff --git a/src/components/Derspiegel.tsx b/src/components/Derspiegel.tsx index 023331e76..236fd0bac 100644 --- a/src/components/Derspiegel.tsx +++ b/src/components/Derspiegel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DerspiegelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DerspiegelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Derspiegel = React.forwardRef(function Derspiegel({color = 'currentColor', size = 24, title = "derspiegel", ...others}, ref) { - const Derspiegel = React.forwardRef(function Derspiegel({color = 'currentColor', size = 24, title = "derspiegel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Derspiegel - \ No newline at end of file +export default Derspiegel; diff --git a/src/components/Designernews.tsx b/src/components/Designernews.tsx index 46b062f73..de2e43519 100644 --- a/src/components/Designernews.tsx +++ b/src/components/Designernews.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DesignernewsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DesignernewsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Designernews = React.forwardRef(function Designernews({color = 'currentColor', size = 24, title = "designernews", ...others}, ref) { - const Designernews = React.forwardRef(function Designernews({color = 'currentColor', size = 24, title = "designernews", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Designernews - \ No newline at end of file +export default Designernews; diff --git a/src/components/Deutschebahn.tsx b/src/components/Deutschebahn.tsx index ae5de3f98..9d634e137 100644 --- a/src/components/Deutschebahn.tsx +++ b/src/components/Deutschebahn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DeutschebahnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DeutschebahnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Deutschebahn = React.forwardRef(function Deutschebahn({color = 'currentColor', size = 24, title = "deutschebahn", ...others}, ref) { - const Deutschebahn = React.forwardRef(function Deutschebahn({color = 'currentColor', size = 24, title = "deutschebahn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Deutschebahn - \ No newline at end of file +export default Deutschebahn; diff --git a/src/components/Deutschebank.tsx b/src/components/Deutschebank.tsx index 08ded86b2..5543b562f 100644 --- a/src/components/Deutschebank.tsx +++ b/src/components/Deutschebank.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DeutschebankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DeutschebankProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Deutschebank = React.forwardRef(function Deutschebank({color = 'currentColor', size = 24, title = "deutschebank", ...others}, ref) { - const Deutschebank = React.forwardRef(function Deutschebank({color = 'currentColor', size = 24, title = "deutschebank", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Deutschebank - \ No newline at end of file +export default Deutschebank; diff --git a/src/components/Devdotto.tsx b/src/components/Devdotto.tsx index c24498e33..8e53635a9 100644 --- a/src/components/Devdotto.tsx +++ b/src/components/Devdotto.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DevdottoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DevdottoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Devdotto = React.forwardRef(function Devdotto({color = 'currentColor', size = 24, title = "devdotto", ...others}, ref) { - const Devdotto = React.forwardRef(function Devdotto({color = 'currentColor', size = 24, title = "devdotto", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Devdotto - \ No newline at end of file +export default Devdotto; diff --git a/src/components/Devexpress.tsx b/src/components/Devexpress.tsx index 02216dfb0..2f23acda9 100644 --- a/src/components/Devexpress.tsx +++ b/src/components/Devexpress.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DevexpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DevexpressProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Devexpress = React.forwardRef(function Devexpress({color = 'currentColor', size = 24, title = "devexpress", ...others}, ref) { - const Devexpress = React.forwardRef(function Devexpress({color = 'currentColor', size = 24, title = "devexpress", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Devexpress - \ No newline at end of file +export default Devexpress; diff --git a/src/components/Deviantart.tsx b/src/components/Deviantart.tsx index fde494ef1..c41c088a8 100644 --- a/src/components/Deviantart.tsx +++ b/src/components/Deviantart.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DeviantartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DeviantartProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Deviantart = React.forwardRef(function Deviantart({color = 'currentColor', size = 24, title = "deviantart", ...others}, ref) { - const Deviantart = React.forwardRef(function Deviantart({color = 'currentColor', size = 24, title = "deviantart", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Deviantart - \ No newline at end of file +export default Deviantart; diff --git a/src/components/Devpost.tsx b/src/components/Devpost.tsx index 08fa226fd..279bdc2d9 100644 --- a/src/components/Devpost.tsx +++ b/src/components/Devpost.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DevpostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DevpostProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Devpost = React.forwardRef(function Devpost({color = 'currentColor', size = 24, title = "devpost", ...others}, ref) { - const Devpost = React.forwardRef(function Devpost({color = 'currentColor', size = 24, title = "devpost", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Devpost - \ No newline at end of file +export default Devpost; diff --git a/src/components/Devrant.tsx b/src/components/Devrant.tsx index ea4d87bef..b5cf9dd75 100644 --- a/src/components/Devrant.tsx +++ b/src/components/Devrant.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DevrantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DevrantProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Devrant = React.forwardRef(function Devrant({color = 'currentColor', size = 24, title = "devrant", ...others}, ref) { - const Devrant = React.forwardRef(function Devrant({color = 'currentColor', size = 24, title = "devrant", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Devrant - \ No newline at end of file +export default Devrant; diff --git a/src/components/Dgraph.tsx b/src/components/Dgraph.tsx index 28d77b87f..50a929580 100644 --- a/src/components/Dgraph.tsx +++ b/src/components/Dgraph.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DgraphProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DgraphProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dgraph = React.forwardRef(function Dgraph({color = 'currentColor', size = 24, title = "dgraph", ...others}, ref) { - const Dgraph = React.forwardRef(function Dgraph({color = 'currentColor', size = 24, title = "dgraph", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dgraph - \ No newline at end of file +export default Dgraph; diff --git a/src/components/Dhl.tsx b/src/components/Dhl.tsx index 311faef0d..51a7ce4c7 100644 --- a/src/components/Dhl.tsx +++ b/src/components/Dhl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DhlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DhlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dhl = React.forwardRef(function Dhl({color = 'currentColor', size = 24, title = "dhl", ...others}, ref) { - const Dhl = React.forwardRef(function Dhl({color = 'currentColor', size = 24, title = "dhl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dhl - \ No newline at end of file +export default Dhl; diff --git a/src/components/Diagramsdotnet.tsx b/src/components/Diagramsdotnet.tsx index 76d6b7465..f94f5ea7e 100644 --- a/src/components/Diagramsdotnet.tsx +++ b/src/components/Diagramsdotnet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DiagramsdotnetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DiagramsdotnetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Diagramsdotnet = React.forwardRef(function Diagramsdotnet({color = 'currentColor', size = 24, title = "diagramsdotnet", ...others}, ref) { - const Diagramsdotnet = React.forwardRef(function Diagramsdotnet({color = 'currentColor', size = 24, title = "diagramsdotnet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Diagramsdotnet - \ No newline at end of file +export default Diagramsdotnet; diff --git a/src/components/Dialogflow.tsx b/src/components/Dialogflow.tsx index 2a072b7b4..7a8d9edd6 100644 --- a/src/components/Dialogflow.tsx +++ b/src/components/Dialogflow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DialogflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DialogflowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dialogflow = React.forwardRef(function Dialogflow({color = 'currentColor', size = 24, title = "dialogflow", ...others}, ref) { - const Dialogflow = React.forwardRef(function Dialogflow({color = 'currentColor', size = 24, title = "dialogflow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dialogflow - \ No newline at end of file +export default Dialogflow; diff --git a/src/components/Diaspora.tsx b/src/components/Diaspora.tsx index 2a60a298d..efd51e170 100644 --- a/src/components/Diaspora.tsx +++ b/src/components/Diaspora.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DiasporaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DiasporaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Diaspora = React.forwardRef(function Diaspora({color = 'currentColor', size = 24, title = "diaspora", ...others}, ref) { - const Diaspora = React.forwardRef(function Diaspora({color = 'currentColor', size = 24, title = "diaspora", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Diaspora - \ No newline at end of file +export default Diaspora; diff --git a/src/components/Digg.tsx b/src/components/Digg.tsx index 90fe01adf..49e00f382 100644 --- a/src/components/Digg.tsx +++ b/src/components/Digg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DiggProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DiggProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Digg = React.forwardRef(function Digg({color = 'currentColor', size = 24, title = "digg", ...others}, ref) { - const Digg = React.forwardRef(function Digg({color = 'currentColor', size = 24, title = "digg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Digg - \ No newline at end of file +export default Digg; diff --git a/src/components/Digikeyelectronics.tsx b/src/components/Digikeyelectronics.tsx index d1ea0636a..883a3d6f5 100644 --- a/src/components/Digikeyelectronics.tsx +++ b/src/components/Digikeyelectronics.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DigikeyelectronicsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DigikeyelectronicsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Digikeyelectronics = React.forwardRef(function Digikeyelectronics({color = 'currentColor', size = 24, title = "digikeyelectronics", ...others}, ref) { - const Digikeyelectronics = React.forwardRef(function Digikeyelectronics({color = 'currentColor', size = 24, title = "digikeyelectronics", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Digikeyelectronics - \ No newline at end of file +export default Digikeyelectronics; diff --git a/src/components/Digitalocean.tsx b/src/components/Digitalocean.tsx index 86461d06a..c6d8c8b81 100644 --- a/src/components/Digitalocean.tsx +++ b/src/components/Digitalocean.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DigitaloceanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DigitaloceanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Digitalocean = React.forwardRef(function Digitalocean({color = 'currentColor', size = 24, title = "digitalocean", ...others}, ref) { - const Digitalocean = React.forwardRef(function Digitalocean({color = 'currentColor', size = 24, title = "digitalocean", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Digitalocean - \ No newline at end of file +export default Digitalocean; diff --git a/src/components/Dior.tsx b/src/components/Dior.tsx index 3a31efcca..191f3930d 100644 --- a/src/components/Dior.tsx +++ b/src/components/Dior.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DiorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DiorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dior = React.forwardRef(function Dior({color = 'currentColor', size = 24, title = "dior", ...others}, ref) { - const Dior = React.forwardRef(function Dior({color = 'currentColor', size = 24, title = "dior", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dior - \ No newline at end of file +export default Dior; diff --git a/src/components/Directus.tsx b/src/components/Directus.tsx index 8ff63dcba..32dabbbae 100644 --- a/src/components/Directus.tsx +++ b/src/components/Directus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DirectusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DirectusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Directus = React.forwardRef(function Directus({color = 'currentColor', size = 24, title = "directus", ...others}, ref) { - const Directus = React.forwardRef(function Directus({color = 'currentColor', size = 24, title = "directus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Directus - \ No newline at end of file +export default Directus; diff --git a/src/components/Discogs.tsx b/src/components/Discogs.tsx index 91d2b0dbf..57bf75af1 100644 --- a/src/components/Discogs.tsx +++ b/src/components/Discogs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DiscogsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DiscogsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Discogs = React.forwardRef(function Discogs({color = 'currentColor', size = 24, title = "discogs", ...others}, ref) { - const Discogs = React.forwardRef(function Discogs({color = 'currentColor', size = 24, title = "discogs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Discogs - \ No newline at end of file +export default Discogs; diff --git a/src/components/Discord.tsx b/src/components/Discord.tsx index 9d82a300d..c8e220209 100644 --- a/src/components/Discord.tsx +++ b/src/components/Discord.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DiscordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DiscordProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Discord = React.forwardRef(function Discord({color = 'currentColor', size = 24, title = "discord", ...others}, ref) { - const Discord = React.forwardRef(function Discord({color = 'currentColor', size = 24, title = "discord", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Discord - \ No newline at end of file +export default Discord; diff --git a/src/components/Discourse.tsx b/src/components/Discourse.tsx index c876455fd..143cecc28 100644 --- a/src/components/Discourse.tsx +++ b/src/components/Discourse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DiscourseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DiscourseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Discourse = React.forwardRef(function Discourse({color = 'currentColor', size = 24, title = "discourse", ...others}, ref) { - const Discourse = React.forwardRef(function Discourse({color = 'currentColor', size = 24, title = "discourse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Discourse - \ No newline at end of file +export default Discourse; diff --git a/src/components/Discover.tsx b/src/components/Discover.tsx index 8d4b2eb21..72e759a6d 100644 --- a/src/components/Discover.tsx +++ b/src/components/Discover.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DiscoverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DiscoverProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Discover = React.forwardRef(function Discover({color = 'currentColor', size = 24, title = "discover", ...others}, ref) { - const Discover = React.forwardRef(function Discover({color = 'currentColor', size = 24, title = "discover", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Discover - \ No newline at end of file +export default Discover; diff --git a/src/components/Disqus.tsx b/src/components/Disqus.tsx index c03071456..b87e19bc9 100644 --- a/src/components/Disqus.tsx +++ b/src/components/Disqus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DisqusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DisqusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Disqus = React.forwardRef(function Disqus({color = 'currentColor', size = 24, title = "disqus", ...others}, ref) { - const Disqus = React.forwardRef(function Disqus({color = 'currentColor', size = 24, title = "disqus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Disqus - \ No newline at end of file +export default Disqus; diff --git a/src/components/Disroot.tsx b/src/components/Disroot.tsx index 78e04ed28..39f7a7c6d 100644 --- a/src/components/Disroot.tsx +++ b/src/components/Disroot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DisrootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DisrootProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Disroot = React.forwardRef(function Disroot({color = 'currentColor', size = 24, title = "disroot", ...others}, ref) { - const Disroot = React.forwardRef(function Disroot({color = 'currentColor', size = 24, title = "disroot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Disroot - \ No newline at end of file +export default Disroot; diff --git a/src/components/Django.tsx b/src/components/Django.tsx index 58016c4ff..a9e959ddf 100644 --- a/src/components/Django.tsx +++ b/src/components/Django.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DjangoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DjangoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Django = React.forwardRef(function Django({color = 'currentColor', size = 24, title = "django", ...others}, ref) { - const Django = React.forwardRef(function Django({color = 'currentColor', size = 24, title = "django", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Django - \ No newline at end of file +export default Django; diff --git a/src/components/Dlib.tsx b/src/components/Dlib.tsx index 065017323..e587e2cb6 100644 --- a/src/components/Dlib.tsx +++ b/src/components/Dlib.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DlibProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DlibProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dlib = React.forwardRef(function Dlib({color = 'currentColor', size = 24, title = "dlib", ...others}, ref) { - const Dlib = React.forwardRef(function Dlib({color = 'currentColor', size = 24, title = "dlib", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dlib - \ No newline at end of file +export default Dlib; diff --git a/src/components/Dlna.tsx b/src/components/Dlna.tsx index e33e25e9e..f98aea528 100644 --- a/src/components/Dlna.tsx +++ b/src/components/Dlna.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DlnaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DlnaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dlna = React.forwardRef(function Dlna({color = 'currentColor', size = 24, title = "dlna", ...others}, ref) { - const Dlna = React.forwardRef(function Dlna({color = 'currentColor', size = 24, title = "dlna", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dlna - \ No newline at end of file +export default Dlna; diff --git a/src/components/Dm.tsx b/src/components/Dm.tsx index d3ef96f5f..0d8aa6eb5 100644 --- a/src/components/Dm.tsx +++ b/src/components/Dm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dm = React.forwardRef(function Dm({color = 'currentColor', size = 24, title = "dm", ...others}, ref) { - const Dm = React.forwardRef(function Dm({color = 'currentColor', size = 24, title = "dm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dm - \ No newline at end of file +export default Dm; diff --git a/src/components/Docker.tsx b/src/components/Docker.tsx index 43d5a89ca..472775cd7 100644 --- a/src/components/Docker.tsx +++ b/src/components/Docker.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DockerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DockerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Docker = React.forwardRef(function Docker({color = 'currentColor', size = 24, title = "docker", ...others}, ref) { - const Docker = React.forwardRef(function Docker({color = 'currentColor', size = 24, title = "docker", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Docker - \ No newline at end of file +export default Docker; diff --git a/src/components/Docsdotrs.tsx b/src/components/Docsdotrs.tsx index 400fa869f..083bff72a 100644 --- a/src/components/Docsdotrs.tsx +++ b/src/components/Docsdotrs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DocsdotrsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DocsdotrsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Docsdotrs = React.forwardRef(function Docsdotrs({color = 'currentColor', size = 24, title = "docsdotrs", ...others}, ref) { - const Docsdotrs = React.forwardRef(function Docsdotrs({color = 'currentColor', size = 24, title = "docsdotrs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Docsdotrs - \ No newline at end of file +export default Docsdotrs; diff --git a/src/components/Docusign.tsx b/src/components/Docusign.tsx index c255ba118..64f9422f8 100644 --- a/src/components/Docusign.tsx +++ b/src/components/Docusign.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DocusignProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DocusignProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Docusign = React.forwardRef(function Docusign({color = 'currentColor', size = 24, title = "docusign", ...others}, ref) { - const Docusign = React.forwardRef(function Docusign({color = 'currentColor', size = 24, title = "docusign", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Docusign - \ No newline at end of file +export default Docusign; diff --git a/src/components/Dogecoin.tsx b/src/components/Dogecoin.tsx index 34a706c9f..5ccbc9fc8 100644 --- a/src/components/Dogecoin.tsx +++ b/src/components/Dogecoin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DogecoinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DogecoinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dogecoin = React.forwardRef(function Dogecoin({color = 'currentColor', size = 24, title = "dogecoin", ...others}, ref) { - const Dogecoin = React.forwardRef(function Dogecoin({color = 'currentColor', size = 24, title = "dogecoin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dogecoin - \ No newline at end of file +export default Dogecoin; diff --git a/src/components/Dolby.tsx b/src/components/Dolby.tsx index c5de287ad..afb98ae02 100644 --- a/src/components/Dolby.tsx +++ b/src/components/Dolby.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DolbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DolbyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dolby = React.forwardRef(function Dolby({color = 'currentColor', size = 24, title = "dolby", ...others}, ref) { - const Dolby = React.forwardRef(function Dolby({color = 'currentColor', size = 24, title = "dolby", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dolby - \ No newline at end of file +export default Dolby; diff --git a/src/components/Doordash.tsx b/src/components/Doordash.tsx index f5b9e91c0..f2ed98a71 100644 --- a/src/components/Doordash.tsx +++ b/src/components/Doordash.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DoordashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DoordashProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Doordash = React.forwardRef(function Doordash({color = 'currentColor', size = 24, title = "doordash", ...others}, ref) { - const Doordash = React.forwardRef(function Doordash({color = 'currentColor', size = 24, title = "doordash", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Doordash - \ No newline at end of file +export default Doordash; diff --git a/src/components/Dotenv.tsx b/src/components/Dotenv.tsx index 193a511aa..1df20d9cd 100644 --- a/src/components/Dotenv.tsx +++ b/src/components/Dotenv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DotenvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DotenvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dotenv = React.forwardRef(function Dotenv({color = 'currentColor', size = 24, title = "dotenv", ...others}, ref) { - const Dotenv = React.forwardRef(function Dotenv({color = 'currentColor', size = 24, title = "dotenv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dotenv - \ No newline at end of file +export default Dotenv; diff --git a/src/components/Dotnet.tsx b/src/components/Dotnet.tsx index 7820e3b0e..d30ab555a 100644 --- a/src/components/Dotnet.tsx +++ b/src/components/Dotnet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DotnetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DotnetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dotnet = React.forwardRef(function Dotnet({color = 'currentColor', size = 24, title = "dotnet", ...others}, ref) { - const Dotnet = React.forwardRef(function Dotnet({color = 'currentColor', size = 24, title = "dotnet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dotnet - \ No newline at end of file +export default Dotnet; diff --git a/src/components/Douban.tsx b/src/components/Douban.tsx index 4f904738a..48e863652 100644 --- a/src/components/Douban.tsx +++ b/src/components/Douban.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DoubanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DoubanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Douban = React.forwardRef(function Douban({color = 'currentColor', size = 24, title = "douban", ...others}, ref) { - const Douban = React.forwardRef(function Douban({color = 'currentColor', size = 24, title = "douban", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Douban - \ No newline at end of file +export default Douban; diff --git a/src/components/Doubanread.tsx b/src/components/Doubanread.tsx index 96e6c3da4..976dac74c 100644 --- a/src/components/Doubanread.tsx +++ b/src/components/Doubanread.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DoubanreadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DoubanreadProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Doubanread = React.forwardRef(function Doubanread({color = 'currentColor', size = 24, title = "doubanread", ...others}, ref) { - const Doubanread = React.forwardRef(function Doubanread({color = 'currentColor', size = 24, title = "doubanread", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Doubanread - \ No newline at end of file +export default Doubanread; diff --git a/src/components/Dpd.tsx b/src/components/Dpd.tsx index 518172ad5..210347b3d 100644 --- a/src/components/Dpd.tsx +++ b/src/components/Dpd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DpdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DpdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dpd = React.forwardRef(function Dpd({color = 'currentColor', size = 24, title = "dpd", ...others}, ref) { - const Dpd = React.forwardRef(function Dpd({color = 'currentColor', size = 24, title = "dpd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dpd - \ No newline at end of file +export default Dpd; diff --git a/src/components/Dragonframe.tsx b/src/components/Dragonframe.tsx index 91d0f60b0..9d95a9f3e 100644 --- a/src/components/Dragonframe.tsx +++ b/src/components/Dragonframe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DragonframeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DragonframeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dragonframe = React.forwardRef(function Dragonframe({color = 'currentColor', size = 24, title = "dragonframe", ...others}, ref) { - const Dragonframe = React.forwardRef(function Dragonframe({color = 'currentColor', size = 24, title = "dragonframe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dragonframe - \ No newline at end of file +export default Dragonframe; diff --git a/src/components/Draugiemdotlv.tsx b/src/components/Draugiemdotlv.tsx index dc2867c86..56321393e 100644 --- a/src/components/Draugiemdotlv.tsx +++ b/src/components/Draugiemdotlv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DraugiemdotlvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DraugiemdotlvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Draugiemdotlv = React.forwardRef(function Draugiemdotlv({color = 'currentColor', size = 24, title = "draugiemdotlv", ...others}, ref) { - const Draugiemdotlv = React.forwardRef(function Draugiemdotlv({color = 'currentColor', size = 24, title = "draugiemdotlv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Draugiemdotlv - \ No newline at end of file +export default Draugiemdotlv; diff --git a/src/components/Dribbble.tsx b/src/components/Dribbble.tsx index a5676b222..d80a256e6 100644 --- a/src/components/Dribbble.tsx +++ b/src/components/Dribbble.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DribbbleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DribbbleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dribbble = React.forwardRef(function Dribbble({color = 'currentColor', size = 24, title = "dribbble", ...others}, ref) { - const Dribbble = React.forwardRef(function Dribbble({color = 'currentColor', size = 24, title = "dribbble", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dribbble - \ No newline at end of file +export default Dribbble; diff --git a/src/components/Drone.tsx b/src/components/Drone.tsx index 6e87fd705..e71c69551 100644 --- a/src/components/Drone.tsx +++ b/src/components/Drone.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DroneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DroneProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Drone = React.forwardRef(function Drone({color = 'currentColor', size = 24, title = "drone", ...others}, ref) { - const Drone = React.forwardRef(function Drone({color = 'currentColor', size = 24, title = "drone", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Drone - \ No newline at end of file +export default Drone; diff --git a/src/components/Drooble.tsx b/src/components/Drooble.tsx index ce7ec2628..3f1987184 100644 --- a/src/components/Drooble.tsx +++ b/src/components/Drooble.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DroobleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DroobleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Drooble = React.forwardRef(function Drooble({color = 'currentColor', size = 24, title = "drooble", ...others}, ref) { - const Drooble = React.forwardRef(function Drooble({color = 'currentColor', size = 24, title = "drooble", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Drooble - \ No newline at end of file +export default Drooble; diff --git a/src/components/Dropbox.tsx b/src/components/Dropbox.tsx index 607da715c..a5a241f76 100644 --- a/src/components/Dropbox.tsx +++ b/src/components/Dropbox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DropboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DropboxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dropbox = React.forwardRef(function Dropbox({color = 'currentColor', size = 24, title = "dropbox", ...others}, ref) { - const Dropbox = React.forwardRef(function Dropbox({color = 'currentColor', size = 24, title = "dropbox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dropbox - \ No newline at end of file +export default Dropbox; diff --git a/src/components/Drupal.tsx b/src/components/Drupal.tsx index 30bf49676..e265fe99c 100644 --- a/src/components/Drupal.tsx +++ b/src/components/Drupal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DrupalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DrupalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Drupal = React.forwardRef(function Drupal({color = 'currentColor', size = 24, title = "drupal", ...others}, ref) { - const Drupal = React.forwardRef(function Drupal({color = 'currentColor', size = 24, title = "drupal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Drupal - \ No newline at end of file +export default Drupal; diff --git a/src/components/Dsautomobiles.tsx b/src/components/Dsautomobiles.tsx index 387c099c9..3d95bab3e 100644 --- a/src/components/Dsautomobiles.tsx +++ b/src/components/Dsautomobiles.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DsautomobilesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DsautomobilesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dsautomobiles = React.forwardRef(function Dsautomobiles({color = 'currentColor', size = 24, title = "dsautomobiles", ...others}, ref) { - const Dsautomobiles = React.forwardRef(function Dsautomobiles({color = 'currentColor', size = 24, title = "dsautomobiles", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dsautomobiles - \ No newline at end of file +export default Dsautomobiles; diff --git a/src/components/Dtube.tsx b/src/components/Dtube.tsx index 7b0410c9e..8add7729e 100644 --- a/src/components/Dtube.tsx +++ b/src/components/Dtube.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DtubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DtubeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dtube = React.forwardRef(function Dtube({color = 'currentColor', size = 24, title = "dtube", ...others}, ref) { - const Dtube = React.forwardRef(function Dtube({color = 'currentColor', size = 24, title = "dtube", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dtube - \ No newline at end of file +export default Dtube; diff --git a/src/components/Ducati.tsx b/src/components/Ducati.tsx index 473680a1a..66849efaa 100644 --- a/src/components/Ducati.tsx +++ b/src/components/Ducati.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DucatiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DucatiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ducati = React.forwardRef(function Ducati({color = 'currentColor', size = 24, title = "ducati", ...others}, ref) { - const Ducati = React.forwardRef(function Ducati({color = 'currentColor', size = 24, title = "ducati", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ducati - \ No newline at end of file +export default Ducati; diff --git a/src/components/Duckdb.tsx b/src/components/Duckdb.tsx index 021cbe621..4cb19d670 100644 --- a/src/components/Duckdb.tsx +++ b/src/components/Duckdb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DuckdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DuckdbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Duckdb = React.forwardRef(function Duckdb({color = 'currentColor', size = 24, title = "duckdb", ...others}, ref) { - const Duckdb = React.forwardRef(function Duckdb({color = 'currentColor', size = 24, title = "duckdb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Duckdb - \ No newline at end of file +export default Duckdb; diff --git a/src/components/Duckduckgo.tsx b/src/components/Duckduckgo.tsx index 17277ccb2..8bd728664 100644 --- a/src/components/Duckduckgo.tsx +++ b/src/components/Duckduckgo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DuckduckgoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DuckduckgoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Duckduckgo = React.forwardRef(function Duckduckgo({color = 'currentColor', size = 24, title = "duckduckgo", ...others}, ref) { - const Duckduckgo = React.forwardRef(function Duckduckgo({color = 'currentColor', size = 24, title = "duckduckgo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Duckduckgo - \ No newline at end of file +export default Duckduckgo; diff --git a/src/components/Dungeonsanddragons.tsx b/src/components/Dungeonsanddragons.tsx index bfa82daa3..f0b15f9bb 100644 --- a/src/components/Dungeonsanddragons.tsx +++ b/src/components/Dungeonsanddragons.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DungeonsanddragonsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DungeonsanddragonsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dungeonsanddragons = React.forwardRef(function Dungeonsanddragons({color = 'currentColor', size = 24, title = "dungeonsanddragons", ...others}, ref) { - const Dungeonsanddragons = React.forwardRef(function Dungeonsanddragons({color = 'currentColor', size = 24, title = "dungeonsanddragons", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dungeonsanddragons - \ No newline at end of file +export default Dungeonsanddragons; diff --git a/src/components/Dunked.tsx b/src/components/Dunked.tsx index 9237a0b57..ec268e607 100644 --- a/src/components/Dunked.tsx +++ b/src/components/Dunked.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DunkedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DunkedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dunked = React.forwardRef(function Dunked({color = 'currentColor', size = 24, title = "dunked", ...others}, ref) { - const Dunked = React.forwardRef(function Dunked({color = 'currentColor', size = 24, title = "dunked", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dunked - \ No newline at end of file +export default Dunked; diff --git a/src/components/Duolingo.tsx b/src/components/Duolingo.tsx index 9e4c8bc32..d61a1067a 100644 --- a/src/components/Duolingo.tsx +++ b/src/components/Duolingo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DuolingoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DuolingoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Duolingo = React.forwardRef(function Duolingo({color = 'currentColor', size = 24, title = "duolingo", ...others}, ref) { - const Duolingo = React.forwardRef(function Duolingo({color = 'currentColor', size = 24, title = "duolingo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Duolingo - \ No newline at end of file +export default Duolingo; diff --git a/src/components/Dvc.tsx b/src/components/Dvc.tsx index ecf5f5545..6137899ad 100644 --- a/src/components/Dvc.tsx +++ b/src/components/Dvc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DvcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DvcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dvc = React.forwardRef(function Dvc({color = 'currentColor', size = 24, title = "dvc", ...others}, ref) { - const Dvc = React.forwardRef(function Dvc({color = 'currentColor', size = 24, title = "dvc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dvc - \ No newline at end of file +export default Dvc; diff --git a/src/components/Dwavesystems.tsx b/src/components/Dwavesystems.tsx index ddc7678d0..fd799bddf 100644 --- a/src/components/Dwavesystems.tsx +++ b/src/components/Dwavesystems.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DwavesystemsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DwavesystemsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dwavesystems = React.forwardRef(function Dwavesystems({color = 'currentColor', size = 24, title = "dwavesystems", ...others}, ref) { - const Dwavesystems = React.forwardRef(function Dwavesystems({color = 'currentColor', size = 24, title = "dwavesystems", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dwavesystems - \ No newline at end of file +export default Dwavesystems; diff --git a/src/components/Dwm.tsx b/src/components/Dwm.tsx index 6c7dedc11..aa419ee50 100644 --- a/src/components/Dwm.tsx +++ b/src/components/Dwm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DwmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DwmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dwm = React.forwardRef(function Dwm({color = 'currentColor', size = 24, title = "dwm", ...others}, ref) { - const Dwm = React.forwardRef(function Dwm({color = 'currentColor', size = 24, title = "dwm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dwm - \ No newline at end of file +export default Dwm; diff --git a/src/components/DynamicsThreeHundredSixtyFive.tsx b/src/components/DynamicsThreeHundredSixtyFive.tsx index 521473cf9..402f41a3a 100644 --- a/src/components/DynamicsThreeHundredSixtyFive.tsx +++ b/src/components/DynamicsThreeHundredSixtyFive.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DynamicsThreeHundredSixtyFiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DynamicsThreeHundredSixtyFiveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const DynamicsThreeHundredSixtyFive = React.forwardRef(function DynamicsThreeHundredSixtyFive({color = 'currentColor', size = 24, title = "dynamics365", ...others}, ref) { - const DynamicsThreeHundredSixtyFive = React.forwardRef(function DynamicsThreeHundredSixtyFive({color = 'currentColor', size = 24, title = "dynamics365", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default DynamicsThreeHundredSixtyFive - \ No newline at end of file +export default DynamicsThreeHundredSixtyFive; diff --git a/src/components/Dynatrace.tsx b/src/components/Dynatrace.tsx index 98325f176..8dff2dc09 100644 --- a/src/components/Dynatrace.tsx +++ b/src/components/Dynatrace.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type DynatraceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type DynatraceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Dynatrace = React.forwardRef(function Dynatrace({color = 'currentColor', size = 24, title = "dynatrace", ...others}, ref) { - const Dynatrace = React.forwardRef(function Dynatrace({color = 'currentColor', size = 24, title = "dynatrace", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Dynatrace - \ No newline at end of file +export default Dynatrace; diff --git a/src/components/E.tsx b/src/components/E.tsx index c5fb77c94..3e8662f64 100644 --- a/src/components/E.tsx +++ b/src/components/E.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const E = React.forwardRef(function E({color = 'currentColor', size = 24, title = "e", ...others}, ref) { - const E = React.forwardRef(function E({color = 'currentColor', size = 24, title = "e", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default E - \ No newline at end of file +export default E; diff --git a/src/components/Ea.tsx b/src/components/Ea.tsx index d58f39f38..24e8e2ceb 100644 --- a/src/components/Ea.tsx +++ b/src/components/Ea.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ea = React.forwardRef(function Ea({color = 'currentColor', size = 24, title = "ea", ...others}, ref) { - const Ea = React.forwardRef(function Ea({color = 'currentColor', size = 24, title = "ea", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ea - \ No newline at end of file +export default Ea; diff --git a/src/components/Eagle.tsx b/src/components/Eagle.tsx index c200da6ca..078fe913d 100644 --- a/src/components/Eagle.tsx +++ b/src/components/Eagle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EagleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EagleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eagle = React.forwardRef(function Eagle({color = 'currentColor', size = 24, title = "eagle", ...others}, ref) { - const Eagle = React.forwardRef(function Eagle({color = 'currentColor', size = 24, title = "eagle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eagle - \ No newline at end of file +export default Eagle; diff --git a/src/components/Easyjet.tsx b/src/components/Easyjet.tsx index c5a008b18..e2348ec93 100644 --- a/src/components/Easyjet.tsx +++ b/src/components/Easyjet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EasyjetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EasyjetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Easyjet = React.forwardRef(function Easyjet({color = 'currentColor', size = 24, title = "easyjet", ...others}, ref) { - const Easyjet = React.forwardRef(function Easyjet({color = 'currentColor', size = 24, title = "easyjet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Easyjet - \ No newline at end of file +export default Easyjet; diff --git a/src/components/Ebay.tsx b/src/components/Ebay.tsx index 6fd9e9707..63cc9076b 100644 --- a/src/components/Ebay.tsx +++ b/src/components/Ebay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EbayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EbayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ebay = React.forwardRef(function Ebay({color = 'currentColor', size = 24, title = "ebay", ...others}, ref) { - const Ebay = React.forwardRef(function Ebay({color = 'currentColor', size = 24, title = "ebay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ebay - \ No newline at end of file +export default Ebay; diff --git a/src/components/Eclipseche.tsx b/src/components/Eclipseche.tsx index 73823c986..05ac36c0c 100644 --- a/src/components/Eclipseche.tsx +++ b/src/components/Eclipseche.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EclipsecheProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EclipsecheProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eclipseche = React.forwardRef(function Eclipseche({color = 'currentColor', size = 24, title = "eclipseche", ...others}, ref) { - const Eclipseche = React.forwardRef(function Eclipseche({color = 'currentColor', size = 24, title = "eclipseche", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eclipseche - \ No newline at end of file +export default Eclipseche; diff --git a/src/components/Eclipseide.tsx b/src/components/Eclipseide.tsx index 19c8760c4..bab402366 100644 --- a/src/components/Eclipseide.tsx +++ b/src/components/Eclipseide.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EclipseideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EclipseideProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eclipseide = React.forwardRef(function Eclipseide({color = 'currentColor', size = 24, title = "eclipseide", ...others}, ref) { - const Eclipseide = React.forwardRef(function Eclipseide({color = 'currentColor', size = 24, title = "eclipseide", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eclipseide - \ No newline at end of file +export default Eclipseide; diff --git a/src/components/Eclipsejetty.tsx b/src/components/Eclipsejetty.tsx index f1cb899da..05330f2ff 100644 --- a/src/components/Eclipsejetty.tsx +++ b/src/components/Eclipsejetty.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EclipsejettyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EclipsejettyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eclipsejetty = React.forwardRef(function Eclipsejetty({color = 'currentColor', size = 24, title = "eclipsejetty", ...others}, ref) { - const Eclipsejetty = React.forwardRef(function Eclipsejetty({color = 'currentColor', size = 24, title = "eclipsejetty", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eclipsejetty - \ No newline at end of file +export default Eclipsejetty; diff --git a/src/components/Eclipsemosquitto.tsx b/src/components/Eclipsemosquitto.tsx index bde86d941..2fdf1d1c2 100644 --- a/src/components/Eclipsemosquitto.tsx +++ b/src/components/Eclipsemosquitto.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EclipsemosquittoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EclipsemosquittoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eclipsemosquitto = React.forwardRef(function Eclipsemosquitto({color = 'currentColor', size = 24, title = "eclipsemosquitto", ...others}, ref) { - const Eclipsemosquitto = React.forwardRef(function Eclipsemosquitto({color = 'currentColor', size = 24, title = "eclipsemosquitto", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eclipsemosquitto - \ No newline at end of file +export default Eclipsemosquitto; diff --git a/src/components/Eclipsevertdotx.tsx b/src/components/Eclipsevertdotx.tsx index b6ff74b5e..4148aeff2 100644 --- a/src/components/Eclipsevertdotx.tsx +++ b/src/components/Eclipsevertdotx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EclipsevertdotxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EclipsevertdotxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eclipsevertdotx = React.forwardRef(function Eclipsevertdotx({color = 'currentColor', size = 24, title = "eclipsevertdotx", ...others}, ref) { - const Eclipsevertdotx = React.forwardRef(function Eclipsevertdotx({color = 'currentColor', size = 24, title = "eclipsevertdotx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eclipsevertdotx - \ No newline at end of file +export default Eclipsevertdotx; diff --git a/src/components/Edeka.tsx b/src/components/Edeka.tsx index b331f846e..73335fcad 100644 --- a/src/components/Edeka.tsx +++ b/src/components/Edeka.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EdekaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EdekaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Edeka = React.forwardRef(function Edeka({color = 'currentColor', size = 24, title = "edeka", ...others}, ref) { - const Edeka = React.forwardRef(function Edeka({color = 'currentColor', size = 24, title = "edeka", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Edeka - \ No newline at end of file +export default Edeka; diff --git a/src/components/Editorconfig.tsx b/src/components/Editorconfig.tsx index 34df3abd2..006029ced 100644 --- a/src/components/Editorconfig.tsx +++ b/src/components/Editorconfig.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EditorconfigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EditorconfigProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Editorconfig = React.forwardRef(function Editorconfig({color = 'currentColor', size = 24, title = "editorconfig", ...others}, ref) { - const Editorconfig = React.forwardRef(function Editorconfig({color = 'currentColor', size = 24, title = "editorconfig", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Editorconfig - \ No newline at end of file +export default Editorconfig; diff --git a/src/components/Edotleclerc.tsx b/src/components/Edotleclerc.tsx index 176fbd81b..5cad118ba 100644 --- a/src/components/Edotleclerc.tsx +++ b/src/components/Edotleclerc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EdotleclercProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EdotleclercProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Edotleclerc = React.forwardRef(function Edotleclerc({color = 'currentColor', size = 24, title = "edotleclerc", ...others}, ref) { - const Edotleclerc = React.forwardRef(function Edotleclerc({color = 'currentColor', size = 24, title = "edotleclerc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Edotleclerc - \ No newline at end of file +export default Edotleclerc; diff --git a/src/components/Edx.tsx b/src/components/Edx.tsx index 96b8223cd..191612ca8 100644 --- a/src/components/Edx.tsx +++ b/src/components/Edx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EdxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EdxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Edx = React.forwardRef(function Edx({color = 'currentColor', size = 24, title = "edx", ...others}, ref) { - const Edx = React.forwardRef(function Edx({color = 'currentColor', size = 24, title = "edx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Edx - \ No newline at end of file +export default Edx; diff --git a/src/components/Egghead.tsx b/src/components/Egghead.tsx index 34609c2e3..9f297cef0 100644 --- a/src/components/Egghead.tsx +++ b/src/components/Egghead.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EggheadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EggheadProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Egghead = React.forwardRef(function Egghead({color = 'currentColor', size = 24, title = "egghead", ...others}, ref) { - const Egghead = React.forwardRef(function Egghead({color = 'currentColor', size = 24, title = "egghead", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Egghead - \ No newline at end of file +export default Egghead; diff --git a/src/components/Egnyte.tsx b/src/components/Egnyte.tsx index f906f5478..fa270f537 100644 --- a/src/components/Egnyte.tsx +++ b/src/components/Egnyte.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EgnyteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EgnyteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Egnyte = React.forwardRef(function Egnyte({color = 'currentColor', size = 24, title = "egnyte", ...others}, ref) { - const Egnyte = React.forwardRef(function Egnyte({color = 'currentColor', size = 24, title = "egnyte", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Egnyte - \ No newline at end of file +export default Egnyte; diff --git a/src/components/Eightsleep.tsx b/src/components/Eightsleep.tsx index ab140e3a7..56b7bfdda 100644 --- a/src/components/Eightsleep.tsx +++ b/src/components/Eightsleep.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EightsleepProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EightsleepProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eightsleep = React.forwardRef(function Eightsleep({color = 'currentColor', size = 24, title = "eightsleep", ...others}, ref) { - const Eightsleep = React.forwardRef(function Eightsleep({color = 'currentColor', size = 24, title = "eightsleep", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eightsleep - \ No newline at end of file +export default Eightsleep; diff --git a/src/components/Elastic.tsx b/src/components/Elastic.tsx index bc77c700e..3ac0f437b 100644 --- a/src/components/Elastic.tsx +++ b/src/components/Elastic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElasticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElasticProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Elastic = React.forwardRef(function Elastic({color = 'currentColor', size = 24, title = "elastic", ...others}, ref) { - const Elastic = React.forwardRef(function Elastic({color = 'currentColor', size = 24, title = "elastic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Elastic - \ No newline at end of file +export default Elastic; diff --git a/src/components/Elasticcloud.tsx b/src/components/Elasticcloud.tsx index 74d12f3f0..1fcb10262 100644 --- a/src/components/Elasticcloud.tsx +++ b/src/components/Elasticcloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElasticcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElasticcloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Elasticcloud = React.forwardRef(function Elasticcloud({color = 'currentColor', size = 24, title = "elasticcloud", ...others}, ref) { - const Elasticcloud = React.forwardRef(function Elasticcloud({color = 'currentColor', size = 24, title = "elasticcloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Elasticcloud - \ No newline at end of file +export default Elasticcloud; diff --git a/src/components/Elasticsearch.tsx b/src/components/Elasticsearch.tsx index d958ae159..6c6232d34 100644 --- a/src/components/Elasticsearch.tsx +++ b/src/components/Elasticsearch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElasticsearchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElasticsearchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Elasticsearch = React.forwardRef(function Elasticsearch({color = 'currentColor', size = 24, title = "elasticsearch", ...others}, ref) { - const Elasticsearch = React.forwardRef(function Elasticsearch({color = 'currentColor', size = 24, title = "elasticsearch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Elasticsearch - \ No newline at end of file +export default Elasticsearch; diff --git a/src/components/Elasticstack.tsx b/src/components/Elasticstack.tsx index be55a3820..01e7a82fa 100644 --- a/src/components/Elasticstack.tsx +++ b/src/components/Elasticstack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElasticstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElasticstackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Elasticstack = React.forwardRef(function Elasticstack({color = 'currentColor', size = 24, title = "elasticstack", ...others}, ref) { - const Elasticstack = React.forwardRef(function Elasticstack({color = 'currentColor', size = 24, title = "elasticstack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Elasticstack - \ No newline at end of file +export default Elasticstack; diff --git a/src/components/Electron.tsx b/src/components/Electron.tsx index 25085ef24..314b3f173 100644 --- a/src/components/Electron.tsx +++ b/src/components/Electron.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElectronProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElectronProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Electron = React.forwardRef(function Electron({color = 'currentColor', size = 24, title = "electron", ...others}, ref) { - const Electron = React.forwardRef(function Electron({color = 'currentColor', size = 24, title = "electron", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Electron - \ No newline at end of file +export default Electron; diff --git a/src/components/Electronbuilder.tsx b/src/components/Electronbuilder.tsx index 962109d14..ae6167c58 100644 --- a/src/components/Electronbuilder.tsx +++ b/src/components/Electronbuilder.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElectronbuilderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElectronbuilderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Electronbuilder = React.forwardRef(function Electronbuilder({color = 'currentColor', size = 24, title = "electronbuilder", ...others}, ref) { - const Electronbuilder = React.forwardRef(function Electronbuilder({color = 'currentColor', size = 24, title = "electronbuilder", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Electronbuilder - \ No newline at end of file +export default Electronbuilder; diff --git a/src/components/Electronfiddle.tsx b/src/components/Electronfiddle.tsx new file mode 100644 index 000000000..3c6ba831d --- /dev/null +++ b/src/components/Electronfiddle.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type ElectronfiddleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Electronfiddle = React.forwardRef(function Electronfiddle({color = 'currentColor', size = 24, title = "electronfiddle", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Electronfiddle; diff --git a/src/components/Element.tsx b/src/components/Element.tsx index 56eb80dea..bd96e959a 100644 --- a/src/components/Element.tsx +++ b/src/components/Element.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElementProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElementProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Element = React.forwardRef(function Element({color = 'currentColor', size = 24, title = "element", ...others}, ref) { - const Element = React.forwardRef(function Element({color = 'currentColor', size = 24, title = "element", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Element - \ No newline at end of file +export default Element; diff --git a/src/components/Elementary.tsx b/src/components/Elementary.tsx index 8981e7da2..ea97653de 100644 --- a/src/components/Elementary.tsx +++ b/src/components/Elementary.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElementaryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElementaryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Elementary = React.forwardRef(function Elementary({color = 'currentColor', size = 24, title = "elementary", ...others}, ref) { - const Elementary = React.forwardRef(function Elementary({color = 'currentColor', size = 24, title = "elementary", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Elementary - \ No newline at end of file +export default Elementary; diff --git a/src/components/Elementor.tsx b/src/components/Elementor.tsx index 4a002c6d9..4aceaa6b8 100644 --- a/src/components/Elementor.tsx +++ b/src/components/Elementor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElementorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElementorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Elementor = React.forwardRef(function Elementor({color = 'currentColor', size = 24, title = "elementor", ...others}, ref) { - const Elementor = React.forwardRef(function Elementor({color = 'currentColor', size = 24, title = "elementor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Elementor - \ No newline at end of file +export default Elementor; diff --git a/src/components/Eleventy.tsx b/src/components/Eleventy.tsx index 9537682e1..198a13327 100644 --- a/src/components/Eleventy.tsx +++ b/src/components/Eleventy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EleventyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EleventyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eleventy = React.forwardRef(function Eleventy({color = 'currentColor', size = 24, title = "eleventy", ...others}, ref) { - const Eleventy = React.forwardRef(function Eleventy({color = 'currentColor', size = 24, title = "eleventy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eleventy - \ No newline at end of file +export default Eleventy; diff --git a/src/components/Elixir.tsx b/src/components/Elixir.tsx index 55292e8da..ca2babf4a 100644 --- a/src/components/Elixir.tsx +++ b/src/components/Elixir.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElixirProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElixirProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Elixir = React.forwardRef(function Elixir({color = 'currentColor', size = 24, title = "elixir", ...others}, ref) { - const Elixir = React.forwardRef(function Elixir({color = 'currentColor', size = 24, title = "elixir", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Elixir - \ No newline at end of file +export default Elixir; diff --git a/src/components/Eljueves.tsx b/src/components/Eljueves.tsx index a7de1a95e..a6c46c925 100644 --- a/src/components/Eljueves.tsx +++ b/src/components/Eljueves.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EljuevesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EljuevesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eljueves = React.forwardRef(function Eljueves({color = 'currentColor', size = 24, title = "eljueves", ...others}, ref) { - const Eljueves = React.forwardRef(function Eljueves({color = 'currentColor', size = 24, title = "eljueves", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eljueves - \ No newline at end of file +export default Eljueves; diff --git a/src/components/Ello.tsx b/src/components/Ello.tsx index 656b3f19e..11a06fb03 100644 --- a/src/components/Ello.tsx +++ b/src/components/Ello.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElloProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ello = React.forwardRef(function Ello({color = 'currentColor', size = 24, title = "ello", ...others}, ref) { - const Ello = React.forwardRef(function Ello({color = 'currentColor', size = 24, title = "ello", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ello - \ No newline at end of file +export default Ello; diff --git a/src/components/Elm.tsx b/src/components/Elm.tsx index eb109bb75..7232846d8 100644 --- a/src/components/Elm.tsx +++ b/src/components/Elm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Elm = React.forwardRef(function Elm({color = 'currentColor', size = 24, title = "elm", ...others}, ref) { - const Elm = React.forwardRef(function Elm({color = 'currentColor', size = 24, title = "elm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Elm - \ No newline at end of file +export default Elm; diff --git a/src/components/Elsevier.tsx b/src/components/Elsevier.tsx index d22e72792..79e20fe0f 100644 --- a/src/components/Elsevier.tsx +++ b/src/components/Elsevier.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ElsevierProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ElsevierProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Elsevier = React.forwardRef(function Elsevier({color = 'currentColor', size = 24, title = "elsevier", ...others}, ref) { - const Elsevier = React.forwardRef(function Elsevier({color = 'currentColor', size = 24, title = "elsevier", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Elsevier - \ No newline at end of file +export default Elsevier; diff --git a/src/components/Embarcadero.tsx b/src/components/Embarcadero.tsx index e8734e9c0..e8a949dba 100644 --- a/src/components/Embarcadero.tsx +++ b/src/components/Embarcadero.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EmbarcaderoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EmbarcaderoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Embarcadero = React.forwardRef(function Embarcadero({color = 'currentColor', size = 24, title = "embarcadero", ...others}, ref) { - const Embarcadero = React.forwardRef(function Embarcadero({color = 'currentColor', size = 24, title = "embarcadero", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Embarcadero - \ No newline at end of file +export default Embarcadero; diff --git a/src/components/Emberdotjs.tsx b/src/components/Emberdotjs.tsx index 74102e85f..46544d804 100644 --- a/src/components/Emberdotjs.tsx +++ b/src/components/Emberdotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EmberdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EmberdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Emberdotjs = React.forwardRef(function Emberdotjs({color = 'currentColor', size = 24, title = "emberdotjs", ...others}, ref) { - const Emberdotjs = React.forwardRef(function Emberdotjs({color = 'currentColor', size = 24, title = "emberdotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Emberdotjs - \ No newline at end of file +export default Emberdotjs; diff --git a/src/components/Emby.tsx b/src/components/Emby.tsx index 412d1f3d2..cbb89226d 100644 --- a/src/components/Emby.tsx +++ b/src/components/Emby.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EmbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EmbyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Emby = React.forwardRef(function Emby({color = 'currentColor', size = 24, title = "emby", ...others}, ref) { - const Emby = React.forwardRef(function Emby({color = 'currentColor', size = 24, title = "emby", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Emby - \ No newline at end of file +export default Emby; diff --git a/src/components/Emirates.tsx b/src/components/Emirates.tsx index f8a58b457..909d76d73 100644 --- a/src/components/Emirates.tsx +++ b/src/components/Emirates.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EmiratesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EmiratesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Emirates = React.forwardRef(function Emirates({color = 'currentColor', size = 24, title = "emirates", ...others}, ref) { - const Emirates = React.forwardRef(function Emirates({color = 'currentColor', size = 24, title = "emirates", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Emirates - \ No newline at end of file +export default Emirates; diff --git a/src/components/Emlakjet.tsx b/src/components/Emlakjet.tsx index 2e1022a03..e145f015b 100644 --- a/src/components/Emlakjet.tsx +++ b/src/components/Emlakjet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EmlakjetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EmlakjetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Emlakjet = React.forwardRef(function Emlakjet({color = 'currentColor', size = 24, title = "emlakjet", ...others}, ref) { - const Emlakjet = React.forwardRef(function Emlakjet({color = 'currentColor', size = 24, title = "emlakjet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Emlakjet - \ No newline at end of file +export default Emlakjet; diff --git a/src/components/Empirekred.tsx b/src/components/Empirekred.tsx index 74c24e90b..25d7f76d4 100644 --- a/src/components/Empirekred.tsx +++ b/src/components/Empirekred.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EmpirekredProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EmpirekredProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Empirekred = React.forwardRef(function Empirekred({color = 'currentColor', size = 24, title = "empirekred", ...others}, ref) { - const Empirekred = React.forwardRef(function Empirekred({color = 'currentColor', size = 24, title = "empirekred", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Empirekred - \ No newline at end of file +export default Empirekred; diff --git a/src/components/Enpass.tsx b/src/components/Enpass.tsx index ff2e9aecc..9390253a8 100644 --- a/src/components/Enpass.tsx +++ b/src/components/Enpass.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EnpassProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EnpassProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Enpass = React.forwardRef(function Enpass({color = 'currentColor', size = 24, title = "enpass", ...others}, ref) { - const Enpass = React.forwardRef(function Enpass({color = 'currentColor', size = 24, title = "enpass", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Enpass - \ No newline at end of file +export default Enpass; diff --git a/src/components/Enterprisedb.tsx b/src/components/Enterprisedb.tsx index 7e06d46b5..41d87de05 100644 --- a/src/components/Enterprisedb.tsx +++ b/src/components/Enterprisedb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EnterprisedbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EnterprisedbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Enterprisedb = React.forwardRef(function Enterprisedb({color = 'currentColor', size = 24, title = "enterprisedb", ...others}, ref) { - const Enterprisedb = React.forwardRef(function Enterprisedb({color = 'currentColor', size = 24, title = "enterprisedb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Enterprisedb - \ No newline at end of file +export default Enterprisedb; diff --git a/src/components/Envato.tsx b/src/components/Envato.tsx index f6254af7a..60742093e 100644 --- a/src/components/Envato.tsx +++ b/src/components/Envato.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EnvatoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EnvatoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Envato = React.forwardRef(function Envato({color = 'currentColor', size = 24, title = "envato", ...others}, ref) { - const Envato = React.forwardRef(function Envato({color = 'currentColor', size = 24, title = "envato", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Envato - \ No newline at end of file +export default Envato; diff --git a/src/components/Epel.tsx b/src/components/Epel.tsx index ea75e81a6..ffab7a591 100644 --- a/src/components/Epel.tsx +++ b/src/components/Epel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EpelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EpelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Epel = React.forwardRef(function Epel({color = 'currentColor', size = 24, title = "epel", ...others}, ref) { - const Epel = React.forwardRef(function Epel({color = 'currentColor', size = 24, title = "epel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Epel - \ No newline at end of file +export default Epel; diff --git a/src/components/Epicgames.tsx b/src/components/Epicgames.tsx index 8f5cc9f3f..5962df336 100644 --- a/src/components/Epicgames.tsx +++ b/src/components/Epicgames.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EpicgamesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EpicgamesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Epicgames = React.forwardRef(function Epicgames({color = 'currentColor', size = 24, title = "epicgames", ...others}, ref) { - const Epicgames = React.forwardRef(function Epicgames({color = 'currentColor', size = 24, title = "epicgames", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Epicgames - \ No newline at end of file +export default Epicgames; diff --git a/src/components/Epson.tsx b/src/components/Epson.tsx index c13873614..b785768a3 100644 --- a/src/components/Epson.tsx +++ b/src/components/Epson.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EpsonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EpsonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Epson = React.forwardRef(function Epson({color = 'currentColor', size = 24, title = "epson", ...others}, ref) { - const Epson = React.forwardRef(function Epson({color = 'currentColor', size = 24, title = "epson", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Epson - \ No newline at end of file +export default Epson; diff --git a/src/components/Equinixmetal.tsx b/src/components/Equinixmetal.tsx index d8206284b..54b5f5693 100644 --- a/src/components/Equinixmetal.tsx +++ b/src/components/Equinixmetal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EquinixmetalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EquinixmetalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Equinixmetal = React.forwardRef(function Equinixmetal({color = 'currentColor', size = 24, title = "equinixmetal", ...others}, ref) { - const Equinixmetal = React.forwardRef(function Equinixmetal({color = 'currentColor', size = 24, title = "equinixmetal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Equinixmetal - \ No newline at end of file +export default Equinixmetal; diff --git a/src/components/Erlang.tsx b/src/components/Erlang.tsx index 50573b4c8..82a49979d 100644 --- a/src/components/Erlang.tsx +++ b/src/components/Erlang.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ErlangProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ErlangProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Erlang = React.forwardRef(function Erlang({color = 'currentColor', size = 24, title = "erlang", ...others}, ref) { - const Erlang = React.forwardRef(function Erlang({color = 'currentColor', size = 24, title = "erlang", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Erlang - \ No newline at end of file +export default Erlang; diff --git a/src/components/Esbuild.tsx b/src/components/Esbuild.tsx index 756959e51..cfab31a4b 100644 --- a/src/components/Esbuild.tsx +++ b/src/components/Esbuild.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EsbuildProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EsbuildProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Esbuild = React.forwardRef(function Esbuild({color = 'currentColor', size = 24, title = "esbuild", ...others}, ref) { - const Esbuild = React.forwardRef(function Esbuild({color = 'currentColor', size = 24, title = "esbuild", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Esbuild - \ No newline at end of file +export default Esbuild; diff --git a/src/components/Esea.tsx b/src/components/Esea.tsx index 26882f485..055d6bc87 100644 --- a/src/components/Esea.tsx +++ b/src/components/Esea.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EseaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EseaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Esea = React.forwardRef(function Esea({color = 'currentColor', size = 24, title = "esea", ...others}, ref) { - const Esea = React.forwardRef(function Esea({color = 'currentColor', size = 24, title = "esea", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Esea - \ No newline at end of file +export default Esea; diff --git a/src/components/Eslgaming.tsx b/src/components/Eslgaming.tsx index 3a5f88a9e..72ddad72a 100644 --- a/src/components/Eslgaming.tsx +++ b/src/components/Eslgaming.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EslgamingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EslgamingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eslgaming = React.forwardRef(function Eslgaming({color = 'currentColor', size = 24, title = "eslgaming", ...others}, ref) { - const Eslgaming = React.forwardRef(function Eslgaming({color = 'currentColor', size = 24, title = "eslgaming", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eslgaming - \ No newline at end of file +export default Eslgaming; diff --git a/src/components/Eslint.tsx b/src/components/Eslint.tsx index b96f42acc..a44cd0e8e 100644 --- a/src/components/Eslint.tsx +++ b/src/components/Eslint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EslintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EslintProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eslint = React.forwardRef(function Eslint({color = 'currentColor', size = 24, title = "eslint", ...others}, ref) { - const Eslint = React.forwardRef(function Eslint({color = 'currentColor', size = 24, title = "eslint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eslint - \ No newline at end of file +export default Eslint; diff --git a/src/components/Esphome.tsx b/src/components/Esphome.tsx index bf606fc95..d5f9b1f51 100644 --- a/src/components/Esphome.tsx +++ b/src/components/Esphome.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EsphomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EsphomeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Esphome = React.forwardRef(function Esphome({color = 'currentColor', size = 24, title = "esphome", ...others}, ref) { - const Esphome = React.forwardRef(function Esphome({color = 'currentColor', size = 24, title = "esphome", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Esphome - \ No newline at end of file +export default Esphome; diff --git a/src/components/Espressif.tsx b/src/components/Espressif.tsx index 276d15b6d..dee1235f0 100644 --- a/src/components/Espressif.tsx +++ b/src/components/Espressif.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EspressifProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EspressifProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Espressif = React.forwardRef(function Espressif({color = 'currentColor', size = 24, title = "espressif", ...others}, ref) { - const Espressif = React.forwardRef(function Espressif({color = 'currentColor', size = 24, title = "espressif", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Espressif - \ No newline at end of file +export default Espressif; diff --git a/src/components/Etcd.tsx b/src/components/Etcd.tsx index d77a82b47..fed0beb54 100644 --- a/src/components/Etcd.tsx +++ b/src/components/Etcd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EtcdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EtcdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Etcd = React.forwardRef(function Etcd({color = 'currentColor', size = 24, title = "etcd", ...others}, ref) { - const Etcd = React.forwardRef(function Etcd({color = 'currentColor', size = 24, title = "etcd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Etcd - \ No newline at end of file +export default Etcd; diff --git a/src/components/Ethereum.tsx b/src/components/Ethereum.tsx index 69c3d4b83..1e26a0aba 100644 --- a/src/components/Ethereum.tsx +++ b/src/components/Ethereum.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EthereumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EthereumProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ethereum = React.forwardRef(function Ethereum({color = 'currentColor', size = 24, title = "ethereum", ...others}, ref) { - const Ethereum = React.forwardRef(function Ethereum({color = 'currentColor', size = 24, title = "ethereum", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ethereum - \ No newline at end of file +export default Ethereum; diff --git a/src/components/Ethiopianairlines.tsx b/src/components/Ethiopianairlines.tsx index cbedd9f0d..0d155edfa 100644 --- a/src/components/Ethiopianairlines.tsx +++ b/src/components/Ethiopianairlines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EthiopianairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EthiopianairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ethiopianairlines = React.forwardRef(function Ethiopianairlines({color = 'currentColor', size = 24, title = "ethiopianairlines", ...others}, ref) { - const Ethiopianairlines = React.forwardRef(function Ethiopianairlines({color = 'currentColor', size = 24, title = "ethiopianairlines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ethiopianairlines - \ No newline at end of file +export default Ethiopianairlines; diff --git a/src/components/Etihadairways.tsx b/src/components/Etihadairways.tsx index a81e3c6cb..853814ee2 100644 --- a/src/components/Etihadairways.tsx +++ b/src/components/Etihadairways.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EtihadairwaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EtihadairwaysProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Etihadairways = React.forwardRef(function Etihadairways({color = 'currentColor', size = 24, title = "etihadairways", ...others}, ref) { - const Etihadairways = React.forwardRef(function Etihadairways({color = 'currentColor', size = 24, title = "etihadairways", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Etihadairways - \ No newline at end of file +export default Etihadairways; diff --git a/src/components/Etsy.tsx b/src/components/Etsy.tsx index 6b293782c..dc9156370 100644 --- a/src/components/Etsy.tsx +++ b/src/components/Etsy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EtsyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EtsyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Etsy = React.forwardRef(function Etsy({color = 'currentColor', size = 24, title = "etsy", ...others}, ref) { - const Etsy = React.forwardRef(function Etsy({color = 'currentColor', size = 24, title = "etsy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Etsy - \ No newline at end of file +export default Etsy; diff --git a/src/components/Eventbrite.tsx b/src/components/Eventbrite.tsx index caa58eea8..be8d7d731 100644 --- a/src/components/Eventbrite.tsx +++ b/src/components/Eventbrite.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EventbriteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EventbriteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eventbrite = React.forwardRef(function Eventbrite({color = 'currentColor', size = 24, title = "eventbrite", ...others}, ref) { - const Eventbrite = React.forwardRef(function Eventbrite({color = 'currentColor', size = 24, title = "eventbrite", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eventbrite - \ No newline at end of file +export default Eventbrite; diff --git a/src/components/Eventstore.tsx b/src/components/Eventstore.tsx index 0f85a0ba9..a8ea0548b 100644 --- a/src/components/Eventstore.tsx +++ b/src/components/Eventstore.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EventstoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EventstoreProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eventstore = React.forwardRef(function Eventstore({color = 'currentColor', size = 24, title = "eventstore", ...others}, ref) { - const Eventstore = React.forwardRef(function Eventstore({color = 'currentColor', size = 24, title = "eventstore", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eventstore - \ No newline at end of file +export default Eventstore; diff --git a/src/components/Evernote.tsx b/src/components/Evernote.tsx index 6eaa161c0..cc5a05bd7 100644 --- a/src/components/Evernote.tsx +++ b/src/components/Evernote.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EvernoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EvernoteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Evernote = React.forwardRef(function Evernote({color = 'currentColor', size = 24, title = "evernote", ...others}, ref) { - const Evernote = React.forwardRef(function Evernote({color = 'currentColor', size = 24, title = "evernote", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Evernote - \ No newline at end of file +export default Evernote; diff --git a/src/components/Exercism.tsx b/src/components/Exercism.tsx index 2975e36f9..ab2d158e4 100644 --- a/src/components/Exercism.tsx +++ b/src/components/Exercism.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ExercismProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ExercismProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Exercism = React.forwardRef(function Exercism({color = 'currentColor', size = 24, title = "exercism", ...others}, ref) { - const Exercism = React.forwardRef(function Exercism({color = 'currentColor', size = 24, title = "exercism", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Exercism - \ No newline at end of file +export default Exercism; diff --git a/src/components/Exordo.tsx b/src/components/Exordo.tsx index 36739232c..a160dd37b 100644 --- a/src/components/Exordo.tsx +++ b/src/components/Exordo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ExordoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ExordoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Exordo = React.forwardRef(function Exordo({color = 'currentColor', size = 24, title = "exordo", ...others}, ref) { - const Exordo = React.forwardRef(function Exordo({color = 'currentColor', size = 24, title = "exordo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Exordo - \ No newline at end of file +export default Exordo; diff --git a/src/components/Exoscale.tsx b/src/components/Exoscale.tsx index 66737a402..9f6f3e328 100644 --- a/src/components/Exoscale.tsx +++ b/src/components/Exoscale.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ExoscaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ExoscaleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Exoscale = React.forwardRef(function Exoscale({color = 'currentColor', size = 24, title = "exoscale", ...others}, ref) { - const Exoscale = React.forwardRef(function Exoscale({color = 'currentColor', size = 24, title = "exoscale", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Exoscale - \ No newline at end of file +export default Exoscale; diff --git a/src/components/Expensify.tsx b/src/components/Expensify.tsx index 501c02531..d3defdce5 100644 --- a/src/components/Expensify.tsx +++ b/src/components/Expensify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ExpensifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ExpensifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Expensify = React.forwardRef(function Expensify({color = 'currentColor', size = 24, title = "expensify", ...others}, ref) { - const Expensify = React.forwardRef(function Expensify({color = 'currentColor', size = 24, title = "expensify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Expensify - \ No newline at end of file +export default Expensify; diff --git a/src/components/Expertsexchange.tsx b/src/components/Expertsexchange.tsx index a395969da..0ead64f55 100644 --- a/src/components/Expertsexchange.tsx +++ b/src/components/Expertsexchange.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ExpertsexchangeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ExpertsexchangeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Expertsexchange = React.forwardRef(function Expertsexchange({color = 'currentColor', size = 24, title = "expertsexchange", ...others}, ref) { - const Expertsexchange = React.forwardRef(function Expertsexchange({color = 'currentColor', size = 24, title = "expertsexchange", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Expertsexchange - \ No newline at end of file +export default Expertsexchange; diff --git a/src/components/Expo.tsx b/src/components/Expo.tsx index 7584f8625..dc092ba7b 100644 --- a/src/components/Expo.tsx +++ b/src/components/Expo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ExpoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ExpoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Expo = React.forwardRef(function Expo({color = 'currentColor', size = 24, title = "expo", ...others}, ref) { - const Expo = React.forwardRef(function Expo({color = 'currentColor', size = 24, title = "expo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Expo - \ No newline at end of file +export default Expo; diff --git a/src/components/Express.tsx b/src/components/Express.tsx index 78d37a993..300e978a5 100644 --- a/src/components/Express.tsx +++ b/src/components/Express.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ExpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ExpressProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Express = React.forwardRef(function Express({color = 'currentColor', size = 24, title = "express", ...others}, ref) { - const Express = React.forwardRef(function Express({color = 'currentColor', size = 24, title = "express", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Express - \ No newline at end of file +export default Express; diff --git a/src/components/Expressvpn.tsx b/src/components/Expressvpn.tsx index 5bf81c31f..4447a6cd3 100644 --- a/src/components/Expressvpn.tsx +++ b/src/components/Expressvpn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ExpressvpnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ExpressvpnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Expressvpn = React.forwardRef(function Expressvpn({color = 'currentColor', size = 24, title = "expressvpn", ...others}, ref) { - const Expressvpn = React.forwardRef(function Expressvpn({color = 'currentColor', size = 24, title = "expressvpn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Expressvpn - \ No newline at end of file +export default Expressvpn; diff --git a/src/components/Eyeem.tsx b/src/components/Eyeem.tsx index 9da2aa676..7f55ac8af 100644 --- a/src/components/Eyeem.tsx +++ b/src/components/Eyeem.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type EyeemProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type EyeemProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Eyeem = React.forwardRef(function Eyeem({color = 'currentColor', size = 24, title = "eyeem", ...others}, ref) { - const Eyeem = React.forwardRef(function Eyeem({color = 'currentColor', size = 24, title = "eyeem", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Eyeem - \ No newline at end of file +export default Eyeem; diff --git a/src/components/F1.tsx b/src/components/F1.tsx index 2e3d2050b..2a3c3066e 100644 --- a/src/components/F1.tsx +++ b/src/components/F1.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type F1Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type F1Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const F1 = React.forwardRef(function F1({color = 'currentColor', size = 24, title = "f1", ...others}, ref) { - const F1 = React.forwardRef(function F1({color = 'currentColor', size = 24, title = "f1", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default F1 - \ No newline at end of file +export default F1; diff --git a/src/components/F5.tsx b/src/components/F5.tsx index 7b45466bb..9009133c8 100644 --- a/src/components/F5.tsx +++ b/src/components/F5.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type F5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type F5Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const F5 = React.forwardRef(function F5({color = 'currentColor', size = 24, title = "f5", ...others}, ref) { - const F5 = React.forwardRef(function F5({color = 'currentColor', size = 24, title = "f5", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default F5 - \ No newline at end of file +export default F5; diff --git a/src/components/Facebook.tsx b/src/components/Facebook.tsx index 19fe5d6ce..137a00af0 100644 --- a/src/components/Facebook.tsx +++ b/src/components/Facebook.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FacebookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FacebookProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Facebook = React.forwardRef(function Facebook({color = 'currentColor', size = 24, title = "facebook", ...others}, ref) { - const Facebook = React.forwardRef(function Facebook({color = 'currentColor', size = 24, title = "facebook", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Facebook - \ No newline at end of file +export default Facebook; diff --git a/src/components/Facebookgaming.tsx b/src/components/Facebookgaming.tsx index b5d310843..ddaa028ca 100644 --- a/src/components/Facebookgaming.tsx +++ b/src/components/Facebookgaming.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FacebookgamingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FacebookgamingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Facebookgaming = React.forwardRef(function Facebookgaming({color = 'currentColor', size = 24, title = "facebookgaming", ...others}, ref) { - const Facebookgaming = React.forwardRef(function Facebookgaming({color = 'currentColor', size = 24, title = "facebookgaming", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Facebookgaming - \ No newline at end of file +export default Facebookgaming; diff --git a/src/components/Facebooklive.tsx b/src/components/Facebooklive.tsx index 556211194..47716eeec 100644 --- a/src/components/Facebooklive.tsx +++ b/src/components/Facebooklive.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FacebookliveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FacebookliveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Facebooklive = React.forwardRef(function Facebooklive({color = 'currentColor', size = 24, title = "facebooklive", ...others}, ref) { - const Facebooklive = React.forwardRef(function Facebooklive({color = 'currentColor', size = 24, title = "facebooklive", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Facebooklive - \ No newline at end of file +export default Facebooklive; diff --git a/src/components/Faceit.tsx b/src/components/Faceit.tsx index 3d26a50a0..f73a63c5e 100644 --- a/src/components/Faceit.tsx +++ b/src/components/Faceit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FaceitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FaceitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Faceit = React.forwardRef(function Faceit({color = 'currentColor', size = 24, title = "faceit", ...others}, ref) { - const Faceit = React.forwardRef(function Faceit({color = 'currentColor', size = 24, title = "faceit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Faceit - \ No newline at end of file +export default Faceit; diff --git a/src/components/Facepunch.tsx b/src/components/Facepunch.tsx index 548d7692b..ab08cec5d 100644 --- a/src/components/Facepunch.tsx +++ b/src/components/Facepunch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FacepunchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FacepunchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Facepunch = React.forwardRef(function Facepunch({color = 'currentColor', size = 24, title = "facepunch", ...others}, ref) { - const Facepunch = React.forwardRef(function Facepunch({color = 'currentColor', size = 24, title = "facepunch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Facepunch - \ No newline at end of file +export default Facepunch; diff --git a/src/components/Falcon.tsx b/src/components/Falcon.tsx index b6e024b8f..914ef6280 100644 --- a/src/components/Falcon.tsx +++ b/src/components/Falcon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FalconProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FalconProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Falcon = React.forwardRef(function Falcon({color = 'currentColor', size = 24, title = "falcon", ...others}, ref) { - const Falcon = React.forwardRef(function Falcon({color = 'currentColor', size = 24, title = "falcon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Falcon - \ No newline at end of file +export default Falcon; diff --git a/src/components/Fampay.tsx b/src/components/Fampay.tsx index 18b387828..5435b3953 100644 --- a/src/components/Fampay.tsx +++ b/src/components/Fampay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FampayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FampayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fampay = React.forwardRef(function Fampay({color = 'currentColor', size = 24, title = "fampay", ...others}, ref) { - const Fampay = React.forwardRef(function Fampay({color = 'currentColor', size = 24, title = "fampay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fampay - \ No newline at end of file +export default Fampay; diff --git a/src/components/Fandango.tsx b/src/components/Fandango.tsx index e0f12b23d..f0ca4d6a6 100644 --- a/src/components/Fandango.tsx +++ b/src/components/Fandango.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FandangoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FandangoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fandango = React.forwardRef(function Fandango({color = 'currentColor', size = 24, title = "fandango", ...others}, ref) { - const Fandango = React.forwardRef(function Fandango({color = 'currentColor', size = 24, title = "fandango", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fandango - \ No newline at end of file +export default Fandango; diff --git a/src/components/Fandom.tsx b/src/components/Fandom.tsx index b261e51f7..5f497c942 100644 --- a/src/components/Fandom.tsx +++ b/src/components/Fandom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FandomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FandomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fandom = React.forwardRef(function Fandom({color = 'currentColor', size = 24, title = "fandom", ...others}, ref) { - const Fandom = React.forwardRef(function Fandom({color = 'currentColor', size = 24, title = "fandom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fandom - \ No newline at end of file +export default Fandom; diff --git a/src/components/Fanfou.tsx b/src/components/Fanfou.tsx new file mode 100644 index 000000000..18fa47362 --- /dev/null +++ b/src/components/Fanfou.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type FanfouProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Fanfou = React.forwardRef(function Fanfou({color = 'currentColor', size = 24, title = "fanfou", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Fanfou; diff --git a/src/components/Fantom.tsx b/src/components/Fantom.tsx new file mode 100644 index 000000000..60e27ad72 --- /dev/null +++ b/src/components/Fantom.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type FantomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Fantom = React.forwardRef(function Fantom({color = 'currentColor', size = 24, title = "fantom", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Fantom; diff --git a/src/components/Farfetch.tsx b/src/components/Farfetch.tsx index 917e272d3..668b68bf1 100644 --- a/src/components/Farfetch.tsx +++ b/src/components/Farfetch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FarfetchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FarfetchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Farfetch = React.forwardRef(function Farfetch({color = 'currentColor', size = 24, title = "farfetch", ...others}, ref) { - const Farfetch = React.forwardRef(function Farfetch({color = 'currentColor', size = 24, title = "farfetch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Farfetch - \ No newline at end of file +export default Farfetch; diff --git a/src/components/Fastapi.tsx b/src/components/Fastapi.tsx index c160e5ee9..e173c6c5c 100644 --- a/src/components/Fastapi.tsx +++ b/src/components/Fastapi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FastapiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FastapiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fastapi = React.forwardRef(function Fastapi({color = 'currentColor', size = 24, title = "fastapi", ...others}, ref) { - const Fastapi = React.forwardRef(function Fastapi({color = 'currentColor', size = 24, title = "fastapi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fastapi - \ No newline at end of file +export default Fastapi; diff --git a/src/components/Fastify.tsx b/src/components/Fastify.tsx index f55bb6fd8..b2b4558be 100644 --- a/src/components/Fastify.tsx +++ b/src/components/Fastify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FastifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FastifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fastify = React.forwardRef(function Fastify({color = 'currentColor', size = 24, title = "fastify", ...others}, ref) { - const Fastify = React.forwardRef(function Fastify({color = 'currentColor', size = 24, title = "fastify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fastify - \ No newline at end of file +export default Fastify; diff --git a/src/components/Fastlane.tsx b/src/components/Fastlane.tsx index 01b038be0..0bad87a9e 100644 --- a/src/components/Fastlane.tsx +++ b/src/components/Fastlane.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FastlaneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FastlaneProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fastlane = React.forwardRef(function Fastlane({color = 'currentColor', size = 24, title = "fastlane", ...others}, ref) { - const Fastlane = React.forwardRef(function Fastlane({color = 'currentColor', size = 24, title = "fastlane", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fastlane - \ No newline at end of file +export default Fastlane; diff --git a/src/components/Fastly.tsx b/src/components/Fastly.tsx index 2fba8a215..e3eb6406c 100644 --- a/src/components/Fastly.tsx +++ b/src/components/Fastly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FastlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FastlyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fastly = React.forwardRef(function Fastly({color = 'currentColor', size = 24, title = "fastly", ...others}, ref) { - const Fastly = React.forwardRef(function Fastly({color = 'currentColor', size = 24, title = "fastly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fastly - \ No newline at end of file +export default Fastly; diff --git a/src/components/Fathom.tsx b/src/components/Fathom.tsx index c8ad8e9ab..f98a3fdde 100644 --- a/src/components/Fathom.tsx +++ b/src/components/Fathom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FathomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FathomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fathom = React.forwardRef(function Fathom({color = 'currentColor', size = 24, title = "fathom", ...others}, ref) { - const Fathom = React.forwardRef(function Fathom({color = 'currentColor', size = 24, title = "fathom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fathom - \ No newline at end of file +export default Fathom; diff --git a/src/components/Fauna.tsx b/src/components/Fauna.tsx index 95394245a..805e5102f 100644 --- a/src/components/Fauna.tsx +++ b/src/components/Fauna.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FaunaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FaunaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fauna = React.forwardRef(function Fauna({color = 'currentColor', size = 24, title = "fauna", ...others}, ref) { - const Fauna = React.forwardRef(function Fauna({color = 'currentColor', size = 24, title = "fauna", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fauna - \ No newline at end of file +export default Fauna; diff --git a/src/components/Favro.tsx b/src/components/Favro.tsx index cfc829af5..f15827f3e 100644 --- a/src/components/Favro.tsx +++ b/src/components/Favro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FavroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FavroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Favro = React.forwardRef(function Favro({color = 'currentColor', size = 24, title = "favro", ...others}, ref) { - const Favro = React.forwardRef(function Favro({color = 'currentColor', size = 24, title = "favro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Favro - \ No newline at end of file +export default Favro; diff --git a/src/components/Fdroid.tsx b/src/components/Fdroid.tsx index f75d944aa..fb9822c64 100644 --- a/src/components/Fdroid.tsx +++ b/src/components/Fdroid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FdroidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FdroidProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fdroid = React.forwardRef(function Fdroid({color = 'currentColor', size = 24, title = "fdroid", ...others}, ref) { - const Fdroid = React.forwardRef(function Fdroid({color = 'currentColor', size = 24, title = "fdroid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fdroid - \ No newline at end of file +export default Fdroid; diff --git a/src/components/Feathub.tsx b/src/components/Feathub.tsx index a9cbe07e3..298b04ff4 100644 --- a/src/components/Feathub.tsx +++ b/src/components/Feathub.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FeathubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FeathubProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Feathub = React.forwardRef(function Feathub({color = 'currentColor', size = 24, title = "feathub", ...others}, ref) { - const Feathub = React.forwardRef(function Feathub({color = 'currentColor', size = 24, title = "feathub", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Feathub - \ No newline at end of file +export default Feathub; diff --git a/src/components/Fedex.tsx b/src/components/Fedex.tsx index 2b7287d73..ee78b1cd3 100644 --- a/src/components/Fedex.tsx +++ b/src/components/Fedex.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FedexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FedexProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fedex = React.forwardRef(function Fedex({color = 'currentColor', size = 24, title = "fedex", ...others}, ref) { - const Fedex = React.forwardRef(function Fedex({color = 'currentColor', size = 24, title = "fedex", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fedex - \ No newline at end of file +export default Fedex; diff --git a/src/components/Fedora.tsx b/src/components/Fedora.tsx index 0c4b3c135..e9c49c2df 100644 --- a/src/components/Fedora.tsx +++ b/src/components/Fedora.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FedoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FedoraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fedora = React.forwardRef(function Fedora({color = 'currentColor', size = 24, title = "fedora", ...others}, ref) { - const Fedora = React.forwardRef(function Fedora({color = 'currentColor', size = 24, title = "fedora", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fedora - \ No newline at end of file +export default Fedora; diff --git a/src/components/Feedly.tsx b/src/components/Feedly.tsx index df63e87a3..d02ab9e8d 100644 --- a/src/components/Feedly.tsx +++ b/src/components/Feedly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FeedlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FeedlyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Feedly = React.forwardRef(function Feedly({color = 'currentColor', size = 24, title = "feedly", ...others}, ref) { - const Feedly = React.forwardRef(function Feedly({color = 'currentColor', size = 24, title = "feedly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Feedly - \ No newline at end of file +export default Feedly; diff --git a/src/components/Ferrari.tsx b/src/components/Ferrari.tsx index 47f7b7bfa..86c709f1a 100644 --- a/src/components/Ferrari.tsx +++ b/src/components/Ferrari.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FerrariProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FerrariProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ferrari = React.forwardRef(function Ferrari({color = 'currentColor', size = 24, title = "ferrari", ...others}, ref) { - const Ferrari = React.forwardRef(function Ferrari({color = 'currentColor', size = 24, title = "ferrari", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ferrari - \ No newline at end of file +export default Ferrari; diff --git a/src/components/Ferrarinv.tsx b/src/components/Ferrarinv.tsx index 18c103ea7..4ab6444fb 100644 --- a/src/components/Ferrarinv.tsx +++ b/src/components/Ferrarinv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FerrarinvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FerrarinvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ferrarinv = React.forwardRef(function Ferrarinv({color = 'currentColor', size = 24, title = "ferrarinv", ...others}, ref) { - const Ferrarinv = React.forwardRef(function Ferrarinv({color = 'currentColor', size = 24, title = "ferrarinv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ferrarinv - \ No newline at end of file +export default Ferrarinv; diff --git a/src/components/Ffmpeg.tsx b/src/components/Ffmpeg.tsx index 13e1028ae..cff73856d 100644 --- a/src/components/Ffmpeg.tsx +++ b/src/components/Ffmpeg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FfmpegProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FfmpegProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ffmpeg = React.forwardRef(function Ffmpeg({color = 'currentColor', size = 24, title = "ffmpeg", ...others}, ref) { - const Ffmpeg = React.forwardRef(function Ffmpeg({color = 'currentColor', size = 24, title = "ffmpeg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ffmpeg - \ No newline at end of file +export default Ffmpeg; diff --git a/src/components/Fiat.tsx b/src/components/Fiat.tsx index 3515acbf3..347f1229f 100644 --- a/src/components/Fiat.tsx +++ b/src/components/Fiat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FiatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FiatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fiat = React.forwardRef(function Fiat({color = 'currentColor', size = 24, title = "fiat", ...others}, ref) { - const Fiat = React.forwardRef(function Fiat({color = 'currentColor', size = 24, title = "fiat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fiat - \ No newline at end of file +export default Fiat; diff --git a/src/components/Fidoalliance.tsx b/src/components/Fidoalliance.tsx index dbbca268b..0c755ccee 100644 --- a/src/components/Fidoalliance.tsx +++ b/src/components/Fidoalliance.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FidoallianceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FidoallianceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fidoalliance = React.forwardRef(function Fidoalliance({color = 'currentColor', size = 24, title = "fidoalliance", ...others}, ref) { - const Fidoalliance = React.forwardRef(function Fidoalliance({color = 'currentColor', size = 24, title = "fidoalliance", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fidoalliance - \ No newline at end of file +export default Fidoalliance; diff --git a/src/components/Fifa.tsx b/src/components/Fifa.tsx index 77633c4c3..df5823b0a 100644 --- a/src/components/Fifa.tsx +++ b/src/components/Fifa.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FifaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FifaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fifa = React.forwardRef(function Fifa({color = 'currentColor', size = 24, title = "fifa", ...others}, ref) { - const Fifa = React.forwardRef(function Fifa({color = 'currentColor', size = 24, title = "fifa", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fifa - \ No newline at end of file +export default Fifa; diff --git a/src/components/Figma.tsx b/src/components/Figma.tsx index 05b883289..65b145e43 100644 --- a/src/components/Figma.tsx +++ b/src/components/Figma.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FigmaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FigmaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Figma = React.forwardRef(function Figma({color = 'currentColor', size = 24, title = "figma", ...others}, ref) { - const Figma = React.forwardRef(function Figma({color = 'currentColor', size = 24, title = "figma", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Figma - \ No newline at end of file +export default Figma; diff --git a/src/components/Figshare.tsx b/src/components/Figshare.tsx index a54c6439e..67fe69682 100644 --- a/src/components/Figshare.tsx +++ b/src/components/Figshare.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FigshareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FigshareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Figshare = React.forwardRef(function Figshare({color = 'currentColor', size = 24, title = "figshare", ...others}, ref) { - const Figshare = React.forwardRef(function Figshare({color = 'currentColor', size = 24, title = "figshare", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Figshare - \ No newline at end of file +export default Figshare; diff --git a/src/components/Fila.tsx b/src/components/Fila.tsx index d7d0a7e5c..6e410d12f 100644 --- a/src/components/Fila.tsx +++ b/src/components/Fila.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FilaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FilaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fila = React.forwardRef(function Fila({color = 'currentColor', size = 24, title = "fila", ...others}, ref) { - const Fila = React.forwardRef(function Fila({color = 'currentColor', size = 24, title = "fila", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fila - \ No newline at end of file +export default Fila; diff --git a/src/components/Files.tsx b/src/components/Files.tsx index 77a4f1e3a..9da9adf23 100644 --- a/src/components/Files.tsx +++ b/src/components/Files.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FilesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FilesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Files = React.forwardRef(function Files({color = 'currentColor', size = 24, title = "files", ...others}, ref) { - const Files = React.forwardRef(function Files({color = 'currentColor', size = 24, title = "files", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Files - \ No newline at end of file +export default Files; diff --git a/src/components/Filezilla.tsx b/src/components/Filezilla.tsx index 7bd8b42b6..1ba7d41b6 100644 --- a/src/components/Filezilla.tsx +++ b/src/components/Filezilla.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FilezillaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FilezillaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Filezilla = React.forwardRef(function Filezilla({color = 'currentColor', size = 24, title = "filezilla", ...others}, ref) { - const Filezilla = React.forwardRef(function Filezilla({color = 'currentColor', size = 24, title = "filezilla", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Filezilla - \ No newline at end of file +export default Filezilla; diff --git a/src/components/Fing.tsx b/src/components/Fing.tsx index f743a329a..834eec0ba 100644 --- a/src/components/Fing.tsx +++ b/src/components/Fing.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fing = React.forwardRef(function Fing({color = 'currentColor', size = 24, title = "fing", ...others}, ref) { - const Fing = React.forwardRef(function Fing({color = 'currentColor', size = 24, title = "fing", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fing - \ No newline at end of file +export default Fing; diff --git a/src/components/Firebase.tsx b/src/components/Firebase.tsx index 04a06ba35..ffe2a4a6c 100644 --- a/src/components/Firebase.tsx +++ b/src/components/Firebase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FirebaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FirebaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Firebase = React.forwardRef(function Firebase({color = 'currentColor', size = 24, title = "firebase", ...others}, ref) { - const Firebase = React.forwardRef(function Firebase({color = 'currentColor', size = 24, title = "firebase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Firebase - \ No newline at end of file +export default Firebase; diff --git a/src/components/Firefox.tsx b/src/components/Firefox.tsx index e15c1f485..556956717 100644 --- a/src/components/Firefox.tsx +++ b/src/components/Firefox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FirefoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FirefoxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Firefox = React.forwardRef(function Firefox({color = 'currentColor', size = 24, title = "firefox", ...others}, ref) { - const Firefox = React.forwardRef(function Firefox({color = 'currentColor', size = 24, title = "firefox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Firefox - \ No newline at end of file +export default Firefox; diff --git a/src/components/Firefoxbrowser.tsx b/src/components/Firefoxbrowser.tsx index f4588650b..3cd39f7e3 100644 --- a/src/components/Firefoxbrowser.tsx +++ b/src/components/Firefoxbrowser.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FirefoxbrowserProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FirefoxbrowserProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Firefoxbrowser = React.forwardRef(function Firefoxbrowser({color = 'currentColor', size = 24, title = "firefoxbrowser", ...others}, ref) { - const Firefoxbrowser = React.forwardRef(function Firefoxbrowser({color = 'currentColor', size = 24, title = "firefoxbrowser", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Firefoxbrowser - \ No newline at end of file +export default Firefoxbrowser; diff --git a/src/components/First.tsx b/src/components/First.tsx index dcbc7858d..bcda1bb7d 100644 --- a/src/components/First.tsx +++ b/src/components/First.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FirstProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FirstProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const First = React.forwardRef(function First({color = 'currentColor', size = 24, title = "first", ...others}, ref) { - const First = React.forwardRef(function First({color = 'currentColor', size = 24, title = "first", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default First - \ No newline at end of file +export default First; diff --git a/src/components/Fitbit.tsx b/src/components/Fitbit.tsx index e81fbd0f7..720c0a7d7 100644 --- a/src/components/Fitbit.tsx +++ b/src/components/Fitbit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FitbitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FitbitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fitbit = React.forwardRef(function Fitbit({color = 'currentColor', size = 24, title = "fitbit", ...others}, ref) { - const Fitbit = React.forwardRef(function Fitbit({color = 'currentColor', size = 24, title = "fitbit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fitbit - \ No newline at end of file +export default Fitbit; diff --git a/src/components/Fite.tsx b/src/components/Fite.tsx index 7a77e402f..96c5e3b82 100644 --- a/src/components/Fite.tsx +++ b/src/components/Fite.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FiteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FiteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fite = React.forwardRef(function Fite({color = 'currentColor', size = 24, title = "fite", ...others}, ref) { - const Fite = React.forwardRef(function Fite({color = 'currentColor', size = 24, title = "fite", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fite - \ No newline at end of file +export default Fite; diff --git a/src/components/FiveHundredPx.tsx b/src/components/FiveHundredPx.tsx index d52477f3c..584bb76af 100644 --- a/src/components/FiveHundredPx.tsx +++ b/src/components/FiveHundredPx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FiveHundredPxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FiveHundredPxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const FiveHundredPx = React.forwardRef(function FiveHundredPx({color = 'currentColor', size = 24, title = "500px", ...others}, ref) { - const FiveHundredPx = React.forwardRef(function FiveHundredPx({color = 'currentColor', size = 24, title = "500px", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default FiveHundredPx - \ No newline at end of file +export default FiveHundredPx; diff --git a/src/components/Fivem.tsx b/src/components/Fivem.tsx index 6a26d2e96..f9cb30f42 100644 --- a/src/components/Fivem.tsx +++ b/src/components/Fivem.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FivemProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FivemProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fivem = React.forwardRef(function Fivem({color = 'currentColor', size = 24, title = "fivem", ...others}, ref) { - const Fivem = React.forwardRef(function Fivem({color = 'currentColor', size = 24, title = "fivem", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fivem - \ No newline at end of file +export default Fivem; diff --git a/src/components/Fiverr.tsx b/src/components/Fiverr.tsx index c1b9eb972..74ee23ccd 100644 --- a/src/components/Fiverr.tsx +++ b/src/components/Fiverr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FiverrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FiverrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fiverr = React.forwardRef(function Fiverr({color = 'currentColor', size = 24, title = "fiverr", ...others}, ref) { - const Fiverr = React.forwardRef(function Fiverr({color = 'currentColor', size = 24, title = "fiverr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fiverr - \ No newline at end of file +export default Fiverr; diff --git a/src/components/Flask.tsx b/src/components/Flask.tsx index 863341e18..4e277fb2e 100644 --- a/src/components/Flask.tsx +++ b/src/components/Flask.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FlaskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FlaskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flask = React.forwardRef(function Flask({color = 'currentColor', size = 24, title = "flask", ...others}, ref) { - const Flask = React.forwardRef(function Flask({color = 'currentColor', size = 24, title = "flask", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flask - \ No newline at end of file +export default Flask; diff --git a/src/components/Flat.tsx b/src/components/Flat.tsx index e9c9ca4b9..b28ec401e 100644 --- a/src/components/Flat.tsx +++ b/src/components/Flat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FlatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FlatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flat = React.forwardRef(function Flat({color = 'currentColor', size = 24, title = "flat", ...others}, ref) { - const Flat = React.forwardRef(function Flat({color = 'currentColor', size = 24, title = "flat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flat - \ No newline at end of file +export default Flat; diff --git a/src/components/Flathub.tsx b/src/components/Flathub.tsx index 6737042d8..539981709 100644 --- a/src/components/Flathub.tsx +++ b/src/components/Flathub.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FlathubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FlathubProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flathub = React.forwardRef(function Flathub({color = 'currentColor', size = 24, title = "flathub", ...others}, ref) { - const Flathub = React.forwardRef(function Flathub({color = 'currentColor', size = 24, title = "flathub", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flathub - \ No newline at end of file +export default Flathub; diff --git a/src/components/Flatpak.tsx b/src/components/Flatpak.tsx index 6fcfa5ab2..f8da37cb3 100644 --- a/src/components/Flatpak.tsx +++ b/src/components/Flatpak.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FlatpakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FlatpakProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flatpak = React.forwardRef(function Flatpak({color = 'currentColor', size = 24, title = "flatpak", ...others}, ref) { - const Flatpak = React.forwardRef(function Flatpak({color = 'currentColor', size = 24, title = "flatpak", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flatpak - \ No newline at end of file +export default Flatpak; diff --git a/src/components/Flattr.tsx b/src/components/Flattr.tsx index e11f70336..5136bb546 100644 --- a/src/components/Flattr.tsx +++ b/src/components/Flattr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FlattrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FlattrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flattr = React.forwardRef(function Flattr({color = 'currentColor', size = 24, title = "flattr", ...others}, ref) { - const Flattr = React.forwardRef(function Flattr({color = 'currentColor', size = 24, title = "flattr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flattr - \ No newline at end of file +export default Flattr; diff --git a/src/components/Flickr.tsx b/src/components/Flickr.tsx index e25bdb94f..c755625d1 100644 --- a/src/components/Flickr.tsx +++ b/src/components/Flickr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FlickrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FlickrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flickr = React.forwardRef(function Flickr({color = 'currentColor', size = 24, title = "flickr", ...others}, ref) { - const Flickr = React.forwardRef(function Flickr({color = 'currentColor', size = 24, title = "flickr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flickr - \ No newline at end of file +export default Flickr; diff --git a/src/components/Flipboard.tsx b/src/components/Flipboard.tsx index c58b31319..a828fb3e2 100644 --- a/src/components/Flipboard.tsx +++ b/src/components/Flipboard.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FlipboardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FlipboardProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flipboard = React.forwardRef(function Flipboard({color = 'currentColor', size = 24, title = "flipboard", ...others}, ref) { - const Flipboard = React.forwardRef(function Flipboard({color = 'currentColor', size = 24, title = "flipboard", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flipboard - \ No newline at end of file +export default Flipboard; diff --git a/src/components/Flipkart.tsx b/src/components/Flipkart.tsx index b27a3b629..eaa6bef33 100644 --- a/src/components/Flipkart.tsx +++ b/src/components/Flipkart.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FlipkartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FlipkartProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flipkart = React.forwardRef(function Flipkart({color = 'currentColor', size = 24, title = "flipkart", ...others}, ref) { - const Flipkart = React.forwardRef(function Flipkart({color = 'currentColor', size = 24, title = "flipkart", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flipkart - \ No newline at end of file +export default Flipkart; diff --git a/src/components/Floatplane.tsx b/src/components/Floatplane.tsx index 2b5a48650..efe06a2f3 100644 --- a/src/components/Floatplane.tsx +++ b/src/components/Floatplane.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FloatplaneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FloatplaneProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Floatplane = React.forwardRef(function Floatplane({color = 'currentColor', size = 24, title = "floatplane", ...others}, ref) { - const Floatplane = React.forwardRef(function Floatplane({color = 'currentColor', size = 24, title = "floatplane", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Floatplane - \ No newline at end of file +export default Floatplane; diff --git a/src/components/Flood.tsx b/src/components/Flood.tsx index 36a339531..a0bdfd2fd 100644 --- a/src/components/Flood.tsx +++ b/src/components/Flood.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FloodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FloodProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flood = React.forwardRef(function Flood({color = 'currentColor', size = 24, title = "flood", ...others}, ref) { - const Flood = React.forwardRef(function Flood({color = 'currentColor', size = 24, title = "flood", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flood - \ No newline at end of file +export default Flood; diff --git a/src/components/Fluentbit.tsx b/src/components/Fluentbit.tsx index ba35b8c49..7768b9505 100644 --- a/src/components/Fluentbit.tsx +++ b/src/components/Fluentbit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FluentbitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FluentbitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fluentbit = React.forwardRef(function Fluentbit({color = 'currentColor', size = 24, title = "fluentbit", ...others}, ref) { - const Fluentbit = React.forwardRef(function Fluentbit({color = 'currentColor', size = 24, title = "fluentbit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fluentbit - \ No newline at end of file +export default Fluentbit; diff --git a/src/components/Fluentd.tsx b/src/components/Fluentd.tsx index 23cb5967b..d513ca5a7 100644 --- a/src/components/Fluentd.tsx +++ b/src/components/Fluentd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FluentdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FluentdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fluentd = React.forwardRef(function Fluentd({color = 'currentColor', size = 24, title = "fluentd", ...others}, ref) { - const Fluentd = React.forwardRef(function Fluentd({color = 'currentColor', size = 24, title = "fluentd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fluentd - \ No newline at end of file +export default Fluentd; diff --git a/src/components/Flutter.tsx b/src/components/Flutter.tsx index 26cf06fb1..609096503 100644 --- a/src/components/Flutter.tsx +++ b/src/components/Flutter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FlutterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FlutterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flutter = React.forwardRef(function Flutter({color = 'currentColor', size = 24, title = "flutter", ...others}, ref) { - const Flutter = React.forwardRef(function Flutter({color = 'currentColor', size = 24, title = "flutter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flutter - \ No newline at end of file +export default Flutter; diff --git a/src/components/Flyway.tsx b/src/components/Flyway.tsx index 6b9a51532..c5a8c9f4a 100644 --- a/src/components/Flyway.tsx +++ b/src/components/Flyway.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FlywayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FlywayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Flyway = React.forwardRef(function Flyway({color = 'currentColor', size = 24, title = "flyway", ...others}, ref) { - const Flyway = React.forwardRef(function Flyway({color = 'currentColor', size = 24, title = "flyway", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Flyway - \ No newline at end of file +export default Flyway; diff --git a/src/components/Fmod.tsx b/src/components/Fmod.tsx index 2953ab556..80db78f4c 100644 --- a/src/components/Fmod.tsx +++ b/src/components/Fmod.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FmodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FmodProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fmod = React.forwardRef(function Fmod({color = 'currentColor', size = 24, title = "fmod", ...others}, ref) { - const Fmod = React.forwardRef(function Fmod({color = 'currentColor', size = 24, title = "fmod", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fmod - \ No newline at end of file +export default Fmod; diff --git a/src/components/Fnac.tsx b/src/components/Fnac.tsx index 88c77cc85..6440bc5ab 100644 --- a/src/components/Fnac.tsx +++ b/src/components/Fnac.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FnacProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FnacProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fnac = React.forwardRef(function Fnac({color = 'currentColor', size = 24, title = "fnac", ...others}, ref) { - const Fnac = React.forwardRef(function Fnac({color = 'currentColor', size = 24, title = "fnac", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fnac - \ No newline at end of file +export default Fnac; diff --git a/src/components/Folium.tsx b/src/components/Folium.tsx index 06007ca8c..55931df9e 100644 --- a/src/components/Folium.tsx +++ b/src/components/Folium.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FoliumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FoliumProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Folium = React.forwardRef(function Folium({color = 'currentColor', size = 24, title = "folium", ...others}, ref) { - const Folium = React.forwardRef(function Folium({color = 'currentColor', size = 24, title = "folium", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Folium - \ No newline at end of file +export default Folium; diff --git a/src/components/Fonoma.tsx b/src/components/Fonoma.tsx index 991a54e16..d91a88ea6 100644 --- a/src/components/Fonoma.tsx +++ b/src/components/Fonoma.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FonomaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FonomaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fonoma = React.forwardRef(function Fonoma({color = 'currentColor', size = 24, title = "fonoma", ...others}, ref) { - const Fonoma = React.forwardRef(function Fonoma({color = 'currentColor', size = 24, title = "fonoma", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fonoma - \ No newline at end of file +export default Fonoma; diff --git a/src/components/Fontawesome.tsx b/src/components/Fontawesome.tsx index 5eb16d4e5..98ce35a79 100644 --- a/src/components/Fontawesome.tsx +++ b/src/components/Fontawesome.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FontawesomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FontawesomeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fontawesome = React.forwardRef(function Fontawesome({color = 'currentColor', size = 24, title = "fontawesome", ...others}, ref) { - const Fontawesome = React.forwardRef(function Fontawesome({color = 'currentColor', size = 24, title = "fontawesome", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fontawesome - \ No newline at end of file +export default Fontawesome; diff --git a/src/components/Fontbase.tsx b/src/components/Fontbase.tsx index 03ba23cd9..5aa383be0 100644 --- a/src/components/Fontbase.tsx +++ b/src/components/Fontbase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FontbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FontbaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fontbase = React.forwardRef(function Fontbase({color = 'currentColor', size = 24, title = "fontbase", ...others}, ref) { - const Fontbase = React.forwardRef(function Fontbase({color = 'currentColor', size = 24, title = "fontbase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fontbase - \ No newline at end of file +export default Fontbase; diff --git a/src/components/Foodpanda.tsx b/src/components/Foodpanda.tsx index a23df1d5f..c63dd9c51 100644 --- a/src/components/Foodpanda.tsx +++ b/src/components/Foodpanda.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FoodpandaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FoodpandaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Foodpanda = React.forwardRef(function Foodpanda({color = 'currentColor', size = 24, title = "foodpanda", ...others}, ref) { - const Foodpanda = React.forwardRef(function Foodpanda({color = 'currentColor', size = 24, title = "foodpanda", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Foodpanda - \ No newline at end of file +export default Foodpanda; diff --git a/src/components/Ford.tsx b/src/components/Ford.tsx index f3701d621..04677d975 100644 --- a/src/components/Ford.tsx +++ b/src/components/Ford.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FordProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ford = React.forwardRef(function Ford({color = 'currentColor', size = 24, title = "ford", ...others}, ref) { - const Ford = React.forwardRef(function Ford({color = 'currentColor', size = 24, title = "ford", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ford - \ No newline at end of file +export default Ford; diff --git a/src/components/Forestry.tsx b/src/components/Forestry.tsx index ad791489b..a8b9123a7 100644 --- a/src/components/Forestry.tsx +++ b/src/components/Forestry.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ForestryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ForestryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Forestry = React.forwardRef(function Forestry({color = 'currentColor', size = 24, title = "forestry", ...others}, ref) { - const Forestry = React.forwardRef(function Forestry({color = 'currentColor', size = 24, title = "forestry", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Forestry - \ No newline at end of file +export default Forestry; diff --git a/src/components/Formstack.tsx b/src/components/Formstack.tsx index fcb0de8d0..5234a80b5 100644 --- a/src/components/Formstack.tsx +++ b/src/components/Formstack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FormstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FormstackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Formstack = React.forwardRef(function Formstack({color = 'currentColor', size = 24, title = "formstack", ...others}, ref) { - const Formstack = React.forwardRef(function Formstack({color = 'currentColor', size = 24, title = "formstack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Formstack - \ No newline at end of file +export default Formstack; diff --git a/src/components/Fortinet.tsx b/src/components/Fortinet.tsx index 93e6aba88..abb4458a9 100644 --- a/src/components/Fortinet.tsx +++ b/src/components/Fortinet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FortinetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FortinetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fortinet = React.forwardRef(function Fortinet({color = 'currentColor', size = 24, title = "fortinet", ...others}, ref) { - const Fortinet = React.forwardRef(function Fortinet({color = 'currentColor', size = 24, title = "fortinet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fortinet - \ No newline at end of file +export default Fortinet; diff --git a/src/components/Fortran.tsx b/src/components/Fortran.tsx index 0d28d3999..bae5750fd 100644 --- a/src/components/Fortran.tsx +++ b/src/components/Fortran.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FortranProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FortranProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fortran = React.forwardRef(function Fortran({color = 'currentColor', size = 24, title = "fortran", ...others}, ref) { - const Fortran = React.forwardRef(function Fortran({color = 'currentColor', size = 24, title = "fortran", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fortran - \ No newline at end of file +export default Fortran; diff --git a/src/components/FortyTwo.tsx b/src/components/FortyTwo.tsx index 62d9934b9..fe642ae14 100644 --- a/src/components/FortyTwo.tsx +++ b/src/components/FortyTwo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FortyTwoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FortyTwoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const FortyTwo = React.forwardRef(function FortyTwo({color = 'currentColor', size = 24, title = "42", ...others}, ref) { - const FortyTwo = React.forwardRef(function FortyTwo({color = 'currentColor', size = 24, title = "42", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default FortyTwo - \ No newline at end of file +export default FortyTwo; diff --git a/src/components/Fossa.tsx b/src/components/Fossa.tsx index 68e619a26..3dc7b4ac9 100644 --- a/src/components/Fossa.tsx +++ b/src/components/Fossa.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FossaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FossaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fossa = React.forwardRef(function Fossa({color = 'currentColor', size = 24, title = "fossa", ...others}, ref) { - const Fossa = React.forwardRef(function Fossa({color = 'currentColor', size = 24, title = "fossa", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fossa - \ No newline at end of file +export default Fossa; diff --git a/src/components/Fossilscm.tsx b/src/components/Fossilscm.tsx index eee97812b..e18674f8d 100644 --- a/src/components/Fossilscm.tsx +++ b/src/components/Fossilscm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FossilscmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FossilscmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fossilscm = React.forwardRef(function Fossilscm({color = 'currentColor', size = 24, title = "fossilscm", ...others}, ref) { - const Fossilscm = React.forwardRef(function Fossilscm({color = 'currentColor', size = 24, title = "fossilscm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fossilscm - \ No newline at end of file +export default Fossilscm; diff --git a/src/components/FourChan.tsx b/src/components/FourChan.tsx index 4f3db78d5..c68c60d90 100644 --- a/src/components/FourChan.tsx +++ b/src/components/FourChan.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FourChanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FourChanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const FourChan = React.forwardRef(function FourChan({color = 'currentColor', size = 24, title = "4chan", ...others}, ref) { - const FourChan = React.forwardRef(function FourChan({color = 'currentColor', size = 24, title = "4chan", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default FourChan - \ No newline at end of file +export default FourChan; diff --git a/src/components/FourD.tsx b/src/components/FourD.tsx index 826ea370b..4855359d2 100644 --- a/src/components/FourD.tsx +++ b/src/components/FourD.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FourDProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FourDProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const FourD = React.forwardRef(function FourD({color = 'currentColor', size = 24, title = "4d", ...others}, ref) { - const FourD = React.forwardRef(function FourD({color = 'currentColor', size = 24, title = "4d", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default FourD - \ No newline at end of file +export default FourD; diff --git a/src/components/Foursquare.tsx b/src/components/Foursquare.tsx index 668571dd7..c227df037 100644 --- a/src/components/Foursquare.tsx +++ b/src/components/Foursquare.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FoursquareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FoursquareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Foursquare = React.forwardRef(function Foursquare({color = 'currentColor', size = 24, title = "foursquare", ...others}, ref) { - const Foursquare = React.forwardRef(function Foursquare({color = 'currentColor', size = 24, title = "foursquare", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Foursquare - \ No newline at end of file +export default Foursquare; diff --git a/src/components/Foursquarecityguide.tsx b/src/components/Foursquarecityguide.tsx index 647b2d8a3..129b36a23 100644 --- a/src/components/Foursquarecityguide.tsx +++ b/src/components/Foursquarecityguide.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FoursquarecityguideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FoursquarecityguideProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Foursquarecityguide = React.forwardRef(function Foursquarecityguide({color = 'currentColor', size = 24, title = "foursquarecityguide", ...others}, ref) { - const Foursquarecityguide = React.forwardRef(function Foursquarecityguide({color = 'currentColor', size = 24, title = "foursquarecityguide", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Foursquarecityguide - \ No newline at end of file +export default Foursquarecityguide; diff --git a/src/components/Foxtel.tsx b/src/components/Foxtel.tsx index a3228acd8..d4e6facc5 100644 --- a/src/components/Foxtel.tsx +++ b/src/components/Foxtel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FoxtelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FoxtelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Foxtel = React.forwardRef(function Foxtel({color = 'currentColor', size = 24, title = "foxtel", ...others}, ref) { - const Foxtel = React.forwardRef(function Foxtel({color = 'currentColor', size = 24, title = "foxtel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Foxtel - \ No newline at end of file +export default Foxtel; diff --git a/src/components/Fozzy.tsx b/src/components/Fozzy.tsx index bfcfb2b33..7b8e3fa27 100644 --- a/src/components/Fozzy.tsx +++ b/src/components/Fozzy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FozzyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FozzyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fozzy = React.forwardRef(function Fozzy({color = 'currentColor', size = 24, title = "fozzy", ...others}, ref) { - const Fozzy = React.forwardRef(function Fozzy({color = 'currentColor', size = 24, title = "fozzy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fozzy - \ No newline at end of file +export default Fozzy; diff --git a/src/components/Framer.tsx b/src/components/Framer.tsx index 9860e2c8f..80d4ddfa0 100644 --- a/src/components/Framer.tsx +++ b/src/components/Framer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FramerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FramerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Framer = React.forwardRef(function Framer({color = 'currentColor', size = 24, title = "framer", ...others}, ref) { - const Framer = React.forwardRef(function Framer({color = 'currentColor', size = 24, title = "framer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Framer - \ No newline at end of file +export default Framer; diff --git a/src/components/Framework7.tsx b/src/components/Framework7.tsx index 5f822d812..a50a69649 100644 --- a/src/components/Framework7.tsx +++ b/src/components/Framework7.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Framework7Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Framework7Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Framework7 = React.forwardRef(function Framework7({color = 'currentColor', size = 24, title = "framework7", ...others}, ref) { - const Framework7 = React.forwardRef(function Framework7({color = 'currentColor', size = 24, title = "framework7", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Framework7 - \ No newline at end of file +export default Framework7; diff --git a/src/components/Franprix.tsx b/src/components/Franprix.tsx index 9aba9f15f..385d48330 100644 --- a/src/components/Franprix.tsx +++ b/src/components/Franprix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FranprixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FranprixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Franprix = React.forwardRef(function Franprix({color = 'currentColor', size = 24, title = "franprix", ...others}, ref) { - const Franprix = React.forwardRef(function Franprix({color = 'currentColor', size = 24, title = "franprix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Franprix - \ No newline at end of file +export default Franprix; diff --git a/src/components/Fraunhofergesellschaft.tsx b/src/components/Fraunhofergesellschaft.tsx index 38feacf1b..b43e42a13 100644 --- a/src/components/Fraunhofergesellschaft.tsx +++ b/src/components/Fraunhofergesellschaft.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FraunhofergesellschaftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FraunhofergesellschaftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fraunhofergesellschaft = React.forwardRef(function Fraunhofergesellschaft({color = 'currentColor', size = 24, title = "fraunhofergesellschaft", ...others}, ref) { - const Fraunhofergesellschaft = React.forwardRef(function Fraunhofergesellschaft({color = 'currentColor', size = 24, title = "fraunhofergesellschaft", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fraunhofergesellschaft - \ No newline at end of file +export default Fraunhofergesellschaft; diff --git a/src/components/Freebsd.tsx b/src/components/Freebsd.tsx index e09964c33..d9189ca20 100644 --- a/src/components/Freebsd.tsx +++ b/src/components/Freebsd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FreebsdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FreebsdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Freebsd = React.forwardRef(function Freebsd({color = 'currentColor', size = 24, title = "freebsd", ...others}, ref) { - const Freebsd = React.forwardRef(function Freebsd({color = 'currentColor', size = 24, title = "freebsd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Freebsd - \ No newline at end of file +export default Freebsd; diff --git a/src/components/Freecodecamp.tsx b/src/components/Freecodecamp.tsx index c4f376fde..03d6b0390 100644 --- a/src/components/Freecodecamp.tsx +++ b/src/components/Freecodecamp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FreecodecampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FreecodecampProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Freecodecamp = React.forwardRef(function Freecodecamp({color = 'currentColor', size = 24, title = "freecodecamp", ...others}, ref) { - const Freecodecamp = React.forwardRef(function Freecodecamp({color = 'currentColor', size = 24, title = "freecodecamp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Freecodecamp - \ No newline at end of file +export default Freecodecamp; diff --git a/src/components/Freedesktopdotorg.tsx b/src/components/Freedesktopdotorg.tsx index 000ecda00..9a509e9db 100644 --- a/src/components/Freedesktopdotorg.tsx +++ b/src/components/Freedesktopdotorg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FreedesktopdotorgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FreedesktopdotorgProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Freedesktopdotorg = React.forwardRef(function Freedesktopdotorg({color = 'currentColor', size = 24, title = "freedesktopdotorg", ...others}, ref) { - const Freedesktopdotorg = React.forwardRef(function Freedesktopdotorg({color = 'currentColor', size = 24, title = "freedesktopdotorg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Freedesktopdotorg - \ No newline at end of file +export default Freedesktopdotorg; diff --git a/src/components/Freelancer.tsx b/src/components/Freelancer.tsx index 5098c441a..9e5390298 100644 --- a/src/components/Freelancer.tsx +++ b/src/components/Freelancer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FreelancerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FreelancerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Freelancer = React.forwardRef(function Freelancer({color = 'currentColor', size = 24, title = "freelancer", ...others}, ref) { - const Freelancer = React.forwardRef(function Freelancer({color = 'currentColor', size = 24, title = "freelancer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Freelancer - \ No newline at end of file +export default Freelancer; diff --git a/src/components/Freenas.tsx b/src/components/Freenas.tsx index d36348cb7..8a8f9af59 100644 --- a/src/components/Freenas.tsx +++ b/src/components/Freenas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FreenasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FreenasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Freenas = React.forwardRef(function Freenas({color = 'currentColor', size = 24, title = "freenas", ...others}, ref) { - const Freenas = React.forwardRef(function Freenas({color = 'currentColor', size = 24, title = "freenas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Freenas - \ No newline at end of file +export default Freenas; diff --git a/src/components/Frontendmentor.tsx b/src/components/Frontendmentor.tsx index f86c3248e..8af2278b6 100644 --- a/src/components/Frontendmentor.tsx +++ b/src/components/Frontendmentor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FrontendmentorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FrontendmentorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Frontendmentor = React.forwardRef(function Frontendmentor({color = 'currentColor', size = 24, title = "frontendmentor", ...others}, ref) { - const Frontendmentor = React.forwardRef(function Frontendmentor({color = 'currentColor', size = 24, title = "frontendmentor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Frontendmentor - \ No newline at end of file +export default Frontendmentor; diff --git a/src/components/Fsecure.tsx b/src/components/Fsecure.tsx index 8ba429865..1011de5c0 100644 --- a/src/components/Fsecure.tsx +++ b/src/components/Fsecure.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FsecureProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FsecureProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fsecure = React.forwardRef(function Fsecure({color = 'currentColor', size = 24, title = "fsecure", ...others}, ref) { - const Fsecure = React.forwardRef(function Fsecure({color = 'currentColor', size = 24, title = "fsecure", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fsecure - \ No newline at end of file +export default Fsecure; diff --git a/src/components/Fugacloud.tsx b/src/components/Fugacloud.tsx index c85eff4e7..44561585c 100644 --- a/src/components/Fugacloud.tsx +++ b/src/components/Fugacloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FugacloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FugacloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fugacloud = React.forwardRef(function Fugacloud({color = 'currentColor', size = 24, title = "fugacloud", ...others}, ref) { - const Fugacloud = React.forwardRef(function Fugacloud({color = 'currentColor', size = 24, title = "fugacloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fugacloud - \ No newline at end of file +export default Fugacloud; diff --git a/src/components/Fujifilm.tsx b/src/components/Fujifilm.tsx index c86e51191..edb41ba6a 100644 --- a/src/components/Fujifilm.tsx +++ b/src/components/Fujifilm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FujifilmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FujifilmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fujifilm = React.forwardRef(function Fujifilm({color = 'currentColor', size = 24, title = "fujifilm", ...others}, ref) { - const Fujifilm = React.forwardRef(function Fujifilm({color = 'currentColor', size = 24, title = "fujifilm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fujifilm - \ No newline at end of file +export default Fujifilm; diff --git a/src/components/Fujitsu.tsx b/src/components/Fujitsu.tsx index 79aa708e3..93e86ee8f 100644 --- a/src/components/Fujitsu.tsx +++ b/src/components/Fujitsu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FujitsuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FujitsuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Fujitsu = React.forwardRef(function Fujitsu({color = 'currentColor', size = 24, title = "fujitsu", ...others}, ref) { - const Fujitsu = React.forwardRef(function Fujitsu({color = 'currentColor', size = 24, title = "fujitsu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Fujitsu - \ No newline at end of file +export default Fujitsu; diff --git a/src/components/Funimation.tsx b/src/components/Funimation.tsx index 0b103b1b5..cf40b1c4e 100644 --- a/src/components/Funimation.tsx +++ b/src/components/Funimation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FunimationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FunimationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Funimation = React.forwardRef(function Funimation({color = 'currentColor', size = 24, title = "funimation", ...others}, ref) { - const Funimation = React.forwardRef(function Funimation({color = 'currentColor', size = 24, title = "funimation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Funimation - \ No newline at end of file +export default Funimation; diff --git a/src/components/Furaffinity.tsx b/src/components/Furaffinity.tsx index d5d33f8f5..a39a6dae2 100644 --- a/src/components/Furaffinity.tsx +++ b/src/components/Furaffinity.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FuraffinityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FuraffinityProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Furaffinity = React.forwardRef(function Furaffinity({color = 'currentColor', size = 24, title = "furaffinity", ...others}, ref) { - const Furaffinity = React.forwardRef(function Furaffinity({color = 'currentColor', size = 24, title = "furaffinity", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Furaffinity - \ No newline at end of file +export default Furaffinity; diff --git a/src/components/Furrynetwork.tsx b/src/components/Furrynetwork.tsx index 85fa46d7e..e627706ca 100644 --- a/src/components/Furrynetwork.tsx +++ b/src/components/Furrynetwork.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FurrynetworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FurrynetworkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Furrynetwork = React.forwardRef(function Furrynetwork({color = 'currentColor', size = 24, title = "furrynetwork", ...others}, ref) { - const Furrynetwork = React.forwardRef(function Furrynetwork({color = 'currentColor', size = 24, title = "furrynetwork", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Furrynetwork - \ No newline at end of file +export default Furrynetwork; diff --git a/src/components/Futurelearn.tsx b/src/components/Futurelearn.tsx index 3d6bd4669..1f8184145 100644 --- a/src/components/Futurelearn.tsx +++ b/src/components/Futurelearn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type FuturelearnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type FuturelearnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Futurelearn = React.forwardRef(function Futurelearn({color = 'currentColor', size = 24, title = "futurelearn", ...others}, ref) { - const Futurelearn = React.forwardRef(function Futurelearn({color = 'currentColor', size = 24, title = "futurelearn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Futurelearn - \ No newline at end of file +export default Futurelearn; diff --git a/src/components/GTwo.tsx b/src/components/GTwo.tsx index 0e745d3e9..431f2011b 100644 --- a/src/components/GTwo.tsx +++ b/src/components/GTwo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GTwoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GTwoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const GTwo = React.forwardRef(function GTwo({color = 'currentColor', size = 24, title = "g2", ...others}, ref) { - const GTwo = React.forwardRef(function GTwo({color = 'currentColor', size = 24, title = "g2", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default GTwo - \ No newline at end of file +export default GTwo; diff --git a/src/components/GTwoA.tsx b/src/components/GTwoA.tsx index 643bd27b4..eb4402c65 100644 --- a/src/components/GTwoA.tsx +++ b/src/components/GTwoA.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GTwoAProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GTwoAProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const GTwoA = React.forwardRef(function GTwoA({color = 'currentColor', size = 24, title = "g2a", ...others}, ref) { - const GTwoA = React.forwardRef(function GTwoA({color = 'currentColor', size = 24, title = "g2a", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default GTwoA - \ No newline at end of file +export default GTwoA; diff --git a/src/components/Gameandwatch.tsx b/src/components/Gameandwatch.tsx index 68ff732b7..56a3c49cf 100644 --- a/src/components/Gameandwatch.tsx +++ b/src/components/Gameandwatch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GameandwatchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GameandwatchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gameandwatch = React.forwardRef(function Gameandwatch({color = 'currentColor', size = 24, title = "gameandwatch", ...others}, ref) { - const Gameandwatch = React.forwardRef(function Gameandwatch({color = 'currentColor', size = 24, title = "gameandwatch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gameandwatch - \ No newline at end of file +export default Gameandwatch; diff --git a/src/components/Gamedeveloper.tsx b/src/components/Gamedeveloper.tsx new file mode 100644 index 000000000..c110b15b2 --- /dev/null +++ b/src/components/Gamedeveloper.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type GamedeveloperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Gamedeveloper = React.forwardRef(function Gamedeveloper({color = 'currentColor', size = 24, title = "gamedeveloper", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Gamedeveloper; diff --git a/src/components/Gamejolt.tsx b/src/components/Gamejolt.tsx index 089844da7..634dad04f 100644 --- a/src/components/Gamejolt.tsx +++ b/src/components/Gamejolt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GamejoltProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GamejoltProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gamejolt = React.forwardRef(function Gamejolt({color = 'currentColor', size = 24, title = "gamejolt", ...others}, ref) { - const Gamejolt = React.forwardRef(function Gamejolt({color = 'currentColor', size = 24, title = "gamejolt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gamejolt - \ No newline at end of file +export default Gamejolt; diff --git a/src/components/Garmin.tsx b/src/components/Garmin.tsx index 47d6915de..2c60644a5 100644 --- a/src/components/Garmin.tsx +++ b/src/components/Garmin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GarminProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GarminProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Garmin = React.forwardRef(function Garmin({color = 'currentColor', size = 24, title = "garmin", ...others}, ref) { - const Garmin = React.forwardRef(function Garmin({color = 'currentColor', size = 24, title = "garmin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Garmin - \ No newline at end of file +export default Garmin; diff --git a/src/components/Gatling.tsx b/src/components/Gatling.tsx index 15a618dd3..11e8ec40f 100644 --- a/src/components/Gatling.tsx +++ b/src/components/Gatling.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GatlingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GatlingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gatling = React.forwardRef(function Gatling({color = 'currentColor', size = 24, title = "gatling", ...others}, ref) { - const Gatling = React.forwardRef(function Gatling({color = 'currentColor', size = 24, title = "gatling", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gatling - \ No newline at end of file +export default Gatling; diff --git a/src/components/Gatsby.tsx b/src/components/Gatsby.tsx index a507af3fc..68ec0a3ed 100644 --- a/src/components/Gatsby.tsx +++ b/src/components/Gatsby.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GatsbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GatsbyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gatsby = React.forwardRef(function Gatsby({color = 'currentColor', size = 24, title = "gatsby", ...others}, ref) { - const Gatsby = React.forwardRef(function Gatsby({color = 'currentColor', size = 24, title = "gatsby", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gatsby - \ No newline at end of file +export default Gatsby; diff --git a/src/components/Geant.tsx b/src/components/Geant.tsx index 388eeec10..39b56922a 100644 --- a/src/components/Geant.tsx +++ b/src/components/Geant.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GeantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GeantProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Geant = React.forwardRef(function Geant({color = 'currentColor', size = 24, title = "geant", ...others}, ref) { - const Geant = React.forwardRef(function Geant({color = 'currentColor', size = 24, title = "geant", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Geant - \ No newline at end of file +export default Geant; diff --git a/src/components/Geeksforgeeks.tsx b/src/components/Geeksforgeeks.tsx index 66cdcb3cd..772025288 100644 --- a/src/components/Geeksforgeeks.tsx +++ b/src/components/Geeksforgeeks.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GeeksforgeeksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GeeksforgeeksProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Geeksforgeeks = React.forwardRef(function Geeksforgeeks({color = 'currentColor', size = 24, title = "geeksforgeeks", ...others}, ref) { - const Geeksforgeeks = React.forwardRef(function Geeksforgeeks({color = 'currentColor', size = 24, title = "geeksforgeeks", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Geeksforgeeks - \ No newline at end of file +export default Geeksforgeeks; diff --git a/src/components/Generalelectric.tsx b/src/components/Generalelectric.tsx index 229ffe943..435177c32 100644 --- a/src/components/Generalelectric.tsx +++ b/src/components/Generalelectric.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GeneralelectricProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GeneralelectricProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Generalelectric = React.forwardRef(function Generalelectric({color = 'currentColor', size = 24, title = "generalelectric", ...others}, ref) { - const Generalelectric = React.forwardRef(function Generalelectric({color = 'currentColor', size = 24, title = "generalelectric", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Generalelectric - \ No newline at end of file +export default Generalelectric; diff --git a/src/components/Generalmotors.tsx b/src/components/Generalmotors.tsx index cd57dfdc4..bcc5d4592 100644 --- a/src/components/Generalmotors.tsx +++ b/src/components/Generalmotors.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GeneralmotorsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GeneralmotorsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Generalmotors = React.forwardRef(function Generalmotors({color = 'currentColor', size = 24, title = "generalmotors", ...others}, ref) { - const Generalmotors = React.forwardRef(function Generalmotors({color = 'currentColor', size = 24, title = "generalmotors", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Generalmotors - \ No newline at end of file +export default Generalmotors; diff --git a/src/components/Genius.tsx b/src/components/Genius.tsx index 7b2ef8d53..96f055b27 100644 --- a/src/components/Genius.tsx +++ b/src/components/Genius.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GeniusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GeniusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Genius = React.forwardRef(function Genius({color = 'currentColor', size = 24, title = "genius", ...others}, ref) { - const Genius = React.forwardRef(function Genius({color = 'currentColor', size = 24, title = "genius", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Genius - \ No newline at end of file +export default Genius; diff --git a/src/components/Gentoo.tsx b/src/components/Gentoo.tsx index dfcdcbcb8..cdab58bc8 100644 --- a/src/components/Gentoo.tsx +++ b/src/components/Gentoo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GentooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GentooProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gentoo = React.forwardRef(function Gentoo({color = 'currentColor', size = 24, title = "gentoo", ...others}, ref) { - const Gentoo = React.forwardRef(function Gentoo({color = 'currentColor', size = 24, title = "gentoo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gentoo - \ No newline at end of file +export default Gentoo; diff --git a/src/components/Geocaching.tsx b/src/components/Geocaching.tsx index b1e48e0f1..c3f07ed39 100644 --- a/src/components/Geocaching.tsx +++ b/src/components/Geocaching.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GeocachingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GeocachingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Geocaching = React.forwardRef(function Geocaching({color = 'currentColor', size = 24, title = "geocaching", ...others}, ref) { - const Geocaching = React.forwardRef(function Geocaching({color = 'currentColor', size = 24, title = "geocaching", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Geocaching - \ No newline at end of file +export default Geocaching; diff --git a/src/components/Gerrit.tsx b/src/components/Gerrit.tsx index af2ed90a2..7fdff80bf 100644 --- a/src/components/Gerrit.tsx +++ b/src/components/Gerrit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GerritProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GerritProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gerrit = React.forwardRef(function Gerrit({color = 'currentColor', size = 24, title = "gerrit", ...others}, ref) { - const Gerrit = React.forwardRef(function Gerrit({color = 'currentColor', size = 24, title = "gerrit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gerrit - \ No newline at end of file +export default Gerrit; diff --git a/src/components/Ghost.tsx b/src/components/Ghost.tsx index aa33874c4..c9ba48212 100644 --- a/src/components/Ghost.tsx +++ b/src/components/Ghost.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GhostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GhostProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ghost = React.forwardRef(function Ghost({color = 'currentColor', size = 24, title = "ghost", ...others}, ref) { - const Ghost = React.forwardRef(function Ghost({color = 'currentColor', size = 24, title = "ghost", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ghost - \ No newline at end of file +export default Ghost; diff --git a/src/components/Ghostery.tsx b/src/components/Ghostery.tsx index c15d71ef9..2eb255eb6 100644 --- a/src/components/Ghostery.tsx +++ b/src/components/Ghostery.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GhosteryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GhosteryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ghostery = React.forwardRef(function Ghostery({color = 'currentColor', size = 24, title = "ghostery", ...others}, ref) { - const Ghostery = React.forwardRef(function Ghostery({color = 'currentColor', size = 24, title = "ghostery", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ghostery - \ No newline at end of file +export default Ghostery; diff --git a/src/components/Gimp.tsx b/src/components/Gimp.tsx index f6ce58079..017de41ec 100644 --- a/src/components/Gimp.tsx +++ b/src/components/Gimp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GimpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GimpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gimp = React.forwardRef(function Gimp({color = 'currentColor', size = 24, title = "gimp", ...others}, ref) { - const Gimp = React.forwardRef(function Gimp({color = 'currentColor', size = 24, title = "gimp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gimp - \ No newline at end of file +export default Gimp; diff --git a/src/components/Giphy.tsx b/src/components/Giphy.tsx index d544d1078..1a21c6bef 100644 --- a/src/components/Giphy.tsx +++ b/src/components/Giphy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GiphyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GiphyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Giphy = React.forwardRef(function Giphy({color = 'currentColor', size = 24, title = "giphy", ...others}, ref) { - const Giphy = React.forwardRef(function Giphy({color = 'currentColor', size = 24, title = "giphy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Giphy - \ No newline at end of file +export default Giphy; diff --git a/src/components/Git.tsx b/src/components/Git.tsx index 62d7ea98a..41f027858 100644 --- a/src/components/Git.tsx +++ b/src/components/Git.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Git = React.forwardRef(function Git({color = 'currentColor', size = 24, title = "git", ...others}, ref) { - const Git = React.forwardRef(function Git({color = 'currentColor', size = 24, title = "git", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Git - \ No newline at end of file +export default Git; diff --git a/src/components/Gitbook.tsx b/src/components/Gitbook.tsx index b723d80b6..d903ec37e 100644 --- a/src/components/Gitbook.tsx +++ b/src/components/Gitbook.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GitbookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GitbookProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gitbook = React.forwardRef(function Gitbook({color = 'currentColor', size = 24, title = "gitbook", ...others}, ref) { - const Gitbook = React.forwardRef(function Gitbook({color = 'currentColor', size = 24, title = "gitbook", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gitbook - \ No newline at end of file +export default Gitbook; diff --git a/src/components/Gitea.tsx b/src/components/Gitea.tsx index 1bbfc79cf..471985a18 100644 --- a/src/components/Gitea.tsx +++ b/src/components/Gitea.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GiteaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GiteaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gitea = React.forwardRef(function Gitea({color = 'currentColor', size = 24, title = "gitea", ...others}, ref) { - const Gitea = React.forwardRef(function Gitea({color = 'currentColor', size = 24, title = "gitea", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gitea - \ No newline at end of file +export default Gitea; diff --git a/src/components/Gitee.tsx b/src/components/Gitee.tsx index 15b66928d..18dff2463 100644 --- a/src/components/Gitee.tsx +++ b/src/components/Gitee.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GiteeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GiteeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gitee = React.forwardRef(function Gitee({color = 'currentColor', size = 24, title = "gitee", ...others}, ref) { - const Gitee = React.forwardRef(function Gitee({color = 'currentColor', size = 24, title = "gitee", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gitee - \ No newline at end of file +export default Gitee; diff --git a/src/components/Gitextensions.tsx b/src/components/Gitextensions.tsx index 26c23e794..ae8130306 100644 --- a/src/components/Gitextensions.tsx +++ b/src/components/Gitextensions.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GitextensionsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GitextensionsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gitextensions = React.forwardRef(function Gitextensions({color = 'currentColor', size = 24, title = "gitextensions", ...others}, ref) { - const Gitextensions = React.forwardRef(function Gitextensions({color = 'currentColor', size = 24, title = "gitextensions", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gitextensions - \ No newline at end of file +export default Gitextensions; diff --git a/src/components/Github.tsx b/src/components/Github.tsx index cafb5739b..8266f06da 100644 --- a/src/components/Github.tsx +++ b/src/components/Github.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GithubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GithubProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Github = React.forwardRef(function Github({color = 'currentColor', size = 24, title = "github", ...others}, ref) { - const Github = React.forwardRef(function Github({color = 'currentColor', size = 24, title = "github", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Github - \ No newline at end of file +export default Github; diff --git a/src/components/Githubactions.tsx b/src/components/Githubactions.tsx index ead71d2ca..c3da0afd3 100644 --- a/src/components/Githubactions.tsx +++ b/src/components/Githubactions.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GithubactionsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GithubactionsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Githubactions = React.forwardRef(function Githubactions({color = 'currentColor', size = 24, title = "githubactions", ...others}, ref) { - const Githubactions = React.forwardRef(function Githubactions({color = 'currentColor', size = 24, title = "githubactions", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Githubactions - \ No newline at end of file +export default Githubactions; diff --git a/src/components/Githubpages.tsx b/src/components/Githubpages.tsx index b766dac46..fdffd1c51 100644 --- a/src/components/Githubpages.tsx +++ b/src/components/Githubpages.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GithubpagesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GithubpagesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Githubpages = React.forwardRef(function Githubpages({color = 'currentColor', size = 24, title = "githubpages", ...others}, ref) { - const Githubpages = React.forwardRef(function Githubpages({color = 'currentColor', size = 24, title = "githubpages", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Githubpages - \ No newline at end of file +export default Githubpages; diff --git a/src/components/Githubsponsors.tsx b/src/components/Githubsponsors.tsx index 94143425c..4f3707209 100644 --- a/src/components/Githubsponsors.tsx +++ b/src/components/Githubsponsors.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GithubsponsorsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GithubsponsorsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Githubsponsors = React.forwardRef(function Githubsponsors({color = 'currentColor', size = 24, title = "githubsponsors", ...others}, ref) { - const Githubsponsors = React.forwardRef(function Githubsponsors({color = 'currentColor', size = 24, title = "githubsponsors", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Githubsponsors - \ No newline at end of file +export default Githubsponsors; diff --git a/src/components/Gitignoredotio.tsx b/src/components/Gitignoredotio.tsx index 7adddb7e9..e7701254e 100644 --- a/src/components/Gitignoredotio.tsx +++ b/src/components/Gitignoredotio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GitignoredotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GitignoredotioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gitignoredotio = React.forwardRef(function Gitignoredotio({color = 'currentColor', size = 24, title = "gitignoredotio", ...others}, ref) { - const Gitignoredotio = React.forwardRef(function Gitignoredotio({color = 'currentColor', size = 24, title = "gitignoredotio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gitignoredotio - \ No newline at end of file +export default Gitignoredotio; diff --git a/src/components/Gitkraken.tsx b/src/components/Gitkraken.tsx index 3b2896900..8da91ebf7 100644 --- a/src/components/Gitkraken.tsx +++ b/src/components/Gitkraken.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GitkrakenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GitkrakenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gitkraken = React.forwardRef(function Gitkraken({color = 'currentColor', size = 24, title = "gitkraken", ...others}, ref) { - const Gitkraken = React.forwardRef(function Gitkraken({color = 'currentColor', size = 24, title = "gitkraken", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gitkraken - \ No newline at end of file +export default Gitkraken; diff --git a/src/components/Gitlab.tsx b/src/components/Gitlab.tsx index 8f5ec3d20..2e454b21f 100644 --- a/src/components/Gitlab.tsx +++ b/src/components/Gitlab.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GitlabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GitlabProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gitlab = React.forwardRef(function Gitlab({color = 'currentColor', size = 24, title = "gitlab", ...others}, ref) { - const Gitlab = React.forwardRef(function Gitlab({color = 'currentColor', size = 24, title = "gitlab", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gitlab - \ No newline at end of file +export default Gitlab; diff --git a/src/components/Gitlfs.tsx b/src/components/Gitlfs.tsx index 8352ceaad..7a125349e 100644 --- a/src/components/Gitlfs.tsx +++ b/src/components/Gitlfs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GitlfsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GitlfsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gitlfs = React.forwardRef(function Gitlfs({color = 'currentColor', size = 24, title = "gitlfs", ...others}, ref) { - const Gitlfs = React.forwardRef(function Gitlfs({color = 'currentColor', size = 24, title = "gitlfs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gitlfs - \ No newline at end of file +export default Gitlfs; diff --git a/src/components/Gitpod.tsx b/src/components/Gitpod.tsx index 6f9822ea2..1de476c0d 100644 --- a/src/components/Gitpod.tsx +++ b/src/components/Gitpod.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GitpodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GitpodProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gitpod = React.forwardRef(function Gitpod({color = 'currentColor', size = 24, title = "gitpod", ...others}, ref) { - const Gitpod = React.forwardRef(function Gitpod({color = 'currentColor', size = 24, title = "gitpod", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gitpod - \ No newline at end of file +export default Gitpod; diff --git a/src/components/Gitter.tsx b/src/components/Gitter.tsx index aac65c22b..9e669452d 100644 --- a/src/components/Gitter.tsx +++ b/src/components/Gitter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GitterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GitterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gitter = React.forwardRef(function Gitter({color = 'currentColor', size = 24, title = "gitter", ...others}, ref) { - const Gitter = React.forwardRef(function Gitter({color = 'currentColor', size = 24, title = "gitter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gitter - \ No newline at end of file +export default Gitter; diff --git a/src/components/Glassdoor.tsx b/src/components/Glassdoor.tsx index 81e321a5e..95ddfaacb 100644 --- a/src/components/Glassdoor.tsx +++ b/src/components/Glassdoor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GlassdoorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GlassdoorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Glassdoor = React.forwardRef(function Glassdoor({color = 'currentColor', size = 24, title = "glassdoor", ...others}, ref) { - const Glassdoor = React.forwardRef(function Glassdoor({color = 'currentColor', size = 24, title = "glassdoor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Glassdoor - \ No newline at end of file +export default Glassdoor; diff --git a/src/components/Glitch.tsx b/src/components/Glitch.tsx index 0cec282e6..afb2be86c 100644 --- a/src/components/Glitch.tsx +++ b/src/components/Glitch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GlitchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GlitchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Glitch = React.forwardRef(function Glitch({color = 'currentColor', size = 24, title = "glitch", ...others}, ref) { - const Glitch = React.forwardRef(function Glitch({color = 'currentColor', size = 24, title = "glitch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Glitch - \ No newline at end of file +export default Glitch; diff --git a/src/components/Globus.tsx b/src/components/Globus.tsx index 469fedf94..8859b911b 100644 --- a/src/components/Globus.tsx +++ b/src/components/Globus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GlobusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GlobusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Globus = React.forwardRef(function Globus({color = 'currentColor', size = 24, title = "globus", ...others}, ref) { - const Globus = React.forwardRef(function Globus({color = 'currentColor', size = 24, title = "globus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Globus - \ No newline at end of file +export default Globus; diff --git a/src/components/Gmail.tsx b/src/components/Gmail.tsx index 4d262a37e..0bf446eef 100644 --- a/src/components/Gmail.tsx +++ b/src/components/Gmail.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GmailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GmailProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gmail = React.forwardRef(function Gmail({color = 'currentColor', size = 24, title = "gmail", ...others}, ref) { - const Gmail = React.forwardRef(function Gmail({color = 'currentColor', size = 24, title = "gmail", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gmail - \ No newline at end of file +export default Gmail; diff --git a/src/components/Gnome.tsx b/src/components/Gnome.tsx index ecdbb0494..244c16907 100644 --- a/src/components/Gnome.tsx +++ b/src/components/Gnome.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GnomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GnomeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gnome = React.forwardRef(function Gnome({color = 'currentColor', size = 24, title = "gnome", ...others}, ref) { - const Gnome = React.forwardRef(function Gnome({color = 'currentColor', size = 24, title = "gnome", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gnome - \ No newline at end of file +export default Gnome; diff --git a/src/components/Gnometerminal.tsx b/src/components/Gnometerminal.tsx index ee8d38620..550d030b3 100644 --- a/src/components/Gnometerminal.tsx +++ b/src/components/Gnometerminal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GnometerminalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GnometerminalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gnometerminal = React.forwardRef(function Gnometerminal({color = 'currentColor', size = 24, title = "gnometerminal", ...others}, ref) { - const Gnometerminal = React.forwardRef(function Gnometerminal({color = 'currentColor', size = 24, title = "gnometerminal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gnometerminal - \ No newline at end of file +export default Gnometerminal; diff --git a/src/components/Gnu.tsx b/src/components/Gnu.tsx index 148740800..b69485165 100644 --- a/src/components/Gnu.tsx +++ b/src/components/Gnu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GnuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GnuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gnu = React.forwardRef(function Gnu({color = 'currentColor', size = 24, title = "gnu", ...others}, ref) { - const Gnu = React.forwardRef(function Gnu({color = 'currentColor', size = 24, title = "gnu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gnu - \ No newline at end of file +export default Gnu; diff --git a/src/components/Gnubash.tsx b/src/components/Gnubash.tsx index 3b13aa47d..dc4dc946a 100644 --- a/src/components/Gnubash.tsx +++ b/src/components/Gnubash.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GnubashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GnubashProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gnubash = React.forwardRef(function Gnubash({color = 'currentColor', size = 24, title = "gnubash", ...others}, ref) { - const Gnubash = React.forwardRef(function Gnubash({color = 'currentColor', size = 24, title = "gnubash", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gnubash - \ No newline at end of file +export default Gnubash; diff --git a/src/components/Gnuemacs.tsx b/src/components/Gnuemacs.tsx index a79e49b50..de72d1a2c 100644 --- a/src/components/Gnuemacs.tsx +++ b/src/components/Gnuemacs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GnuemacsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GnuemacsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gnuemacs = React.forwardRef(function Gnuemacs({color = 'currentColor', size = 24, title = "gnuemacs", ...others}, ref) { - const Gnuemacs = React.forwardRef(function Gnuemacs({color = 'currentColor', size = 24, title = "gnuemacs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gnuemacs - \ No newline at end of file +export default Gnuemacs; diff --git a/src/components/Gnuicecat.tsx b/src/components/Gnuicecat.tsx index 5f4224e5a..2eadeec95 100644 --- a/src/components/Gnuicecat.tsx +++ b/src/components/Gnuicecat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GnuicecatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GnuicecatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gnuicecat = React.forwardRef(function Gnuicecat({color = 'currentColor', size = 24, title = "gnuicecat", ...others}, ref) { - const Gnuicecat = React.forwardRef(function Gnuicecat({color = 'currentColor', size = 24, title = "gnuicecat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gnuicecat - \ No newline at end of file +export default Gnuicecat; diff --git a/src/components/Gnuprivacyguard.tsx b/src/components/Gnuprivacyguard.tsx index 31f1b31d2..673686e51 100644 --- a/src/components/Gnuprivacyguard.tsx +++ b/src/components/Gnuprivacyguard.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GnuprivacyguardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GnuprivacyguardProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gnuprivacyguard = React.forwardRef(function Gnuprivacyguard({color = 'currentColor', size = 24, title = "gnuprivacyguard", ...others}, ref) { - const Gnuprivacyguard = React.forwardRef(function Gnuprivacyguard({color = 'currentColor', size = 24, title = "gnuprivacyguard", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gnuprivacyguard - \ No newline at end of file +export default Gnuprivacyguard; diff --git a/src/components/Gnusocial.tsx b/src/components/Gnusocial.tsx index 1fc736aa6..addb9bc33 100644 --- a/src/components/Gnusocial.tsx +++ b/src/components/Gnusocial.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GnusocialProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GnusocialProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gnusocial = React.forwardRef(function Gnusocial({color = 'currentColor', size = 24, title = "gnusocial", ...others}, ref) { - const Gnusocial = React.forwardRef(function Gnusocial({color = 'currentColor', size = 24, title = "gnusocial", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gnusocial - \ No newline at end of file +export default Gnusocial; diff --git a/src/components/Go.tsx b/src/components/Go.tsx index 183995b77..31d299277 100644 --- a/src/components/Go.tsx +++ b/src/components/Go.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Go = React.forwardRef(function Go({color = 'currentColor', size = 24, title = "go", ...others}, ref) { - const Go = React.forwardRef(function Go({color = 'currentColor', size = 24, title = "go", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Go - \ No newline at end of file +export default Go; diff --git a/src/components/Gocd.tsx b/src/components/Gocd.tsx index 7280b0403..e8d8bed59 100644 --- a/src/components/Gocd.tsx +++ b/src/components/Gocd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GocdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GocdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gocd = React.forwardRef(function Gocd({color = 'currentColor', size = 24, title = "gocd", ...others}, ref) { - const Gocd = React.forwardRef(function Gocd({color = 'currentColor', size = 24, title = "gocd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gocd - \ No newline at end of file +export default Gocd; diff --git a/src/components/Godaddy.tsx b/src/components/Godaddy.tsx index 2ba9d3ef8..f35361ce3 100644 --- a/src/components/Godaddy.tsx +++ b/src/components/Godaddy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GodaddyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GodaddyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Godaddy = React.forwardRef(function Godaddy({color = 'currentColor', size = 24, title = "godaddy", ...others}, ref) { - const Godaddy = React.forwardRef(function Godaddy({color = 'currentColor', size = 24, title = "godaddy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Godaddy - \ No newline at end of file +export default Godaddy; diff --git a/src/components/Godotengine.tsx b/src/components/Godotengine.tsx index 783ff29ef..e8f61e129 100644 --- a/src/components/Godotengine.tsx +++ b/src/components/Godotengine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GodotengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GodotengineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Godotengine = React.forwardRef(function Godotengine({color = 'currentColor', size = 24, title = "godotengine", ...others}, ref) { - const Godotengine = React.forwardRef(function Godotengine({color = 'currentColor', size = 24, title = "godotengine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Godotengine - \ No newline at end of file +export default Godotengine; diff --git a/src/components/Gofundme.tsx b/src/components/Gofundme.tsx index 71dd847d2..771f6e110 100644 --- a/src/components/Gofundme.tsx +++ b/src/components/Gofundme.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GofundmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GofundmeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gofundme = React.forwardRef(function Gofundme({color = 'currentColor', size = 24, title = "gofundme", ...others}, ref) { - const Gofundme = React.forwardRef(function Gofundme({color = 'currentColor', size = 24, title = "gofundme", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gofundme - \ No newline at end of file +export default Gofundme; diff --git a/src/components/Gogdotcom.tsx b/src/components/Gogdotcom.tsx index 8aba69576..cc478d52e 100644 --- a/src/components/Gogdotcom.tsx +++ b/src/components/Gogdotcom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GogdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GogdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gogdotcom = React.forwardRef(function Gogdotcom({color = 'currentColor', size = 24, title = "gogdotcom", ...others}, ref) { - const Gogdotcom = React.forwardRef(function Gogdotcom({color = 'currentColor', size = 24, title = "gogdotcom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gogdotcom - \ No newline at end of file +export default Gogdotcom; diff --git a/src/components/Goland.tsx b/src/components/Goland.tsx index 007302bc7..2a9679a68 100644 --- a/src/components/Goland.tsx +++ b/src/components/Goland.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GolandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GolandProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Goland = React.forwardRef(function Goland({color = 'currentColor', size = 24, title = "goland", ...others}, ref) { - const Goland = React.forwardRef(function Goland({color = 'currentColor', size = 24, title = "goland", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Goland - \ No newline at end of file +export default Goland; diff --git a/src/components/Goldenline.tsx b/src/components/Goldenline.tsx index 790eed6c8..194847cc3 100644 --- a/src/components/Goldenline.tsx +++ b/src/components/Goldenline.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoldenlineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoldenlineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Goldenline = React.forwardRef(function Goldenline({color = 'currentColor', size = 24, title = "goldenline", ...others}, ref) { - const Goldenline = React.forwardRef(function Goldenline({color = 'currentColor', size = 24, title = "goldenline", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Goldenline - \ No newline at end of file +export default Goldenline; diff --git a/src/components/Goodreads.tsx b/src/components/Goodreads.tsx index fd3b73d8d..c21a62c45 100644 --- a/src/components/Goodreads.tsx +++ b/src/components/Goodreads.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoodreadsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoodreadsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Goodreads = React.forwardRef(function Goodreads({color = 'currentColor', size = 24, title = "goodreads", ...others}, ref) { - const Goodreads = React.forwardRef(function Goodreads({color = 'currentColor', size = 24, title = "goodreads", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Goodreads - \ No newline at end of file +export default Goodreads; diff --git a/src/components/Google.tsx b/src/components/Google.tsx index 68f30d68e..b9948c6e0 100644 --- a/src/components/Google.tsx +++ b/src/components/Google.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Google = React.forwardRef(function Google({color = 'currentColor', size = 24, title = "google", ...others}, ref) { - const Google = React.forwardRef(function Google({color = 'currentColor', size = 24, title = "google", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Google - \ No newline at end of file +export default Google; diff --git a/src/components/Googleadmob.tsx b/src/components/Googleadmob.tsx index b0f81d2a3..92397be3e 100644 --- a/src/components/Googleadmob.tsx +++ b/src/components/Googleadmob.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogleadmobProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogleadmobProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googleadmob = React.forwardRef(function Googleadmob({color = 'currentColor', size = 24, title = "googleadmob", ...others}, ref) { - const Googleadmob = React.forwardRef(function Googleadmob({color = 'currentColor', size = 24, title = "googleadmob", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googleadmob - \ No newline at end of file +export default Googleadmob; diff --git a/src/components/Googleads.tsx b/src/components/Googleads.tsx index 985c6d7fe..fbba40908 100644 --- a/src/components/Googleads.tsx +++ b/src/components/Googleads.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogleadsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogleadsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googleads = React.forwardRef(function Googleads({color = 'currentColor', size = 24, title = "googleads", ...others}, ref) { - const Googleads = React.forwardRef(function Googleads({color = 'currentColor', size = 24, title = "googleads", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googleads - \ No newline at end of file +export default Googleads; diff --git a/src/components/Googleadsense.tsx b/src/components/Googleadsense.tsx index dd973ad3f..1aedfd9e0 100644 --- a/src/components/Googleadsense.tsx +++ b/src/components/Googleadsense.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogleadsenseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogleadsenseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googleadsense = React.forwardRef(function Googleadsense({color = 'currentColor', size = 24, title = "googleadsense", ...others}, ref) { - const Googleadsense = React.forwardRef(function Googleadsense({color = 'currentColor', size = 24, title = "googleadsense", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googleadsense - \ No newline at end of file +export default Googleadsense; diff --git a/src/components/Googleanalytics.tsx b/src/components/Googleanalytics.tsx index c4d572da7..7fab4e9d0 100644 --- a/src/components/Googleanalytics.tsx +++ b/src/components/Googleanalytics.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogleanalyticsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogleanalyticsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googleanalytics = React.forwardRef(function Googleanalytics({color = 'currentColor', size = 24, title = "googleanalytics", ...others}, ref) { - const Googleanalytics = React.forwardRef(function Googleanalytics({color = 'currentColor', size = 24, title = "googleanalytics", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googleanalytics - \ No newline at end of file +export default Googleanalytics; diff --git a/src/components/Googleassistant.tsx b/src/components/Googleassistant.tsx index 655bd4737..79ea33fca 100644 --- a/src/components/Googleassistant.tsx +++ b/src/components/Googleassistant.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogleassistantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogleassistantProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googleassistant = React.forwardRef(function Googleassistant({color = 'currentColor', size = 24, title = "googleassistant", ...others}, ref) { - const Googleassistant = React.forwardRef(function Googleassistant({color = 'currentColor', size = 24, title = "googleassistant", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googleassistant - \ No newline at end of file +export default Googleassistant; diff --git a/src/components/Googlecalendar.tsx b/src/components/Googlecalendar.tsx index aad0ea0f9..28941ecfb 100644 --- a/src/components/Googlecalendar.tsx +++ b/src/components/Googlecalendar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglecalendarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglecalendarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlecalendar = React.forwardRef(function Googlecalendar({color = 'currentColor', size = 24, title = "googlecalendar", ...others}, ref) { - const Googlecalendar = React.forwardRef(function Googlecalendar({color = 'currentColor', size = 24, title = "googlecalendar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlecalendar - \ No newline at end of file +export default Googlecalendar; diff --git a/src/components/Googlecardboard.tsx b/src/components/Googlecardboard.tsx index 42cf4f08e..35de7f078 100644 --- a/src/components/Googlecardboard.tsx +++ b/src/components/Googlecardboard.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglecardboardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglecardboardProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlecardboard = React.forwardRef(function Googlecardboard({color = 'currentColor', size = 24, title = "googlecardboard", ...others}, ref) { - const Googlecardboard = React.forwardRef(function Googlecardboard({color = 'currentColor', size = 24, title = "googlecardboard", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlecardboard - \ No newline at end of file +export default Googlecardboard; diff --git a/src/components/Googlechat.tsx b/src/components/Googlechat.tsx index f5daa593b..375976d2d 100644 --- a/src/components/Googlechat.tsx +++ b/src/components/Googlechat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglechatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglechatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlechat = React.forwardRef(function Googlechat({color = 'currentColor', size = 24, title = "googlechat", ...others}, ref) { - const Googlechat = React.forwardRef(function Googlechat({color = 'currentColor', size = 24, title = "googlechat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlechat - \ No newline at end of file +export default Googlechat; diff --git a/src/components/Googlechrome.tsx b/src/components/Googlechrome.tsx index b853a55d5..ebe2f3c62 100644 --- a/src/components/Googlechrome.tsx +++ b/src/components/Googlechrome.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglechromeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglechromeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlechrome = React.forwardRef(function Googlechrome({color = 'currentColor', size = 24, title = "googlechrome", ...others}, ref) { - const Googlechrome = React.forwardRef(function Googlechrome({color = 'currentColor', size = 24, title = "googlechrome", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlechrome - \ No newline at end of file +export default Googlechrome; diff --git a/src/components/Googleclassroom.tsx b/src/components/Googleclassroom.tsx index 371697f71..54a4d829d 100644 --- a/src/components/Googleclassroom.tsx +++ b/src/components/Googleclassroom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogleclassroomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogleclassroomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googleclassroom = React.forwardRef(function Googleclassroom({color = 'currentColor', size = 24, title = "googleclassroom", ...others}, ref) { - const Googleclassroom = React.forwardRef(function Googleclassroom({color = 'currentColor', size = 24, title = "googleclassroom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googleclassroom - \ No newline at end of file +export default Googleclassroom; diff --git a/src/components/Googlecloud.tsx b/src/components/Googlecloud.tsx index 4e8a5dca6..8ab1fc351 100644 --- a/src/components/Googlecloud.tsx +++ b/src/components/Googlecloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglecloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglecloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlecloud = React.forwardRef(function Googlecloud({color = 'currentColor', size = 24, title = "googlecloud", ...others}, ref) { - const Googlecloud = React.forwardRef(function Googlecloud({color = 'currentColor', size = 24, title = "googlecloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlecloud - \ No newline at end of file +export default Googlecloud; diff --git a/src/components/Googlecolab.tsx b/src/components/Googlecolab.tsx index edeacd941..d8b01b6a6 100644 --- a/src/components/Googlecolab.tsx +++ b/src/components/Googlecolab.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglecolabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglecolabProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlecolab = React.forwardRef(function Googlecolab({color = 'currentColor', size = 24, title = "googlecolab", ...others}, ref) { - const Googlecolab = React.forwardRef(function Googlecolab({color = 'currentColor', size = 24, title = "googlecolab", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlecolab - \ No newline at end of file +export default Googlecolab; diff --git a/src/components/Googledomains.tsx b/src/components/Googledomains.tsx index cf23dc0eb..1732c5e46 100644 --- a/src/components/Googledomains.tsx +++ b/src/components/Googledomains.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogledomainsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogledomainsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googledomains = React.forwardRef(function Googledomains({color = 'currentColor', size = 24, title = "googledomains", ...others}, ref) { - const Googledomains = React.forwardRef(function Googledomains({color = 'currentColor', size = 24, title = "googledomains", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googledomains - \ No newline at end of file +export default Googledomains; diff --git a/src/components/Googledrive.tsx b/src/components/Googledrive.tsx index 40b5f40c6..6264f9a12 100644 --- a/src/components/Googledrive.tsx +++ b/src/components/Googledrive.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogledriveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogledriveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googledrive = React.forwardRef(function Googledrive({color = 'currentColor', size = 24, title = "googledrive", ...others}, ref) { - const Googledrive = React.forwardRef(function Googledrive({color = 'currentColor', size = 24, title = "googledrive", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googledrive - \ No newline at end of file +export default Googledrive; diff --git a/src/components/Googleearth.tsx b/src/components/Googleearth.tsx index 7bb00b501..dd52cc734 100644 --- a/src/components/Googleearth.tsx +++ b/src/components/Googleearth.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogleearthProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogleearthProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googleearth = React.forwardRef(function Googleearth({color = 'currentColor', size = 24, title = "googleearth", ...others}, ref) { - const Googleearth = React.forwardRef(function Googleearth({color = 'currentColor', size = 24, title = "googleearth", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googleearth - \ No newline at end of file +export default Googleearth; diff --git a/src/components/Googlefit.tsx b/src/components/Googlefit.tsx index d9a0279fb..aa6c92a06 100644 --- a/src/components/Googlefit.tsx +++ b/src/components/Googlefit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglefitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglefitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlefit = React.forwardRef(function Googlefit({color = 'currentColor', size = 24, title = "googlefit", ...others}, ref) { - const Googlefit = React.forwardRef(function Googlefit({color = 'currentColor', size = 24, title = "googlefit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlefit - \ No newline at end of file +export default Googlefit; diff --git a/src/components/Googlefonts.tsx b/src/components/Googlefonts.tsx index 010bdb8f1..3cb58a492 100644 --- a/src/components/Googlefonts.tsx +++ b/src/components/Googlefonts.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglefontsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglefontsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlefonts = React.forwardRef(function Googlefonts({color = 'currentColor', size = 24, title = "googlefonts", ...others}, ref) { - const Googlefonts = React.forwardRef(function Googlefonts({color = 'currentColor', size = 24, title = "googlefonts", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlefonts - \ No newline at end of file +export default Googlefonts; diff --git a/src/components/Googlehangouts.tsx b/src/components/Googlehangouts.tsx index d671b920d..de47a758d 100644 --- a/src/components/Googlehangouts.tsx +++ b/src/components/Googlehangouts.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglehangoutsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglehangoutsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlehangouts = React.forwardRef(function Googlehangouts({color = 'currentColor', size = 24, title = "googlehangouts", ...others}, ref) { - const Googlehangouts = React.forwardRef(function Googlehangouts({color = 'currentColor', size = 24, title = "googlehangouts", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlehangouts - \ No newline at end of file +export default Googlehangouts; diff --git a/src/components/Googlehome.tsx b/src/components/Googlehome.tsx new file mode 100644 index 000000000..f7beba130 --- /dev/null +++ b/src/components/Googlehome.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type GooglehomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Googlehome = React.forwardRef(function Googlehome({color = 'currentColor', size = 24, title = "googlehome", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Googlehome; diff --git a/src/components/Googlekeep.tsx b/src/components/Googlekeep.tsx index c71459a7f..c2d06caa6 100644 --- a/src/components/Googlekeep.tsx +++ b/src/components/Googlekeep.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglekeepProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglekeepProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlekeep = React.forwardRef(function Googlekeep({color = 'currentColor', size = 24, title = "googlekeep", ...others}, ref) { - const Googlekeep = React.forwardRef(function Googlekeep({color = 'currentColor', size = 24, title = "googlekeep", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlekeep - \ No newline at end of file +export default Googlekeep; diff --git a/src/components/Googlelens.tsx b/src/components/Googlelens.tsx index d20016d4f..ba7efb5ef 100644 --- a/src/components/Googlelens.tsx +++ b/src/components/Googlelens.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglelensProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglelensProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlelens = React.forwardRef(function Googlelens({color = 'currentColor', size = 24, title = "googlelens", ...others}, ref) { - const Googlelens = React.forwardRef(function Googlelens({color = 'currentColor', size = 24, title = "googlelens", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlelens - \ No newline at end of file +export default Googlelens; diff --git a/src/components/Googlemaps.tsx b/src/components/Googlemaps.tsx index 1cb3fc476..4ea5af61e 100644 --- a/src/components/Googlemaps.tsx +++ b/src/components/Googlemaps.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglemapsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglemapsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlemaps = React.forwardRef(function Googlemaps({color = 'currentColor', size = 24, title = "googlemaps", ...others}, ref) { - const Googlemaps = React.forwardRef(function Googlemaps({color = 'currentColor', size = 24, title = "googlemaps", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlemaps - \ No newline at end of file +export default Googlemaps; diff --git a/src/components/Googlemarketingplatform.tsx b/src/components/Googlemarketingplatform.tsx index 784c71cfc..e66beb714 100644 --- a/src/components/Googlemarketingplatform.tsx +++ b/src/components/Googlemarketingplatform.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglemarketingplatformProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglemarketingplatformProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlemarketingplatform = React.forwardRef(function Googlemarketingplatform({color = 'currentColor', size = 24, title = "googlemarketingplatform", ...others}, ref) { - const Googlemarketingplatform = React.forwardRef(function Googlemarketingplatform({color = 'currentColor', size = 24, title = "googlemarketingplatform", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlemarketingplatform - \ No newline at end of file +export default Googlemarketingplatform; diff --git a/src/components/Googlemeet.tsx b/src/components/Googlemeet.tsx index ac303c9ad..d96b2e785 100644 --- a/src/components/Googlemeet.tsx +++ b/src/components/Googlemeet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglemeetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglemeetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlemeet = React.forwardRef(function Googlemeet({color = 'currentColor', size = 24, title = "googlemeet", ...others}, ref) { - const Googlemeet = React.forwardRef(function Googlemeet({color = 'currentColor', size = 24, title = "googlemeet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlemeet - \ No newline at end of file +export default Googlemeet; diff --git a/src/components/Googlemessages.tsx b/src/components/Googlemessages.tsx index 5c2a7ad2b..01bc0c003 100644 --- a/src/components/Googlemessages.tsx +++ b/src/components/Googlemessages.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglemessagesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglemessagesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlemessages = React.forwardRef(function Googlemessages({color = 'currentColor', size = 24, title = "googlemessages", ...others}, ref) { - const Googlemessages = React.forwardRef(function Googlemessages({color = 'currentColor', size = 24, title = "googlemessages", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlemessages - \ No newline at end of file +export default Googlemessages; diff --git a/src/components/Googlemybusiness.tsx b/src/components/Googlemybusiness.tsx index a2e077a7a..371d282d4 100644 --- a/src/components/Googlemybusiness.tsx +++ b/src/components/Googlemybusiness.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglemybusinessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglemybusinessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlemybusiness = React.forwardRef(function Googlemybusiness({color = 'currentColor', size = 24, title = "googlemybusiness", ...others}, ref) { - const Googlemybusiness = React.forwardRef(function Googlemybusiness({color = 'currentColor', size = 24, title = "googlemybusiness", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlemybusiness - \ No newline at end of file +export default Googlemybusiness; diff --git a/src/components/Googlenearby.tsx b/src/components/Googlenearby.tsx index 2cbfca2f0..0fb6d9742 100644 --- a/src/components/Googlenearby.tsx +++ b/src/components/Googlenearby.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglenearbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglenearbyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlenearby = React.forwardRef(function Googlenearby({color = 'currentColor', size = 24, title = "googlenearby", ...others}, ref) { - const Googlenearby = React.forwardRef(function Googlenearby({color = 'currentColor', size = 24, title = "googlenearby", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlenearby - \ No newline at end of file +export default Googlenearby; diff --git a/src/components/Googlenews.tsx b/src/components/Googlenews.tsx index 781426ca4..c37b75b9a 100644 --- a/src/components/Googlenews.tsx +++ b/src/components/Googlenews.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglenewsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglenewsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlenews = React.forwardRef(function Googlenews({color = 'currentColor', size = 24, title = "googlenews", ...others}, ref) { - const Googlenews = React.forwardRef(function Googlenews({color = 'currentColor', size = 24, title = "googlenews", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlenews - \ No newline at end of file +export default Googlenews; diff --git a/src/components/Googleoptimize.tsx b/src/components/Googleoptimize.tsx index 4f2eae7a8..84127ab5a 100644 --- a/src/components/Googleoptimize.tsx +++ b/src/components/Googleoptimize.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogleoptimizeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogleoptimizeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googleoptimize = React.forwardRef(function Googleoptimize({color = 'currentColor', size = 24, title = "googleoptimize", ...others}, ref) { - const Googleoptimize = React.forwardRef(function Googleoptimize({color = 'currentColor', size = 24, title = "googleoptimize", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googleoptimize - \ No newline at end of file +export default Googleoptimize; diff --git a/src/components/Googlepay.tsx b/src/components/Googlepay.tsx index 8e08fed33..094203540 100644 --- a/src/components/Googlepay.tsx +++ b/src/components/Googlepay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglepayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglepayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlepay = React.forwardRef(function Googlepay({color = 'currentColor', size = 24, title = "googlepay", ...others}, ref) { - const Googlepay = React.forwardRef(function Googlepay({color = 'currentColor', size = 24, title = "googlepay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlepay - \ No newline at end of file +export default Googlepay; diff --git a/src/components/Googlephotos.tsx b/src/components/Googlephotos.tsx index faa8e1b3e..abd6453f8 100644 --- a/src/components/Googlephotos.tsx +++ b/src/components/Googlephotos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglephotosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglephotosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlephotos = React.forwardRef(function Googlephotos({color = 'currentColor', size = 24, title = "googlephotos", ...others}, ref) { - const Googlephotos = React.forwardRef(function Googlephotos({color = 'currentColor', size = 24, title = "googlephotos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlephotos - \ No newline at end of file +export default Googlephotos; diff --git a/src/components/Googleplay.tsx b/src/components/Googleplay.tsx index fb0cd880a..dcd9ae47d 100644 --- a/src/components/Googleplay.tsx +++ b/src/components/Googleplay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogleplayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogleplayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googleplay = React.forwardRef(function Googleplay({color = 'currentColor', size = 24, title = "googleplay", ...others}, ref) { - const Googleplay = React.forwardRef(function Googleplay({color = 'currentColor', size = 24, title = "googleplay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googleplay - \ No newline at end of file +export default Googleplay; diff --git a/src/components/Googlepodcasts.tsx b/src/components/Googlepodcasts.tsx index 298d0172c..94ef63747 100644 --- a/src/components/Googlepodcasts.tsx +++ b/src/components/Googlepodcasts.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglepodcastsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglepodcastsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlepodcasts = React.forwardRef(function Googlepodcasts({color = 'currentColor', size = 24, title = "googlepodcasts", ...others}, ref) { - const Googlepodcasts = React.forwardRef(function Googlepodcasts({color = 'currentColor', size = 24, title = "googlepodcasts", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlepodcasts - \ No newline at end of file +export default Googlepodcasts; diff --git a/src/components/Googlescholar.tsx b/src/components/Googlescholar.tsx index 374e0a614..fdeab124b 100644 --- a/src/components/Googlescholar.tsx +++ b/src/components/Googlescholar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglescholarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglescholarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlescholar = React.forwardRef(function Googlescholar({color = 'currentColor', size = 24, title = "googlescholar", ...others}, ref) { - const Googlescholar = React.forwardRef(function Googlescholar({color = 'currentColor', size = 24, title = "googlescholar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlescholar - \ No newline at end of file +export default Googlescholar; diff --git a/src/components/Googlesearchconsole.tsx b/src/components/Googlesearchconsole.tsx index 177cd5203..6db7b5e4c 100644 --- a/src/components/Googlesearchconsole.tsx +++ b/src/components/Googlesearchconsole.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglesearchconsoleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglesearchconsoleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlesearchconsole = React.forwardRef(function Googlesearchconsole({color = 'currentColor', size = 24, title = "googlesearchconsole", ...others}, ref) { - const Googlesearchconsole = React.forwardRef(function Googlesearchconsole({color = 'currentColor', size = 24, title = "googlesearchconsole", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlesearchconsole - \ No newline at end of file +export default Googlesearchconsole; diff --git a/src/components/Googlesheets.tsx b/src/components/Googlesheets.tsx index 4fafeb748..d13214172 100644 --- a/src/components/Googlesheets.tsx +++ b/src/components/Googlesheets.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglesheetsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglesheetsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlesheets = React.forwardRef(function Googlesheets({color = 'currentColor', size = 24, title = "googlesheets", ...others}, ref) { - const Googlesheets = React.forwardRef(function Googlesheets({color = 'currentColor', size = 24, title = "googlesheets", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlesheets - \ No newline at end of file +export default Googlesheets; diff --git a/src/components/Googlestreetview.tsx b/src/components/Googlestreetview.tsx index b99368a2a..171ad15c4 100644 --- a/src/components/Googlestreetview.tsx +++ b/src/components/Googlestreetview.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GooglestreetviewProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GooglestreetviewProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googlestreetview = React.forwardRef(function Googlestreetview({color = 'currentColor', size = 24, title = "googlestreetview", ...others}, ref) { - const Googlestreetview = React.forwardRef(function Googlestreetview({color = 'currentColor', size = 24, title = "googlestreetview", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googlestreetview - \ No newline at end of file +export default Googlestreetview; diff --git a/src/components/Googletagmanager.tsx b/src/components/Googletagmanager.tsx index 51196575b..c2f507bed 100644 --- a/src/components/Googletagmanager.tsx +++ b/src/components/Googletagmanager.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogletagmanagerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogletagmanagerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googletagmanager = React.forwardRef(function Googletagmanager({color = 'currentColor', size = 24, title = "googletagmanager", ...others}, ref) { - const Googletagmanager = React.forwardRef(function Googletagmanager({color = 'currentColor', size = 24, title = "googletagmanager", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googletagmanager - \ No newline at end of file +export default Googletagmanager; diff --git a/src/components/Googletranslate.tsx b/src/components/Googletranslate.tsx index 308baff43..977516e49 100644 --- a/src/components/Googletranslate.tsx +++ b/src/components/Googletranslate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GoogletranslateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GoogletranslateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Googletranslate = React.forwardRef(function Googletranslate({color = 'currentColor', size = 24, title = "googletranslate", ...others}, ref) { - const Googletranslate = React.forwardRef(function Googletranslate({color = 'currentColor', size = 24, title = "googletranslate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Googletranslate - \ No newline at end of file +export default Googletranslate; diff --git a/src/components/Gotomeeting.tsx b/src/components/Gotomeeting.tsx index caffc7956..70d885520 100644 --- a/src/components/Gotomeeting.tsx +++ b/src/components/Gotomeeting.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GotomeetingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GotomeetingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gotomeeting = React.forwardRef(function Gotomeeting({color = 'currentColor', size = 24, title = "gotomeeting", ...others}, ref) { - const Gotomeeting = React.forwardRef(function Gotomeeting({color = 'currentColor', size = 24, title = "gotomeeting", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gotomeeting - \ No newline at end of file +export default Gotomeeting; diff --git a/src/components/Grab.tsx b/src/components/Grab.tsx index 51ce1a4e5..023bff667 100644 --- a/src/components/Grab.tsx +++ b/src/components/Grab.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GrabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GrabProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Grab = React.forwardRef(function Grab({color = 'currentColor', size = 24, title = "grab", ...others}, ref) { - const Grab = React.forwardRef(function Grab({color = 'currentColor', size = 24, title = "grab", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Grab - \ No newline at end of file +export default Grab; diff --git a/src/components/Gradle.tsx b/src/components/Gradle.tsx index ba3e15855..287de7afd 100644 --- a/src/components/Gradle.tsx +++ b/src/components/Gradle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GradleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GradleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gradle = React.forwardRef(function Gradle({color = 'currentColor', size = 24, title = "gradle", ...others}, ref) { - const Gradle = React.forwardRef(function Gradle({color = 'currentColor', size = 24, title = "gradle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gradle - \ No newline at end of file +export default Gradle; diff --git a/src/components/Grafana.tsx b/src/components/Grafana.tsx index 5533cb923..e98589453 100644 --- a/src/components/Grafana.tsx +++ b/src/components/Grafana.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GrafanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GrafanaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Grafana = React.forwardRef(function Grafana({color = 'currentColor', size = 24, title = "grafana", ...others}, ref) { - const Grafana = React.forwardRef(function Grafana({color = 'currentColor', size = 24, title = "grafana", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Grafana - \ No newline at end of file +export default Grafana; diff --git a/src/components/Grammarly.tsx b/src/components/Grammarly.tsx index 7c093f14a..442966d0d 100644 --- a/src/components/Grammarly.tsx +++ b/src/components/Grammarly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GrammarlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GrammarlyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Grammarly = React.forwardRef(function Grammarly({color = 'currentColor', size = 24, title = "grammarly", ...others}, ref) { - const Grammarly = React.forwardRef(function Grammarly({color = 'currentColor', size = 24, title = "grammarly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Grammarly - \ No newline at end of file +export default Grammarly; diff --git a/src/components/Grandfrais.tsx b/src/components/Grandfrais.tsx index e77945857..5e1b7ab52 100644 --- a/src/components/Grandfrais.tsx +++ b/src/components/Grandfrais.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GrandfraisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GrandfraisProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Grandfrais = React.forwardRef(function Grandfrais({color = 'currentColor', size = 24, title = "grandfrais", ...others}, ref) { - const Grandfrais = React.forwardRef(function Grandfrais({color = 'currentColor', size = 24, title = "grandfrais", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Grandfrais - \ No newline at end of file +export default Grandfrais; diff --git a/src/components/Graphql.tsx b/src/components/Graphql.tsx index 23a8632e1..6709d0869 100644 --- a/src/components/Graphql.tsx +++ b/src/components/Graphql.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GraphqlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GraphqlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Graphql = React.forwardRef(function Graphql({color = 'currentColor', size = 24, title = "graphql", ...others}, ref) { - const Graphql = React.forwardRef(function Graphql({color = 'currentColor', size = 24, title = "graphql", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Graphql - \ No newline at end of file +export default Graphql; diff --git a/src/components/Grav.tsx b/src/components/Grav.tsx index cf9f76fa3..7105ad5d5 100644 --- a/src/components/Grav.tsx +++ b/src/components/Grav.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GravProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GravProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Grav = React.forwardRef(function Grav({color = 'currentColor', size = 24, title = "grav", ...others}, ref) { - const Grav = React.forwardRef(function Grav({color = 'currentColor', size = 24, title = "grav", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Grav - \ No newline at end of file +export default Grav; diff --git a/src/components/Gravatar.tsx b/src/components/Gravatar.tsx index 180091cac..cffc28553 100644 --- a/src/components/Gravatar.tsx +++ b/src/components/Gravatar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GravatarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GravatarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gravatar = React.forwardRef(function Gravatar({color = 'currentColor', size = 24, title = "gravatar", ...others}, ref) { - const Gravatar = React.forwardRef(function Gravatar({color = 'currentColor', size = 24, title = "gravatar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gravatar - \ No newline at end of file +export default Gravatar; diff --git a/src/components/Graylog.tsx b/src/components/Graylog.tsx index 1f3c27c52..761d1999e 100644 --- a/src/components/Graylog.tsx +++ b/src/components/Graylog.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GraylogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GraylogProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Graylog = React.forwardRef(function Graylog({color = 'currentColor', size = 24, title = "graylog", ...others}, ref) { - const Graylog = React.forwardRef(function Graylog({color = 'currentColor', size = 24, title = "graylog", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Graylog - \ No newline at end of file +export default Graylog; diff --git a/src/components/Greensock.tsx b/src/components/Greensock.tsx index c0fa7e1d2..33fd3b735 100644 --- a/src/components/Greensock.tsx +++ b/src/components/Greensock.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GreensockProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GreensockProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Greensock = React.forwardRef(function Greensock({color = 'currentColor', size = 24, title = "greensock", ...others}, ref) { - const Greensock = React.forwardRef(function Greensock({color = 'currentColor', size = 24, title = "greensock", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Greensock - \ No newline at end of file +export default Greensock; diff --git a/src/components/Griddotai.tsx b/src/components/Griddotai.tsx index db4efda9c..24f320bea 100644 --- a/src/components/Griddotai.tsx +++ b/src/components/Griddotai.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GriddotaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GriddotaiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Griddotai = React.forwardRef(function Griddotai({color = 'currentColor', size = 24, title = "griddotai", ...others}, ref) { - const Griddotai = React.forwardRef(function Griddotai({color = 'currentColor', size = 24, title = "griddotai", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Griddotai - \ No newline at end of file +export default Griddotai; diff --git a/src/components/Gridsome.tsx b/src/components/Gridsome.tsx index 5a89efa39..761629146 100644 --- a/src/components/Gridsome.tsx +++ b/src/components/Gridsome.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GridsomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GridsomeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gridsome = React.forwardRef(function Gridsome({color = 'currentColor', size = 24, title = "gridsome", ...others}, ref) { - const Gridsome = React.forwardRef(function Gridsome({color = 'currentColor', size = 24, title = "gridsome", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gridsome - \ No newline at end of file +export default Gridsome; diff --git a/src/components/Groupme.tsx b/src/components/Groupme.tsx index ca52c3ed1..beb3f2965 100644 --- a/src/components/Groupme.tsx +++ b/src/components/Groupme.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GroupmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GroupmeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Groupme = React.forwardRef(function Groupme({color = 'currentColor', size = 24, title = "groupme", ...others}, ref) { - const Groupme = React.forwardRef(function Groupme({color = 'currentColor', size = 24, title = "groupme", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Groupme - \ No newline at end of file +export default Groupme; diff --git a/src/components/Groupon.tsx b/src/components/Groupon.tsx index a4ff97c41..4b1edeec2 100644 --- a/src/components/Groupon.tsx +++ b/src/components/Groupon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GrouponProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GrouponProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Groupon = React.forwardRef(function Groupon({color = 'currentColor', size = 24, title = "groupon", ...others}, ref) { - const Groupon = React.forwardRef(function Groupon({color = 'currentColor', size = 24, title = "groupon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Groupon - \ No newline at end of file +export default Groupon; diff --git a/src/components/Grubhub.tsx b/src/components/Grubhub.tsx index 9a97e8b80..b09499446 100644 --- a/src/components/Grubhub.tsx +++ b/src/components/Grubhub.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GrubhubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GrubhubProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Grubhub = React.forwardRef(function Grubhub({color = 'currentColor', size = 24, title = "grubhub", ...others}, ref) { - const Grubhub = React.forwardRef(function Grubhub({color = 'currentColor', size = 24, title = "grubhub", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Grubhub - \ No newline at end of file +export default Grubhub; diff --git a/src/components/Grunt.tsx b/src/components/Grunt.tsx index b5a4d7326..679741a3f 100644 --- a/src/components/Grunt.tsx +++ b/src/components/Grunt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GruntProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GruntProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Grunt = React.forwardRef(function Grunt({color = 'currentColor', size = 24, title = "grunt", ...others}, ref) { - const Grunt = React.forwardRef(function Grunt({color = 'currentColor', size = 24, title = "grunt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Grunt - \ No newline at end of file +export default Grunt; diff --git a/src/components/Gtk.tsx b/src/components/Gtk.tsx index 4dd8c3bba..71a915b7d 100644 --- a/src/components/Gtk.tsx +++ b/src/components/Gtk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GtkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GtkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gtk = React.forwardRef(function Gtk({color = 'currentColor', size = 24, title = "gtk", ...others}, ref) { - const Gtk = React.forwardRef(function Gtk({color = 'currentColor', size = 24, title = "gtk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gtk - \ No newline at end of file +export default Gtk; diff --git a/src/components/Guangzhoumetro.tsx b/src/components/Guangzhoumetro.tsx index ef49d1c88..a557d1522 100644 --- a/src/components/Guangzhoumetro.tsx +++ b/src/components/Guangzhoumetro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GuangzhoumetroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GuangzhoumetroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Guangzhoumetro = React.forwardRef(function Guangzhoumetro({color = 'currentColor', size = 24, title = "guangzhoumetro", ...others}, ref) { - const Guangzhoumetro = React.forwardRef(function Guangzhoumetro({color = 'currentColor', size = 24, title = "guangzhoumetro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Guangzhoumetro - \ No newline at end of file +export default Guangzhoumetro; diff --git a/src/components/Guilded.tsx b/src/components/Guilded.tsx index fbbaff931..dd05af0b3 100644 --- a/src/components/Guilded.tsx +++ b/src/components/Guilded.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GuildedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GuildedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Guilded = React.forwardRef(function Guilded({color = 'currentColor', size = 24, title = "guilded", ...others}, ref) { - const Guilded = React.forwardRef(function Guilded({color = 'currentColor', size = 24, title = "guilded", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Guilded - \ No newline at end of file +export default Guilded; diff --git a/src/components/Gulp.tsx b/src/components/Gulp.tsx index e3d63b94a..906e7a988 100644 --- a/src/components/Gulp.tsx +++ b/src/components/Gulp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GulpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GulpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gulp = React.forwardRef(function Gulp({color = 'currentColor', size = 24, title = "gulp", ...others}, ref) { - const Gulp = React.forwardRef(function Gulp({color = 'currentColor', size = 24, title = "gulp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gulp - \ No newline at end of file +export default Gulp; diff --git a/src/components/Gumroad.tsx b/src/components/Gumroad.tsx index 7ed07fdb3..a10e2b864 100644 --- a/src/components/Gumroad.tsx +++ b/src/components/Gumroad.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GumroadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GumroadProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gumroad = React.forwardRef(function Gumroad({color = 'currentColor', size = 24, title = "gumroad", ...others}, ref) { - const Gumroad = React.forwardRef(function Gumroad({color = 'currentColor', size = 24, title = "gumroad", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gumroad - \ No newline at end of file +export default Gumroad; diff --git a/src/components/Gumtree.tsx b/src/components/Gumtree.tsx index 2f3ea7419..cc24e0ce9 100644 --- a/src/components/Gumtree.tsx +++ b/src/components/Gumtree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GumtreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GumtreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gumtree = React.forwardRef(function Gumtree({color = 'currentColor', size = 24, title = "gumtree", ...others}, ref) { - const Gumtree = React.forwardRef(function Gumtree({color = 'currentColor', size = 24, title = "gumtree", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gumtree - \ No newline at end of file +export default Gumtree; diff --git a/src/components/Gunicorn.tsx b/src/components/Gunicorn.tsx index 1739beb6e..7944ba3ee 100644 --- a/src/components/Gunicorn.tsx +++ b/src/components/Gunicorn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GunicornProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GunicornProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gunicorn = React.forwardRef(function Gunicorn({color = 'currentColor', size = 24, title = "gunicorn", ...others}, ref) { - const Gunicorn = React.forwardRef(function Gunicorn({color = 'currentColor', size = 24, title = "gunicorn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gunicorn - \ No newline at end of file +export default Gunicorn; diff --git a/src/components/Gurobi.tsx b/src/components/Gurobi.tsx index 15b5285d2..1efc14b15 100644 --- a/src/components/Gurobi.tsx +++ b/src/components/Gurobi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GurobiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GurobiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gurobi = React.forwardRef(function Gurobi({color = 'currentColor', size = 24, title = "gurobi", ...others}, ref) { - const Gurobi = React.forwardRef(function Gurobi({color = 'currentColor', size = 24, title = "gurobi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gurobi - \ No newline at end of file +export default Gurobi; diff --git a/src/components/Gutenberg.tsx b/src/components/Gutenberg.tsx index 43786a262..003770dbf 100644 --- a/src/components/Gutenberg.tsx +++ b/src/components/Gutenberg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type GutenbergProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type GutenbergProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Gutenberg = React.forwardRef(function Gutenberg({color = 'currentColor', size = 24, title = "gutenberg", ...others}, ref) { - const Gutenberg = React.forwardRef(function Gutenberg({color = 'currentColor', size = 24, title = "gutenberg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Gutenberg - \ No newline at end of file +export default Gutenberg; diff --git a/src/components/Habr.tsx b/src/components/Habr.tsx index baf734501..8389557d9 100644 --- a/src/components/Habr.tsx +++ b/src/components/Habr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HabrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HabrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Habr = React.forwardRef(function Habr({color = 'currentColor', size = 24, title = "habr", ...others}, ref) { - const Habr = React.forwardRef(function Habr({color = 'currentColor', size = 24, title = "habr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Habr - \ No newline at end of file +export default Habr; diff --git a/src/components/Hackaday.tsx b/src/components/Hackaday.tsx index 00a3fa9e3..033608a83 100644 --- a/src/components/Hackaday.tsx +++ b/src/components/Hackaday.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HackadayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HackadayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hackaday = React.forwardRef(function Hackaday({color = 'currentColor', size = 24, title = "hackaday", ...others}, ref) { - const Hackaday = React.forwardRef(function Hackaday({color = 'currentColor', size = 24, title = "hackaday", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hackaday - \ No newline at end of file +export default Hackaday; diff --git a/src/components/Hackclub.tsx b/src/components/Hackclub.tsx index ff899aba9..0536e0de6 100644 --- a/src/components/Hackclub.tsx +++ b/src/components/Hackclub.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HackclubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HackclubProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hackclub = React.forwardRef(function Hackclub({color = 'currentColor', size = 24, title = "hackclub", ...others}, ref) { - const Hackclub = React.forwardRef(function Hackclub({color = 'currentColor', size = 24, title = "hackclub", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hackclub - \ No newline at end of file +export default Hackclub; diff --git a/src/components/Hackerearth.tsx b/src/components/Hackerearth.tsx index 5bf5a18ca..5ae6f001a 100644 --- a/src/components/Hackerearth.tsx +++ b/src/components/Hackerearth.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HackerearthProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HackerearthProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hackerearth = React.forwardRef(function Hackerearth({color = 'currentColor', size = 24, title = "hackerearth", ...others}, ref) { - const Hackerearth = React.forwardRef(function Hackerearth({color = 'currentColor', size = 24, title = "hackerearth", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hackerearth - \ No newline at end of file +export default Hackerearth; diff --git a/src/components/Hackernoon.tsx b/src/components/Hackernoon.tsx index c18b2e6f3..33a1e0842 100644 --- a/src/components/Hackernoon.tsx +++ b/src/components/Hackernoon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HackernoonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HackernoonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hackernoon = React.forwardRef(function Hackernoon({color = 'currentColor', size = 24, title = "hackernoon", ...others}, ref) { - const Hackernoon = React.forwardRef(function Hackernoon({color = 'currentColor', size = 24, title = "hackernoon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hackernoon - \ No newline at end of file +export default Hackernoon; diff --git a/src/components/Hackerone.tsx b/src/components/Hackerone.tsx index 5c78a5bb7..74d8afabb 100644 --- a/src/components/Hackerone.tsx +++ b/src/components/Hackerone.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HackeroneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HackeroneProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hackerone = React.forwardRef(function Hackerone({color = 'currentColor', size = 24, title = "hackerone", ...others}, ref) { - const Hackerone = React.forwardRef(function Hackerone({color = 'currentColor', size = 24, title = "hackerone", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hackerone - \ No newline at end of file +export default Hackerone; diff --git a/src/components/Hackerrank.tsx b/src/components/Hackerrank.tsx index 1c095d022..50361856a 100644 --- a/src/components/Hackerrank.tsx +++ b/src/components/Hackerrank.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HackerrankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HackerrankProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hackerrank = React.forwardRef(function Hackerrank({color = 'currentColor', size = 24, title = "hackerrank", ...others}, ref) { - const Hackerrank = React.forwardRef(function Hackerrank({color = 'currentColor', size = 24, title = "hackerrank", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hackerrank - \ No newline at end of file +export default Hackerrank; diff --git a/src/components/Hackster.tsx b/src/components/Hackster.tsx index 99253618a..07ed54363 100644 --- a/src/components/Hackster.tsx +++ b/src/components/Hackster.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HacksterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HacksterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hackster = React.forwardRef(function Hackster({color = 'currentColor', size = 24, title = "hackster", ...others}, ref) { - const Hackster = React.forwardRef(function Hackster({color = 'currentColor', size = 24, title = "hackster", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hackster - \ No newline at end of file +export default Hackster; diff --git a/src/components/Hackthebox.tsx b/src/components/Hackthebox.tsx index 9c27bc5d3..0efaffbab 100644 --- a/src/components/Hackthebox.tsx +++ b/src/components/Hackthebox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HacktheboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HacktheboxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hackthebox = React.forwardRef(function Hackthebox({color = 'currentColor', size = 24, title = "hackthebox", ...others}, ref) { - const Hackthebox = React.forwardRef(function Hackthebox({color = 'currentColor', size = 24, title = "hackthebox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hackthebox - \ No newline at end of file +export default Hackthebox; diff --git a/src/components/Handlebarsdotjs.tsx b/src/components/Handlebarsdotjs.tsx index c64a859a4..6e7beccbd 100644 --- a/src/components/Handlebarsdotjs.tsx +++ b/src/components/Handlebarsdotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HandlebarsdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HandlebarsdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Handlebarsdotjs = React.forwardRef(function Handlebarsdotjs({color = 'currentColor', size = 24, title = "handlebarsdotjs", ...others}, ref) { - const Handlebarsdotjs = React.forwardRef(function Handlebarsdotjs({color = 'currentColor', size = 24, title = "handlebarsdotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Handlebarsdotjs - \ No newline at end of file +export default Handlebarsdotjs; diff --git a/src/components/Handshake.tsx b/src/components/Handshake.tsx index c8035b1e7..9bc9daee4 100644 --- a/src/components/Handshake.tsx +++ b/src/components/Handshake.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HandshakeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HandshakeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Handshake = React.forwardRef(function Handshake({color = 'currentColor', size = 24, title = "handshake", ...others}, ref) { - const Handshake = React.forwardRef(function Handshake({color = 'currentColor', size = 24, title = "handshake", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Handshake - \ No newline at end of file +export default Handshake; diff --git a/src/components/HandshakeProtocol.tsx b/src/components/HandshakeProtocol.tsx index baaa65ad9..15934704d 100644 --- a/src/components/HandshakeProtocol.tsx +++ b/src/components/HandshakeProtocol.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HandshakeProtocolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HandshakeProtocolProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const HandshakeProtocol = React.forwardRef(function HandshakeProtocol({color = 'currentColor', size = 24, title = "handshake_protocol", ...others}, ref) { - const HandshakeProtocol = React.forwardRef(function HandshakeProtocol({color = 'currentColor', size = 24, title = "handshake_protocol", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default HandshakeProtocol - \ No newline at end of file +export default HandshakeProtocol; diff --git a/src/components/Happycow.tsx b/src/components/Happycow.tsx index 72ebef7e4..1d0757c57 100644 --- a/src/components/Happycow.tsx +++ b/src/components/Happycow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HappycowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HappycowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Happycow = React.forwardRef(function Happycow({color = 'currentColor', size = 24, title = "happycow", ...others}, ref) { - const Happycow = React.forwardRef(function Happycow({color = 'currentColor', size = 24, title = "happycow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Happycow - \ No newline at end of file +export default Happycow; diff --git a/src/components/Harbor.tsx b/src/components/Harbor.tsx index 14cc0bc36..d0bb2446f 100644 --- a/src/components/Harbor.tsx +++ b/src/components/Harbor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HarborProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HarborProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Harbor = React.forwardRef(function Harbor({color = 'currentColor', size = 24, title = "harbor", ...others}, ref) { - const Harbor = React.forwardRef(function Harbor({color = 'currentColor', size = 24, title = "harbor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Harbor - \ No newline at end of file +export default Harbor; diff --git a/src/components/Harmonyos.tsx b/src/components/Harmonyos.tsx index 2ccd70893..1f74e54b2 100644 --- a/src/components/Harmonyos.tsx +++ b/src/components/Harmonyos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HarmonyosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HarmonyosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Harmonyos = React.forwardRef(function Harmonyos({color = 'currentColor', size = 24, title = "harmonyos", ...others}, ref) { - const Harmonyos = React.forwardRef(function Harmonyos({color = 'currentColor', size = 24, title = "harmonyos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Harmonyos - \ No newline at end of file +export default Harmonyos; diff --git a/src/components/Hashnode.tsx b/src/components/Hashnode.tsx index c932f6aa2..f0d603689 100644 --- a/src/components/Hashnode.tsx +++ b/src/components/Hashnode.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HashnodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HashnodeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hashnode = React.forwardRef(function Hashnode({color = 'currentColor', size = 24, title = "hashnode", ...others}, ref) { - const Hashnode = React.forwardRef(function Hashnode({color = 'currentColor', size = 24, title = "hashnode", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hashnode - \ No newline at end of file +export default Hashnode; diff --git a/src/components/Haskell.tsx b/src/components/Haskell.tsx index 462b789d2..c98e6c7a8 100644 --- a/src/components/Haskell.tsx +++ b/src/components/Haskell.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HaskellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HaskellProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Haskell = React.forwardRef(function Haskell({color = 'currentColor', size = 24, title = "haskell", ...others}, ref) { - const Haskell = React.forwardRef(function Haskell({color = 'currentColor', size = 24, title = "haskell", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Haskell - \ No newline at end of file +export default Haskell; diff --git a/src/components/Hasura.tsx b/src/components/Hasura.tsx index e83b91748..c34cac71c 100644 --- a/src/components/Hasura.tsx +++ b/src/components/Hasura.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HasuraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HasuraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hasura = React.forwardRef(function Hasura({color = 'currentColor', size = 24, title = "hasura", ...others}, ref) { - const Hasura = React.forwardRef(function Hasura({color = 'currentColor', size = 24, title = "hasura", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hasura - \ No newline at end of file +export default Hasura; diff --git a/src/components/Hatenabookmark.tsx b/src/components/Hatenabookmark.tsx index 0ba328d02..33e87d95c 100644 --- a/src/components/Hatenabookmark.tsx +++ b/src/components/Hatenabookmark.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HatenabookmarkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HatenabookmarkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hatenabookmark = React.forwardRef(function Hatenabookmark({color = 'currentColor', size = 24, title = "hatenabookmark", ...others}, ref) { - const Hatenabookmark = React.forwardRef(function Hatenabookmark({color = 'currentColor', size = 24, title = "hatenabookmark", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hatenabookmark - \ No newline at end of file +export default Hatenabookmark; diff --git a/src/components/Haveibeenpwned.tsx b/src/components/Haveibeenpwned.tsx index 8714388a7..dc4a41e1c 100644 --- a/src/components/Haveibeenpwned.tsx +++ b/src/components/Haveibeenpwned.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HaveibeenpwnedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HaveibeenpwnedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Haveibeenpwned = React.forwardRef(function Haveibeenpwned({color = 'currentColor', size = 24, title = "haveibeenpwned", ...others}, ref) { - const Haveibeenpwned = React.forwardRef(function Haveibeenpwned({color = 'currentColor', size = 24, title = "haveibeenpwned", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Haveibeenpwned - \ No newline at end of file +export default Haveibeenpwned; diff --git a/src/components/Haxe.tsx b/src/components/Haxe.tsx index 404ef02de..b2557f97a 100644 --- a/src/components/Haxe.tsx +++ b/src/components/Haxe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HaxeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HaxeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Haxe = React.forwardRef(function Haxe({color = 'currentColor', size = 24, title = "haxe", ...others}, ref) { - const Haxe = React.forwardRef(function Haxe({color = 'currentColor', size = 24, title = "haxe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Haxe - \ No newline at end of file +export default Haxe; diff --git a/src/components/Hbo.tsx b/src/components/Hbo.tsx index 9c0b32fcb..ebca50d92 100644 --- a/src/components/Hbo.tsx +++ b/src/components/Hbo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HboProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HboProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hbo = React.forwardRef(function Hbo({color = 'currentColor', size = 24, title = "hbo", ...others}, ref) { - const Hbo = React.forwardRef(function Hbo({color = 'currentColor', size = 24, title = "hbo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hbo - \ No newline at end of file +export default Hbo; diff --git a/src/components/Hcl.tsx b/src/components/Hcl.tsx index 4f6be5273..c355d77f3 100644 --- a/src/components/Hcl.tsx +++ b/src/components/Hcl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HclProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HclProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hcl = React.forwardRef(function Hcl({color = 'currentColor', size = 24, title = "hcl", ...others}, ref) { - const Hcl = React.forwardRef(function Hcl({color = 'currentColor', size = 24, title = "hcl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hcl - \ No newline at end of file +export default Hcl; diff --git a/src/components/Headlessui.tsx b/src/components/Headlessui.tsx index dabf69396..b1317965c 100644 --- a/src/components/Headlessui.tsx +++ b/src/components/Headlessui.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HeadlessuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HeadlessuiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Headlessui = React.forwardRef(function Headlessui({color = 'currentColor', size = 24, title = "headlessui", ...others}, ref) { - const Headlessui = React.forwardRef(function Headlessui({color = 'currentColor', size = 24, title = "headlessui", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Headlessui - \ No newline at end of file +export default Headlessui; diff --git a/src/components/Headspace.tsx b/src/components/Headspace.tsx index 64755c570..ba1049226 100644 --- a/src/components/Headspace.tsx +++ b/src/components/Headspace.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HeadspaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HeadspaceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Headspace = React.forwardRef(function Headspace({color = 'currentColor', size = 24, title = "headspace", ...others}, ref) { - const Headspace = React.forwardRef(function Headspace({color = 'currentColor', size = 24, title = "headspace", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Headspace - \ No newline at end of file +export default Headspace; diff --git a/src/components/Hellofresh.tsx b/src/components/Hellofresh.tsx index 686c7d6e0..8fcc0c353 100644 --- a/src/components/Hellofresh.tsx +++ b/src/components/Hellofresh.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HellofreshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HellofreshProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hellofresh = React.forwardRef(function Hellofresh({color = 'currentColor', size = 24, title = "hellofresh", ...others}, ref) { - const Hellofresh = React.forwardRef(function Hellofresh({color = 'currentColor', size = 24, title = "hellofresh", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hellofresh - \ No newline at end of file +export default Hellofresh; diff --git a/src/components/Hellyhansen.tsx b/src/components/Hellyhansen.tsx index 306e4b147..934641df6 100644 --- a/src/components/Hellyhansen.tsx +++ b/src/components/Hellyhansen.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HellyhansenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HellyhansenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hellyhansen = React.forwardRef(function Hellyhansen({color = 'currentColor', size = 24, title = "hellyhansen", ...others}, ref) { - const Hellyhansen = React.forwardRef(function Hellyhansen({color = 'currentColor', size = 24, title = "hellyhansen", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hellyhansen - \ No newline at end of file +export default Hellyhansen; diff --git a/src/components/Helm.tsx b/src/components/Helm.tsx index 6953f5a9d..43bb6b659 100644 --- a/src/components/Helm.tsx +++ b/src/components/Helm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HelmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HelmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Helm = React.forwardRef(function Helm({color = 'currentColor', size = 24, title = "helm", ...others}, ref) { - const Helm = React.forwardRef(function Helm({color = 'currentColor', size = 24, title = "helm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Helm - \ No newline at end of file +export default Helm; diff --git a/src/components/Helpdesk.tsx b/src/components/Helpdesk.tsx index f0ba7c285..729e599e5 100644 --- a/src/components/Helpdesk.tsx +++ b/src/components/Helpdesk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HelpdeskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HelpdeskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Helpdesk = React.forwardRef(function Helpdesk({color = 'currentColor', size = 24, title = "helpdesk", ...others}, ref) { - const Helpdesk = React.forwardRef(function Helpdesk({color = 'currentColor', size = 24, title = "helpdesk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Helpdesk - \ No newline at end of file +export default Helpdesk; diff --git a/src/components/Helpscout.tsx b/src/components/Helpscout.tsx index 70030feca..e8310af25 100644 --- a/src/components/Helpscout.tsx +++ b/src/components/Helpscout.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HelpscoutProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HelpscoutProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Helpscout = React.forwardRef(function Helpscout({color = 'currentColor', size = 24, title = "helpscout", ...others}, ref) { - const Helpscout = React.forwardRef(function Helpscout({color = 'currentColor', size = 24, title = "helpscout", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Helpscout - \ No newline at end of file +export default Helpscout; diff --git a/src/components/Here.tsx b/src/components/Here.tsx index 492535ce6..8ea83b298 100644 --- a/src/components/Here.tsx +++ b/src/components/Here.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HereProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HereProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Here = React.forwardRef(function Here({color = 'currentColor', size = 24, title = "here", ...others}, ref) { - const Here = React.forwardRef(function Here({color = 'currentColor', size = 24, title = "here", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Here - \ No newline at end of file +export default Here; diff --git a/src/components/Heroku.tsx b/src/components/Heroku.tsx index dbd61e6a9..9f4f1efb3 100644 --- a/src/components/Heroku.tsx +++ b/src/components/Heroku.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HerokuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HerokuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Heroku = React.forwardRef(function Heroku({color = 'currentColor', size = 24, title = "heroku", ...others}, ref) { - const Heroku = React.forwardRef(function Heroku({color = 'currentColor', size = 24, title = "heroku", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Heroku - \ No newline at end of file +export default Heroku; diff --git a/src/components/Hetzner.tsx b/src/components/Hetzner.tsx index d03877b81..1f3987b03 100644 --- a/src/components/Hetzner.tsx +++ b/src/components/Hetzner.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HetznerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HetznerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hetzner = React.forwardRef(function Hetzner({color = 'currentColor', size = 24, title = "hetzner", ...others}, ref) { - const Hetzner = React.forwardRef(function Hetzner({color = 'currentColor', size = 24, title = "hetzner", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hetzner - \ No newline at end of file +export default Hetzner; diff --git a/src/components/Hexo.tsx b/src/components/Hexo.tsx index 027a226af..fc53f9703 100644 --- a/src/components/Hexo.tsx +++ b/src/components/Hexo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HexoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HexoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hexo = React.forwardRef(function Hexo({color = 'currentColor', size = 24, title = "hexo", ...others}, ref) { - const Hexo = React.forwardRef(function Hexo({color = 'currentColor', size = 24, title = "hexo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hexo - \ No newline at end of file +export default Hexo; diff --git a/src/components/Hey.tsx b/src/components/Hey.tsx index eaef3bb36..a5bd9a241 100644 --- a/src/components/Hey.tsx +++ b/src/components/Hey.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HeyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HeyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hey = React.forwardRef(function Hey({color = 'currentColor', size = 24, title = "hey", ...others}, ref) { - const Hey = React.forwardRef(function Hey({color = 'currentColor', size = 24, title = "hey", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hey - \ No newline at end of file +export default Hey; diff --git a/src/components/Hibernate.tsx b/src/components/Hibernate.tsx index 61ac9bc00..e945c536f 100644 --- a/src/components/Hibernate.tsx +++ b/src/components/Hibernate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HibernateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HibernateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hibernate = React.forwardRef(function Hibernate({color = 'currentColor', size = 24, title = "hibernate", ...others}, ref) { - const Hibernate = React.forwardRef(function Hibernate({color = 'currentColor', size = 24, title = "hibernate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hibernate - \ No newline at end of file +export default Hibernate; diff --git a/src/components/Hibob.tsx b/src/components/Hibob.tsx index 66367496d..d1afe9c00 100644 --- a/src/components/Hibob.tsx +++ b/src/components/Hibob.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HibobProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HibobProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hibob = React.forwardRef(function Hibob({color = 'currentColor', size = 24, title = "hibob", ...others}, ref) { - const Hibob = React.forwardRef(function Hibob({color = 'currentColor', size = 24, title = "hibob", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hibob - \ No newline at end of file +export default Hibob; diff --git a/src/components/Hilton.tsx b/src/components/Hilton.tsx index 5fbe7f114..ba047e584 100644 --- a/src/components/Hilton.tsx +++ b/src/components/Hilton.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HiltonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HiltonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hilton = React.forwardRef(function Hilton({color = 'currentColor', size = 24, title = "hilton", ...others}, ref) { - const Hilton = React.forwardRef(function Hilton({color = 'currentColor', size = 24, title = "hilton", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hilton - \ No newline at end of file +export default Hilton; diff --git a/src/components/Hitachi.tsx b/src/components/Hitachi.tsx index 1e06b9ddd..4e215d157 100644 --- a/src/components/Hitachi.tsx +++ b/src/components/Hitachi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HitachiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HitachiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hitachi = React.forwardRef(function Hitachi({color = 'currentColor', size = 24, title = "hitachi", ...others}, ref) { - const Hitachi = React.forwardRef(function Hitachi({color = 'currentColor', size = 24, title = "hitachi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hitachi - \ No newline at end of file +export default Hitachi; diff --git a/src/components/Hive.tsx b/src/components/Hive.tsx index 6bc4fe3ca..cb0defb00 100644 --- a/src/components/Hive.tsx +++ b/src/components/Hive.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HiveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hive = React.forwardRef(function Hive({color = 'currentColor', size = 24, title = "hive", ...others}, ref) { - const Hive = React.forwardRef(function Hive({color = 'currentColor', size = 24, title = "hive", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hive - \ No newline at end of file +export default Hive; diff --git a/src/components/HiveBlockchain.tsx b/src/components/HiveBlockchain.tsx index 89165a3c3..d0073a1c5 100644 --- a/src/components/HiveBlockchain.tsx +++ b/src/components/HiveBlockchain.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HiveBlockchainProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HiveBlockchainProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const HiveBlockchain = React.forwardRef(function HiveBlockchain({color = 'currentColor', size = 24, title = "hive_blockchain", ...others}, ref) { - const HiveBlockchain = React.forwardRef(function HiveBlockchain({color = 'currentColor', size = 24, title = "hive_blockchain", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default HiveBlockchain - \ No newline at end of file +export default HiveBlockchain; diff --git a/src/components/Homeadvisor.tsx b/src/components/Homeadvisor.tsx index f07eb8dfc..fa9432821 100644 --- a/src/components/Homeadvisor.tsx +++ b/src/components/Homeadvisor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HomeadvisorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HomeadvisorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Homeadvisor = React.forwardRef(function Homeadvisor({color = 'currentColor', size = 24, title = "homeadvisor", ...others}, ref) { - const Homeadvisor = React.forwardRef(function Homeadvisor({color = 'currentColor', size = 24, title = "homeadvisor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Homeadvisor - \ No newline at end of file +export default Homeadvisor; diff --git a/src/components/Homeassistant.tsx b/src/components/Homeassistant.tsx index b236ff005..3ea841b94 100644 --- a/src/components/Homeassistant.tsx +++ b/src/components/Homeassistant.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HomeassistantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HomeassistantProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Homeassistant = React.forwardRef(function Homeassistant({color = 'currentColor', size = 24, title = "homeassistant", ...others}, ref) { - const Homeassistant = React.forwardRef(function Homeassistant({color = 'currentColor', size = 24, title = "homeassistant", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Homeassistant - \ No newline at end of file +export default Homeassistant; diff --git a/src/components/Homeassistantcommunitystore.tsx b/src/components/Homeassistantcommunitystore.tsx index dc9143500..5fc25b5ae 100644 --- a/src/components/Homeassistantcommunitystore.tsx +++ b/src/components/Homeassistantcommunitystore.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HomeassistantcommunitystoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HomeassistantcommunitystoreProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Homeassistantcommunitystore = React.forwardRef(function Homeassistantcommunitystore({color = 'currentColor', size = 24, title = "homeassistantcommunitystore", ...others}, ref) { - const Homeassistantcommunitystore = React.forwardRef(function Homeassistantcommunitystore({color = 'currentColor', size = 24, title = "homeassistantcommunitystore", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Homeassistantcommunitystore - \ No newline at end of file +export default Homeassistantcommunitystore; diff --git a/src/components/Homebrew.tsx b/src/components/Homebrew.tsx index 14ec25877..6a9487535 100644 --- a/src/components/Homebrew.tsx +++ b/src/components/Homebrew.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HomebrewProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HomebrewProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Homebrew = React.forwardRef(function Homebrew({color = 'currentColor', size = 24, title = "homebrew", ...others}, ref) { - const Homebrew = React.forwardRef(function Homebrew({color = 'currentColor', size = 24, title = "homebrew", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Homebrew - \ No newline at end of file +export default Homebrew; diff --git a/src/components/Homebridge.tsx b/src/components/Homebridge.tsx index feecb5535..399cff92a 100644 --- a/src/components/Homebridge.tsx +++ b/src/components/Homebridge.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HomebridgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HomebridgeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Homebridge = React.forwardRef(function Homebridge({color = 'currentColor', size = 24, title = "homebridge", ...others}, ref) { - const Homebridge = React.forwardRef(function Homebridge({color = 'currentColor', size = 24, title = "homebridge", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Homebridge - \ No newline at end of file +export default Homebridge; diff --git a/src/components/Homify.tsx b/src/components/Homify.tsx index 1a1f7d3e9..fd8b19a82 100644 --- a/src/components/Homify.tsx +++ b/src/components/Homify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HomifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HomifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Homify = React.forwardRef(function Homify({color = 'currentColor', size = 24, title = "homify", ...others}, ref) { - const Homify = React.forwardRef(function Homify({color = 'currentColor', size = 24, title = "homify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Homify - \ No newline at end of file +export default Homify; diff --git a/src/components/Honda.tsx b/src/components/Honda.tsx index 34017c5a9..fa24fcada 100644 --- a/src/components/Honda.tsx +++ b/src/components/Honda.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HondaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HondaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Honda = React.forwardRef(function Honda({color = 'currentColor', size = 24, title = "honda", ...others}, ref) { - const Honda = React.forwardRef(function Honda({color = 'currentColor', size = 24, title = "honda", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Honda - \ No newline at end of file +export default Honda; diff --git a/src/components/Hootsuite.tsx b/src/components/Hootsuite.tsx index e5acbaef5..7608616e9 100644 --- a/src/components/Hootsuite.tsx +++ b/src/components/Hootsuite.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HootsuiteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HootsuiteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hootsuite = React.forwardRef(function Hootsuite({color = 'currentColor', size = 24, title = "hootsuite", ...others}, ref) { - const Hootsuite = React.forwardRef(function Hootsuite({color = 'currentColor', size = 24, title = "hootsuite", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hootsuite - \ No newline at end of file +export default Hootsuite; diff --git a/src/components/Hoppscotch.tsx b/src/components/Hoppscotch.tsx index 57189cdf4..9429cc450 100644 --- a/src/components/Hoppscotch.tsx +++ b/src/components/Hoppscotch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HoppscotchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HoppscotchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hoppscotch = React.forwardRef(function Hoppscotch({color = 'currentColor', size = 24, title = "hoppscotch", ...others}, ref) { - const Hoppscotch = React.forwardRef(function Hoppscotch({color = 'currentColor', size = 24, title = "hoppscotch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hoppscotch - \ No newline at end of file +export default Hoppscotch; diff --git a/src/components/Hotelsdotcom.tsx b/src/components/Hotelsdotcom.tsx index 9cad27072..1d8bddced 100644 --- a/src/components/Hotelsdotcom.tsx +++ b/src/components/Hotelsdotcom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HotelsdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HotelsdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hotelsdotcom = React.forwardRef(function Hotelsdotcom({color = 'currentColor', size = 24, title = "hotelsdotcom", ...others}, ref) { - const Hotelsdotcom = React.forwardRef(function Hotelsdotcom({color = 'currentColor', size = 24, title = "hotelsdotcom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hotelsdotcom - \ No newline at end of file +export default Hotelsdotcom; diff --git a/src/components/Hotjar.tsx b/src/components/Hotjar.tsx index ae2ecab88..4998eea3e 100644 --- a/src/components/Hotjar.tsx +++ b/src/components/Hotjar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HotjarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HotjarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hotjar = React.forwardRef(function Hotjar({color = 'currentColor', size = 24, title = "hotjar", ...others}, ref) { - const Hotjar = React.forwardRef(function Hotjar({color = 'currentColor', size = 24, title = "hotjar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hotjar - \ No newline at end of file +export default Hotjar; diff --git a/src/components/Houdini.tsx b/src/components/Houdini.tsx index de814243d..6ce0dcdd0 100644 --- a/src/components/Houdini.tsx +++ b/src/components/Houdini.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HoudiniProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HoudiniProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Houdini = React.forwardRef(function Houdini({color = 'currentColor', size = 24, title = "houdini", ...others}, ref) { - const Houdini = React.forwardRef(function Houdini({color = 'currentColor', size = 24, title = "houdini", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Houdini - \ No newline at end of file +export default Houdini; diff --git a/src/components/Houzz.tsx b/src/components/Houzz.tsx index 97f99240a..7a0126dee 100644 --- a/src/components/Houzz.tsx +++ b/src/components/Houzz.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HouzzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HouzzProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Houzz = React.forwardRef(function Houzz({color = 'currentColor', size = 24, title = "houzz", ...others}, ref) { - const Houzz = React.forwardRef(function Houzz({color = 'currentColor', size = 24, title = "houzz", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Houzz - \ No newline at end of file +export default Houzz; diff --git a/src/components/Hp.tsx b/src/components/Hp.tsx index a0236ba0f..a69d4cd81 100644 --- a/src/components/Hp.tsx +++ b/src/components/Hp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hp = React.forwardRef(function Hp({color = 'currentColor', size = 24, title = "hp", ...others}, ref) { - const Hp = React.forwardRef(function Hp({color = 'currentColor', size = 24, title = "hp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hp - \ No newline at end of file +export default Hp; diff --git a/src/components/Html5.tsx b/src/components/Html5.tsx index 922637dad..7fea376c7 100644 --- a/src/components/Html5.tsx +++ b/src/components/Html5.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Html5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Html5Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Html5 = React.forwardRef(function Html5({color = 'currentColor', size = 24, title = "html5", ...others}, ref) { - const Html5 = React.forwardRef(function Html5({color = 'currentColor', size = 24, title = "html5", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Html5 - \ No newline at end of file +export default Html5; diff --git a/src/components/Htmlacademy.tsx b/src/components/Htmlacademy.tsx index 603bdba42..623fcc765 100644 --- a/src/components/Htmlacademy.tsx +++ b/src/components/Htmlacademy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HtmlacademyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HtmlacademyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Htmlacademy = React.forwardRef(function Htmlacademy({color = 'currentColor', size = 24, title = "htmlacademy", ...others}, ref) { - const Htmlacademy = React.forwardRef(function Htmlacademy({color = 'currentColor', size = 24, title = "htmlacademy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Htmlacademy - \ No newline at end of file +export default Htmlacademy; diff --git a/src/components/Httpie.tsx b/src/components/Httpie.tsx index 7195cbf44..505176a46 100644 --- a/src/components/Httpie.tsx +++ b/src/components/Httpie.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HttpieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HttpieProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Httpie = React.forwardRef(function Httpie({color = 'currentColor', size = 24, title = "httpie", ...others}, ref) { - const Httpie = React.forwardRef(function Httpie({color = 'currentColor', size = 24, title = "httpie", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Httpie - \ No newline at end of file +export default Httpie; diff --git a/src/components/Huawei.tsx b/src/components/Huawei.tsx index f98ccbadd..853d659f9 100644 --- a/src/components/Huawei.tsx +++ b/src/components/Huawei.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HuaweiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HuaweiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Huawei = React.forwardRef(function Huawei({color = 'currentColor', size = 24, title = "huawei", ...others}, ref) { - const Huawei = React.forwardRef(function Huawei({color = 'currentColor', size = 24, title = "huawei", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Huawei - \ No newline at end of file +export default Huawei; diff --git a/src/components/Hubspot.tsx b/src/components/Hubspot.tsx index a80f824a1..5486c7d18 100644 --- a/src/components/Hubspot.tsx +++ b/src/components/Hubspot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HubspotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HubspotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hubspot = React.forwardRef(function Hubspot({color = 'currentColor', size = 24, title = "hubspot", ...others}, ref) { - const Hubspot = React.forwardRef(function Hubspot({color = 'currentColor', size = 24, title = "hubspot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hubspot - \ No newline at end of file +export default Hubspot; diff --git a/src/components/Hugo.tsx b/src/components/Hugo.tsx index b66b925fa..004645bab 100644 --- a/src/components/Hugo.tsx +++ b/src/components/Hugo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HugoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HugoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hugo = React.forwardRef(function Hugo({color = 'currentColor', size = 24, title = "hugo", ...others}, ref) { - const Hugo = React.forwardRef(function Hugo({color = 'currentColor', size = 24, title = "hugo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hugo - \ No newline at end of file +export default Hugo; diff --git a/src/components/Hulu.tsx b/src/components/Hulu.tsx index 13ddc86bb..563bcc4e3 100644 --- a/src/components/Hulu.tsx +++ b/src/components/Hulu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HuluProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HuluProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hulu = React.forwardRef(function Hulu({color = 'currentColor', size = 24, title = "hulu", ...others}, ref) { - const Hulu = React.forwardRef(function Hulu({color = 'currentColor', size = 24, title = "hulu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hulu - \ No newline at end of file +export default Hulu; diff --git a/src/components/Humblebundle.tsx b/src/components/Humblebundle.tsx index 195cafc97..2946b26c2 100644 --- a/src/components/Humblebundle.tsx +++ b/src/components/Humblebundle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HumblebundleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HumblebundleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Humblebundle = React.forwardRef(function Humblebundle({color = 'currentColor', size = 24, title = "humblebundle", ...others}, ref) { - const Humblebundle = React.forwardRef(function Humblebundle({color = 'currentColor', size = 24, title = "humblebundle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Humblebundle - \ No newline at end of file +export default Humblebundle; diff --git a/src/components/Hungryjacks.tsx b/src/components/Hungryjacks.tsx index 5bb35b02c..ef5ed2788 100644 --- a/src/components/Hungryjacks.tsx +++ b/src/components/Hungryjacks.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HungryjacksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HungryjacksProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hungryjacks = React.forwardRef(function Hungryjacks({color = 'currentColor', size = 24, title = "hungryjacks", ...others}, ref) { - const Hungryjacks = React.forwardRef(function Hungryjacks({color = 'currentColor', size = 24, title = "hungryjacks", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hungryjacks - \ No newline at end of file +export default Hungryjacks; diff --git a/src/components/Hurriyetemlak.tsx b/src/components/Hurriyetemlak.tsx index 6cc685552..8a1db1692 100644 --- a/src/components/Hurriyetemlak.tsx +++ b/src/components/Hurriyetemlak.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HurriyetemlakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HurriyetemlakProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hurriyetemlak = React.forwardRef(function Hurriyetemlak({color = 'currentColor', size = 24, title = "hurriyetemlak", ...others}, ref) { - const Hurriyetemlak = React.forwardRef(function Hurriyetemlak({color = 'currentColor', size = 24, title = "hurriyetemlak", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hurriyetemlak - \ No newline at end of file +export default Hurriyetemlak; diff --git a/src/components/Husqvarna.tsx b/src/components/Husqvarna.tsx index 92873f4f9..b05268bf3 100644 --- a/src/components/Husqvarna.tsx +++ b/src/components/Husqvarna.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HusqvarnaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HusqvarnaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Husqvarna = React.forwardRef(function Husqvarna({color = 'currentColor', size = 24, title = "husqvarna", ...others}, ref) { - const Husqvarna = React.forwardRef(function Husqvarna({color = 'currentColor', size = 24, title = "husqvarna", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Husqvarna - \ No newline at end of file +export default Husqvarna; diff --git a/src/components/Hyper.tsx b/src/components/Hyper.tsx index 7ae2419b7..b541469b6 100644 --- a/src/components/Hyper.tsx +++ b/src/components/Hyper.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HyperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HyperProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hyper = React.forwardRef(function Hyper({color = 'currentColor', size = 24, title = "hyper", ...others}, ref) { - const Hyper = React.forwardRef(function Hyper({color = 'currentColor', size = 24, title = "hyper", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hyper - \ No newline at end of file +export default Hyper; diff --git a/src/components/Hyperledger.tsx b/src/components/Hyperledger.tsx index 94213e556..60fc0ac71 100644 --- a/src/components/Hyperledger.tsx +++ b/src/components/Hyperledger.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HyperledgerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HyperledgerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hyperledger = React.forwardRef(function Hyperledger({color = 'currentColor', size = 24, title = "hyperledger", ...others}, ref) { - const Hyperledger = React.forwardRef(function Hyperledger({color = 'currentColor', size = 24, title = "hyperledger", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hyperledger - \ No newline at end of file +export default Hyperledger; diff --git a/src/components/Hypothesis.tsx b/src/components/Hypothesis.tsx index d1537f0d5..d9ea491ef 100644 --- a/src/components/Hypothesis.tsx +++ b/src/components/Hypothesis.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HypothesisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HypothesisProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hypothesis = React.forwardRef(function Hypothesis({color = 'currentColor', size = 24, title = "hypothesis", ...others}, ref) { - const Hypothesis = React.forwardRef(function Hypothesis({color = 'currentColor', size = 24, title = "hypothesis", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hypothesis - \ No newline at end of file +export default Hypothesis; diff --git a/src/components/Hyundai.tsx b/src/components/Hyundai.tsx index d9b4694f7..89eff34db 100644 --- a/src/components/Hyundai.tsx +++ b/src/components/Hyundai.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type HyundaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type HyundaiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Hyundai = React.forwardRef(function Hyundai({color = 'currentColor', size = 24, title = "hyundai", ...others}, ref) { - const Hyundai = React.forwardRef(function Hyundai({color = 'currentColor', size = 24, title = "hyundai", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Hyundai - \ No newline at end of file +export default Hyundai; diff --git a/src/components/I18next.tsx b/src/components/I18next.tsx index d4d5486f7..5d1232707 100644 --- a/src/components/I18next.tsx +++ b/src/components/I18next.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type I18nextProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type I18nextProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const I18next = React.forwardRef(function I18next({color = 'currentColor', size = 24, title = "i18next", ...others}, ref) { - const I18next = React.forwardRef(function I18next({color = 'currentColor', size = 24, title = "i18next", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default I18next - \ No newline at end of file +export default I18next; diff --git a/src/components/Iata.tsx b/src/components/Iata.tsx index ccdadfe71..d5c9eddd9 100644 --- a/src/components/Iata.tsx +++ b/src/components/Iata.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IataProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Iata = React.forwardRef(function Iata({color = 'currentColor', size = 24, title = "iata", ...others}, ref) { - const Iata = React.forwardRef(function Iata({color = 'currentColor', size = 24, title = "iata", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Iata - \ No newline at end of file +export default Iata; diff --git a/src/components/Ibeacon.tsx b/src/components/Ibeacon.tsx index 9b4cda352..4938c2e62 100644 --- a/src/components/Ibeacon.tsx +++ b/src/components/Ibeacon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IbeaconProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IbeaconProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ibeacon = React.forwardRef(function Ibeacon({color = 'currentColor', size = 24, title = "ibeacon", ...others}, ref) { - const Ibeacon = React.forwardRef(function Ibeacon({color = 'currentColor', size = 24, title = "ibeacon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ibeacon - \ No newline at end of file +export default Ibeacon; diff --git a/src/components/Ibm.tsx b/src/components/Ibm.tsx index 404ab9a8e..a48e78f8d 100644 --- a/src/components/Ibm.tsx +++ b/src/components/Ibm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IbmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IbmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ibm = React.forwardRef(function Ibm({color = 'currentColor', size = 24, title = "ibm", ...others}, ref) { - const Ibm = React.forwardRef(function Ibm({color = 'currentColor', size = 24, title = "ibm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ibm - \ No newline at end of file +export default Ibm; diff --git a/src/components/Ibmcloud.tsx b/src/components/Ibmcloud.tsx index 9b7558f30..d6ce2b57c 100644 --- a/src/components/Ibmcloud.tsx +++ b/src/components/Ibmcloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IbmcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IbmcloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ibmcloud = React.forwardRef(function Ibmcloud({color = 'currentColor', size = 24, title = "ibmcloud", ...others}, ref) { - const Ibmcloud = React.forwardRef(function Ibmcloud({color = 'currentColor', size = 24, title = "ibmcloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ibmcloud - \ No newline at end of file +export default Ibmcloud; diff --git a/src/components/Ibmwatson.tsx b/src/components/Ibmwatson.tsx index bb64c35ee..c2f279c93 100644 --- a/src/components/Ibmwatson.tsx +++ b/src/components/Ibmwatson.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IbmwatsonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IbmwatsonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ibmwatson = React.forwardRef(function Ibmwatson({color = 'currentColor', size = 24, title = "ibmwatson", ...others}, ref) { - const Ibmwatson = React.forwardRef(function Ibmwatson({color = 'currentColor', size = 24, title = "ibmwatson", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ibmwatson - \ No newline at end of file +export default Ibmwatson; diff --git a/src/components/Iceland.tsx b/src/components/Iceland.tsx index f1261ac61..10ca72a15 100644 --- a/src/components/Iceland.tsx +++ b/src/components/Iceland.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IcelandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IcelandProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Iceland = React.forwardRef(function Iceland({color = 'currentColor', size = 24, title = "iceland", ...others}, ref) { - const Iceland = React.forwardRef(function Iceland({color = 'currentColor', size = 24, title = "iceland", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Iceland - \ No newline at end of file +export default Iceland; diff --git a/src/components/Icinga.tsx b/src/components/Icinga.tsx index f0086f0c5..70e1ca7ae 100644 --- a/src/components/Icinga.tsx +++ b/src/components/Icinga.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IcingaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IcingaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Icinga = React.forwardRef(function Icinga({color = 'currentColor', size = 24, title = "icinga", ...others}, ref) { - const Icinga = React.forwardRef(function Icinga({color = 'currentColor', size = 24, title = "icinga", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Icinga - \ No newline at end of file +export default Icinga; diff --git a/src/components/Icloud.tsx b/src/components/Icloud.tsx index 84f0960e4..a3689570e 100644 --- a/src/components/Icloud.tsx +++ b/src/components/Icloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IcloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Icloud = React.forwardRef(function Icloud({color = 'currentColor', size = 24, title = "icloud", ...others}, ref) { - const Icloud = React.forwardRef(function Icloud({color = 'currentColor', size = 24, title = "icloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Icloud - \ No newline at end of file +export default Icloud; diff --git a/src/components/Icomoon.tsx b/src/components/Icomoon.tsx index e1572958b..bf24ad4ae 100644 --- a/src/components/Icomoon.tsx +++ b/src/components/Icomoon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IcomoonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IcomoonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Icomoon = React.forwardRef(function Icomoon({color = 'currentColor', size = 24, title = "icomoon", ...others}, ref) { - const Icomoon = React.forwardRef(function Icomoon({color = 'currentColor', size = 24, title = "icomoon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Icomoon - \ No newline at end of file +export default Icomoon; diff --git a/src/components/Icon.tsx b/src/components/Icon.tsx index a05adfca1..f66b54c8a 100644 --- a/src/components/Icon.tsx +++ b/src/components/Icon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IconProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IconProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Icon = React.forwardRef(function Icon({color = 'currentColor', size = 24, title = "icon", ...others}, ref) { - const Icon = React.forwardRef(function Icon({color = 'currentColor', size = 24, title = "icon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Icon - \ No newline at end of file +export default Icon; diff --git a/src/components/Iconfinder.tsx b/src/components/Iconfinder.tsx index 1fcfe80c4..678ce2026 100644 --- a/src/components/Iconfinder.tsx +++ b/src/components/Iconfinder.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IconfinderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IconfinderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Iconfinder = React.forwardRef(function Iconfinder({color = 'currentColor', size = 24, title = "iconfinder", ...others}, ref) { - const Iconfinder = React.forwardRef(function Iconfinder({color = 'currentColor', size = 24, title = "iconfinder", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Iconfinder - \ No newline at end of file +export default Iconfinder; diff --git a/src/components/Iconify.tsx b/src/components/Iconify.tsx index bd2da8f69..1690e7f69 100644 --- a/src/components/Iconify.tsx +++ b/src/components/Iconify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IconifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IconifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Iconify = React.forwardRef(function Iconify({color = 'currentColor', size = 24, title = "iconify", ...others}, ref) { - const Iconify = React.forwardRef(function Iconify({color = 'currentColor', size = 24, title = "iconify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Iconify - \ No newline at end of file +export default Iconify; diff --git a/src/components/Iconjar.tsx b/src/components/Iconjar.tsx index 50b071994..3612764e1 100644 --- a/src/components/Iconjar.tsx +++ b/src/components/Iconjar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IconjarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IconjarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Iconjar = React.forwardRef(function Iconjar({color = 'currentColor', size = 24, title = "iconjar", ...others}, ref) { - const Iconjar = React.forwardRef(function Iconjar({color = 'currentColor', size = 24, title = "iconjar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Iconjar - \ No newline at end of file +export default Iconjar; diff --git a/src/components/Icons8.tsx b/src/components/Icons8.tsx index d24d32d88..91c1e1bc0 100644 --- a/src/components/Icons8.tsx +++ b/src/components/Icons8.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Icons8Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Icons8Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Icons8 = React.forwardRef(function Icons8({color = 'currentColor', size = 24, title = "icons8", ...others}, ref) { - const Icons8 = React.forwardRef(function Icons8({color = 'currentColor', size = 24, title = "icons8", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Icons8 - \ No newline at end of file +export default Icons8; diff --git a/src/components/Icq.tsx b/src/components/Icq.tsx index 3c47d2a51..4d9fbed8f 100644 --- a/src/components/Icq.tsx +++ b/src/components/Icq.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IcqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IcqProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Icq = React.forwardRef(function Icq({color = 'currentColor', size = 24, title = "icq", ...others}, ref) { - const Icq = React.forwardRef(function Icq({color = 'currentColor', size = 24, title = "icq", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Icq - \ No newline at end of file +export default Icq; diff --git a/src/components/Ieee.tsx b/src/components/Ieee.tsx index fcf7477b0..8663bb755 100644 --- a/src/components/Ieee.tsx +++ b/src/components/Ieee.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IeeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IeeeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ieee = React.forwardRef(function Ieee({color = 'currentColor', size = 24, title = "ieee", ...others}, ref) { - const Ieee = React.forwardRef(function Ieee({color = 'currentColor', size = 24, title = "ieee", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ieee - \ No newline at end of file +export default Ieee; diff --git a/src/components/Ifixit.tsx b/src/components/Ifixit.tsx index b6b1be883..df72a563c 100644 --- a/src/components/Ifixit.tsx +++ b/src/components/Ifixit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IfixitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IfixitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ifixit = React.forwardRef(function Ifixit({color = 'currentColor', size = 24, title = "ifixit", ...others}, ref) { - const Ifixit = React.forwardRef(function Ifixit({color = 'currentColor', size = 24, title = "ifixit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ifixit - \ No newline at end of file +export default Ifixit; diff --git a/src/components/Ifood.tsx b/src/components/Ifood.tsx index 9b2f37547..8c625e7cf 100644 --- a/src/components/Ifood.tsx +++ b/src/components/Ifood.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IfoodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IfoodProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ifood = React.forwardRef(function Ifood({color = 'currentColor', size = 24, title = "ifood", ...others}, ref) { - const Ifood = React.forwardRef(function Ifood({color = 'currentColor', size = 24, title = "ifood", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ifood - \ No newline at end of file +export default Ifood; diff --git a/src/components/Ifttt.tsx b/src/components/Ifttt.tsx index 9944db142..40d5a0ee9 100644 --- a/src/components/Ifttt.tsx +++ b/src/components/Ifttt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IftttProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IftttProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ifttt = React.forwardRef(function Ifttt({color = 'currentColor', size = 24, title = "ifttt", ...others}, ref) { - const Ifttt = React.forwardRef(function Ifttt({color = 'currentColor', size = 24, title = "ifttt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ifttt - \ No newline at end of file +export default Ifttt; diff --git a/src/components/Iheartradio.tsx b/src/components/Iheartradio.tsx index 68f0395a9..043c710fe 100644 --- a/src/components/Iheartradio.tsx +++ b/src/components/Iheartradio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IheartradioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IheartradioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Iheartradio = React.forwardRef(function Iheartradio({color = 'currentColor', size = 24, title = "iheartradio", ...others}, ref) { - const Iheartradio = React.forwardRef(function Iheartradio({color = 'currentColor', size = 24, title = "iheartradio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Iheartradio - \ No newline at end of file +export default Iheartradio; diff --git a/src/components/Ikea.tsx b/src/components/Ikea.tsx index 43240b260..66f93a1ce 100644 --- a/src/components/Ikea.tsx +++ b/src/components/Ikea.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IkeaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IkeaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ikea = React.forwardRef(function Ikea({color = 'currentColor', size = 24, title = "ikea", ...others}, ref) { - const Ikea = React.forwardRef(function Ikea({color = 'currentColor', size = 24, title = "ikea", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ikea - \ No newline at end of file +export default Ikea; diff --git a/src/components/Imagej.tsx b/src/components/Imagej.tsx index cc6d79d79..63e26b19b 100644 --- a/src/components/Imagej.tsx +++ b/src/components/Imagej.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ImagejProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ImagejProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Imagej = React.forwardRef(function Imagej({color = 'currentColor', size = 24, title = "imagej", ...others}, ref) { - const Imagej = React.forwardRef(function Imagej({color = 'currentColor', size = 24, title = "imagej", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Imagej - \ No newline at end of file +export default Imagej; diff --git a/src/components/Imdb.tsx b/src/components/Imdb.tsx index 33c9bc83a..ae6e3a032 100644 --- a/src/components/Imdb.tsx +++ b/src/components/Imdb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ImdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ImdbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Imdb = React.forwardRef(function Imdb({color = 'currentColor', size = 24, title = "imdb", ...others}, ref) { - const Imdb = React.forwardRef(function Imdb({color = 'currentColor', size = 24, title = "imdb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Imdb - \ No newline at end of file +export default Imdb; diff --git a/src/components/Imgur.tsx b/src/components/Imgur.tsx index 42ea2bf68..923aa993e 100644 --- a/src/components/Imgur.tsx +++ b/src/components/Imgur.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ImgurProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ImgurProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Imgur = React.forwardRef(function Imgur({color = 'currentColor', size = 24, title = "imgur", ...others}, ref) { - const Imgur = React.forwardRef(function Imgur({color = 'currentColor', size = 24, title = "imgur", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Imgur - \ No newline at end of file +export default Imgur; diff --git a/src/components/Immer.tsx b/src/components/Immer.tsx index b89be05a0..f8bfb269c 100644 --- a/src/components/Immer.tsx +++ b/src/components/Immer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ImmerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ImmerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Immer = React.forwardRef(function Immer({color = 'currentColor', size = 24, title = "immer", ...others}, ref) { - const Immer = React.forwardRef(function Immer({color = 'currentColor', size = 24, title = "immer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Immer - \ No newline at end of file +export default Immer; diff --git a/src/components/Imou.tsx b/src/components/Imou.tsx index 486060b9c..e4da4ea63 100644 --- a/src/components/Imou.tsx +++ b/src/components/Imou.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ImouProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ImouProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Imou = React.forwardRef(function Imou({color = 'currentColor', size = 24, title = "imou", ...others}, ref) { - const Imou = React.forwardRef(function Imou({color = 'currentColor', size = 24, title = "imou", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Imou - \ No newline at end of file +export default Imou; diff --git a/src/components/Indeed.tsx b/src/components/Indeed.tsx index 09cdeaccd..61972af88 100644 --- a/src/components/Indeed.tsx +++ b/src/components/Indeed.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IndeedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IndeedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Indeed = React.forwardRef(function Indeed({color = 'currentColor', size = 24, title = "indeed", ...others}, ref) { - const Indeed = React.forwardRef(function Indeed({color = 'currentColor', size = 24, title = "indeed", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Indeed - \ No newline at end of file +export default Indeed; diff --git a/src/components/Infiniti.tsx b/src/components/Infiniti.tsx index ddec6e97f..cdb77d98e 100644 --- a/src/components/Infiniti.tsx +++ b/src/components/Infiniti.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InfinitiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InfinitiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Infiniti = React.forwardRef(function Infiniti({color = 'currentColor', size = 24, title = "infiniti", ...others}, ref) { - const Infiniti = React.forwardRef(function Infiniti({color = 'currentColor', size = 24, title = "infiniti", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Infiniti - \ No newline at end of file +export default Infiniti; diff --git a/src/components/Influxdb.tsx b/src/components/Influxdb.tsx index 37755ebd2..7585c98d6 100644 --- a/src/components/Influxdb.tsx +++ b/src/components/Influxdb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InfluxdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InfluxdbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Influxdb = React.forwardRef(function Influxdb({color = 'currentColor', size = 24, title = "influxdb", ...others}, ref) { - const Influxdb = React.forwardRef(function Influxdb({color = 'currentColor', size = 24, title = "influxdb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Influxdb - \ No newline at end of file +export default Influxdb; diff --git a/src/components/Informatica.tsx b/src/components/Informatica.tsx index 392c3e386..034cad408 100644 --- a/src/components/Informatica.tsx +++ b/src/components/Informatica.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InformaticaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InformaticaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Informatica = React.forwardRef(function Informatica({color = 'currentColor', size = 24, title = "informatica", ...others}, ref) { - const Informatica = React.forwardRef(function Informatica({color = 'currentColor', size = 24, title = "informatica", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Informatica - \ No newline at end of file +export default Informatica; diff --git a/src/components/Infosys.tsx b/src/components/Infosys.tsx index 489e59e13..9e51b03e9 100644 --- a/src/components/Infosys.tsx +++ b/src/components/Infosys.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InfosysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InfosysProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Infosys = React.forwardRef(function Infosys({color = 'currentColor', size = 24, title = "infosys", ...others}, ref) { - const Infosys = React.forwardRef(function Infosys({color = 'currentColor', size = 24, title = "infosys", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Infosys - \ No newline at end of file +export default Infosys; diff --git a/src/components/Ingress.tsx b/src/components/Ingress.tsx index aa0bda453..5d8f98991 100644 --- a/src/components/Ingress.tsx +++ b/src/components/Ingress.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IngressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IngressProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ingress = React.forwardRef(function Ingress({color = 'currentColor', size = 24, title = "ingress", ...others}, ref) { - const Ingress = React.forwardRef(function Ingress({color = 'currentColor', size = 24, title = "ingress", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ingress - \ No newline at end of file +export default Ingress; diff --git a/src/components/Inkdrop.tsx b/src/components/Inkdrop.tsx index 8fd6dd15a..27cbcfb33 100644 --- a/src/components/Inkdrop.tsx +++ b/src/components/Inkdrop.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InkdropProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InkdropProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Inkdrop = React.forwardRef(function Inkdrop({color = 'currentColor', size = 24, title = "inkdrop", ...others}, ref) { - const Inkdrop = React.forwardRef(function Inkdrop({color = 'currentColor', size = 24, title = "inkdrop", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Inkdrop - \ No newline at end of file +export default Inkdrop; diff --git a/src/components/Inkscape.tsx b/src/components/Inkscape.tsx index 4c82687b9..36398e657 100644 --- a/src/components/Inkscape.tsx +++ b/src/components/Inkscape.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InkscapeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InkscapeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Inkscape = React.forwardRef(function Inkscape({color = 'currentColor', size = 24, title = "inkscape", ...others}, ref) { - const Inkscape = React.forwardRef(function Inkscape({color = 'currentColor', size = 24, title = "inkscape", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Inkscape - \ No newline at end of file +export default Inkscape; diff --git a/src/components/Insomnia.tsx b/src/components/Insomnia.tsx index a91ebd524..fa6487a84 100644 --- a/src/components/Insomnia.tsx +++ b/src/components/Insomnia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InsomniaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InsomniaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Insomnia = React.forwardRef(function Insomnia({color = 'currentColor', size = 24, title = "insomnia", ...others}, ref) { - const Insomnia = React.forwardRef(function Insomnia({color = 'currentColor', size = 24, title = "insomnia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Insomnia - \ No newline at end of file +export default Insomnia; diff --git a/src/components/Instacart.tsx b/src/components/Instacart.tsx index 5c82bef04..2997766e1 100644 --- a/src/components/Instacart.tsx +++ b/src/components/Instacart.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InstacartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InstacartProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Instacart = React.forwardRef(function Instacart({color = 'currentColor', size = 24, title = "instacart", ...others}, ref) { - const Instacart = React.forwardRef(function Instacart({color = 'currentColor', size = 24, title = "instacart", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Instacart - \ No newline at end of file +export default Instacart; diff --git a/src/components/Instagram.tsx b/src/components/Instagram.tsx index 5aca1ac48..460e6874c 100644 --- a/src/components/Instagram.tsx +++ b/src/components/Instagram.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InstagramProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InstagramProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Instagram = React.forwardRef(function Instagram({color = 'currentColor', size = 24, title = "instagram", ...others}, ref) { - const Instagram = React.forwardRef(function Instagram({color = 'currentColor', size = 24, title = "instagram", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Instagram - \ No newline at end of file +export default Instagram; diff --git a/src/components/Instapaper.tsx b/src/components/Instapaper.tsx index c95c4d836..7c52c9556 100644 --- a/src/components/Instapaper.tsx +++ b/src/components/Instapaper.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InstapaperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InstapaperProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Instapaper = React.forwardRef(function Instapaper({color = 'currentColor', size = 24, title = "instapaper", ...others}, ref) { - const Instapaper = React.forwardRef(function Instapaper({color = 'currentColor', size = 24, title = "instapaper", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Instapaper - \ No newline at end of file +export default Instapaper; diff --git a/src/components/Instatus.tsx b/src/components/Instatus.tsx index cc25e55ec..e12a513bf 100644 --- a/src/components/Instatus.tsx +++ b/src/components/Instatus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InstatusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InstatusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Instatus = React.forwardRef(function Instatus({color = 'currentColor', size = 24, title = "instatus", ...others}, ref) { - const Instatus = React.forwardRef(function Instatus({color = 'currentColor', size = 24, title = "instatus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Instatus - \ No newline at end of file +export default Instatus; diff --git a/src/components/Instructables.tsx b/src/components/Instructables.tsx index 324b836da..6b3d68f2e 100644 --- a/src/components/Instructables.tsx +++ b/src/components/Instructables.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InstructablesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InstructablesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Instructables = React.forwardRef(function Instructables({color = 'currentColor', size = 24, title = "instructables", ...others}, ref) { - const Instructables = React.forwardRef(function Instructables({color = 'currentColor', size = 24, title = "instructables", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Instructables - \ No newline at end of file +export default Instructables; diff --git a/src/components/Integromat.tsx b/src/components/Integromat.tsx index e7e039141..b04dd0072 100644 --- a/src/components/Integromat.tsx +++ b/src/components/Integromat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IntegromatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IntegromatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Integromat = React.forwardRef(function Integromat({color = 'currentColor', size = 24, title = "integromat", ...others}, ref) { - const Integromat = React.forwardRef(function Integromat({color = 'currentColor', size = 24, title = "integromat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Integromat - \ No newline at end of file +export default Integromat; diff --git a/src/components/Intel.tsx b/src/components/Intel.tsx index 2a1e44511..ac4a5e271 100644 --- a/src/components/Intel.tsx +++ b/src/components/Intel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IntelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IntelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Intel = React.forwardRef(function Intel({color = 'currentColor', size = 24, title = "intel", ...others}, ref) { - const Intel = React.forwardRef(function Intel({color = 'currentColor', size = 24, title = "intel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Intel - \ No newline at end of file +export default Intel; diff --git a/src/components/Intellijidea.tsx b/src/components/Intellijidea.tsx index eb21c5853..0e467160e 100644 --- a/src/components/Intellijidea.tsx +++ b/src/components/Intellijidea.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IntellijideaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IntellijideaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Intellijidea = React.forwardRef(function Intellijidea({color = 'currentColor', size = 24, title = "intellijidea", ...others}, ref) { - const Intellijidea = React.forwardRef(function Intellijidea({color = 'currentColor', size = 24, title = "intellijidea", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Intellijidea - \ No newline at end of file +export default Intellijidea; diff --git a/src/components/Interactiondesignfoundation.tsx b/src/components/Interactiondesignfoundation.tsx new file mode 100644 index 000000000..1fafcb40a --- /dev/null +++ b/src/components/Interactiondesignfoundation.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type InteractiondesignfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Interactiondesignfoundation = React.forwardRef(function Interactiondesignfoundation({color = 'currentColor', size = 24, title = "interactiondesignfoundation", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Interactiondesignfoundation; diff --git a/src/components/Interactjs.tsx b/src/components/Interactjs.tsx index ad5213ad9..45698685c 100644 --- a/src/components/Interactjs.tsx +++ b/src/components/Interactjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InteractjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InteractjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Interactjs = React.forwardRef(function Interactjs({color = 'currentColor', size = 24, title = "interactjs", ...others}, ref) { - const Interactjs = React.forwardRef(function Interactjs({color = 'currentColor', size = 24, title = "interactjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Interactjs - \ No newline at end of file +export default Interactjs; diff --git a/src/components/Intercom.tsx b/src/components/Intercom.tsx index 0379b90aa..4d8b8ea6e 100644 --- a/src/components/Intercom.tsx +++ b/src/components/Intercom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IntercomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IntercomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Intercom = React.forwardRef(function Intercom({color = 'currentColor', size = 24, title = "intercom", ...others}, ref) { - const Intercom = React.forwardRef(function Intercom({color = 'currentColor', size = 24, title = "intercom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Intercom - \ No newline at end of file +export default Intercom; diff --git a/src/components/Intermarche.tsx b/src/components/Intermarche.tsx index 3f13b41f2..5eb77dd19 100644 --- a/src/components/Intermarche.tsx +++ b/src/components/Intermarche.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IntermarcheProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IntermarcheProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Intermarche = React.forwardRef(function Intermarche({color = 'currentColor', size = 24, title = "intermarche", ...others}, ref) { - const Intermarche = React.forwardRef(function Intermarche({color = 'currentColor', size = 24, title = "intermarche", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Intermarche - \ No newline at end of file +export default Intermarche; diff --git a/src/components/Internetarchive.tsx b/src/components/Internetarchive.tsx index f677ba369..4c20500e1 100644 --- a/src/components/Internetarchive.tsx +++ b/src/components/Internetarchive.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InternetarchiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InternetarchiveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Internetarchive = React.forwardRef(function Internetarchive({color = 'currentColor', size = 24, title = "internetarchive", ...others}, ref) { - const Internetarchive = React.forwardRef(function Internetarchive({color = 'currentColor', size = 24, title = "internetarchive", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Internetarchive - \ No newline at end of file +export default Internetarchive; diff --git a/src/components/Internetexplorer.tsx b/src/components/Internetexplorer.tsx index 70a6b69c6..800a4bf67 100644 --- a/src/components/Internetexplorer.tsx +++ b/src/components/Internetexplorer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InternetexplorerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InternetexplorerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Internetexplorer = React.forwardRef(function Internetexplorer({color = 'currentColor', size = 24, title = "internetexplorer", ...others}, ref) { - const Internetexplorer = React.forwardRef(function Internetexplorer({color = 'currentColor', size = 24, title = "internetexplorer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Internetexplorer - \ No newline at end of file +export default Internetexplorer; diff --git a/src/components/Intigriti.tsx b/src/components/Intigriti.tsx index 4ecbffc56..4c89ff788 100644 --- a/src/components/Intigriti.tsx +++ b/src/components/Intigriti.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IntigritiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IntigritiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Intigriti = React.forwardRef(function Intigriti({color = 'currentColor', size = 24, title = "intigriti", ...others}, ref) { - const Intigriti = React.forwardRef(function Intigriti({color = 'currentColor', size = 24, title = "intigriti", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Intigriti - \ No newline at end of file +export default Intigriti; diff --git a/src/components/Invision.tsx b/src/components/Invision.tsx index 01be32f13..3862a54ef 100644 --- a/src/components/Invision.tsx +++ b/src/components/Invision.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InvisionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InvisionProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Invision = React.forwardRef(function Invision({color = 'currentColor', size = 24, title = "invision", ...others}, ref) { - const Invision = React.forwardRef(function Invision({color = 'currentColor', size = 24, title = "invision", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Invision - \ No newline at end of file +export default Invision; diff --git a/src/components/Invoiceninja.tsx b/src/components/Invoiceninja.tsx index 76c2c46a1..73c36b665 100644 --- a/src/components/Invoiceninja.tsx +++ b/src/components/Invoiceninja.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type InvoiceninjaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type InvoiceninjaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Invoiceninja = React.forwardRef(function Invoiceninja({color = 'currentColor', size = 24, title = "invoiceninja", ...others}, ref) { - const Invoiceninja = React.forwardRef(function Invoiceninja({color = 'currentColor', size = 24, title = "invoiceninja", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Invoiceninja - \ No newline at end of file +export default Invoiceninja; diff --git a/src/components/Iobroker.tsx b/src/components/Iobroker.tsx index 3567b1cfc..a8754f418 100644 --- a/src/components/Iobroker.tsx +++ b/src/components/Iobroker.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IobrokerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IobrokerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Iobroker = React.forwardRef(function Iobroker({color = 'currentColor', size = 24, title = "iobroker", ...others}, ref) { - const Iobroker = React.forwardRef(function Iobroker({color = 'currentColor', size = 24, title = "iobroker", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Iobroker - \ No newline at end of file +export default Iobroker; diff --git a/src/components/Ionic.tsx b/src/components/Ionic.tsx index bcf86bd3d..cc251384a 100644 --- a/src/components/Ionic.tsx +++ b/src/components/Ionic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IonicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IonicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ionic = React.forwardRef(function Ionic({color = 'currentColor', size = 24, title = "ionic", ...others}, ref) { - const Ionic = React.forwardRef(function Ionic({color = 'currentColor', size = 24, title = "ionic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ionic - \ No newline at end of file +export default Ionic; diff --git a/src/components/Ionos.tsx b/src/components/Ionos.tsx index dc55050d3..d4a945e85 100644 --- a/src/components/Ionos.tsx +++ b/src/components/Ionos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IonosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IonosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ionos = React.forwardRef(function Ionos({color = 'currentColor', size = 24, title = "ionos", ...others}, ref) { - const Ionos = React.forwardRef(function Ionos({color = 'currentColor', size = 24, title = "ionos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ionos - \ No newline at end of file +export default Ionos; diff --git a/src/components/Ios.tsx b/src/components/Ios.tsx index 483963586..c90a7c2dc 100644 --- a/src/components/Ios.tsx +++ b/src/components/Ios.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ios = React.forwardRef(function Ios({color = 'currentColor', size = 24, title = "ios", ...others}, ref) { - const Ios = React.forwardRef(function Ios({color = 'currentColor', size = 24, title = "ios", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ios - \ No newline at end of file +export default Ios; diff --git a/src/components/Iota.tsx b/src/components/Iota.tsx index 275a06f2b..8c257d1f4 100644 --- a/src/components/Iota.tsx +++ b/src/components/Iota.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IotaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IotaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Iota = React.forwardRef(function Iota({color = 'currentColor', size = 24, title = "iota", ...others}, ref) { - const Iota = React.forwardRef(function Iota({color = 'currentColor', size = 24, title = "iota", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Iota - \ No newline at end of file +export default Iota; diff --git a/src/components/Ipfs.tsx b/src/components/Ipfs.tsx index 37175442c..e23211bf4 100644 --- a/src/components/Ipfs.tsx +++ b/src/components/Ipfs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IpfsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IpfsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ipfs = React.forwardRef(function Ipfs({color = 'currentColor', size = 24, title = "ipfs", ...others}, ref) { - const Ipfs = React.forwardRef(function Ipfs({color = 'currentColor', size = 24, title = "ipfs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ipfs - \ No newline at end of file +export default Ipfs; diff --git a/src/components/Issuu.tsx b/src/components/Issuu.tsx index 411b0d023..ab5c69e46 100644 --- a/src/components/Issuu.tsx +++ b/src/components/Issuu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IssuuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IssuuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Issuu = React.forwardRef(function Issuu({color = 'currentColor', size = 24, title = "issuu", ...others}, ref) { - const Issuu = React.forwardRef(function Issuu({color = 'currentColor', size = 24, title = "issuu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Issuu - \ No newline at end of file +export default Issuu; diff --git a/src/components/Istio.tsx b/src/components/Istio.tsx index 8e4740850..e49f05e55 100644 --- a/src/components/Istio.tsx +++ b/src/components/Istio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IstioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IstioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Istio = React.forwardRef(function Istio({color = 'currentColor', size = 24, title = "istio", ...others}, ref) { - const Istio = React.forwardRef(function Istio({color = 'currentColor', size = 24, title = "istio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Istio - \ No newline at end of file +export default Istio; diff --git a/src/components/Itchdotio.tsx b/src/components/Itchdotio.tsx index 89b50cc52..7e865f59b 100644 --- a/src/components/Itchdotio.tsx +++ b/src/components/Itchdotio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ItchdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ItchdotioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Itchdotio = React.forwardRef(function Itchdotio({color = 'currentColor', size = 24, title = "itchdotio", ...others}, ref) { - const Itchdotio = React.forwardRef(function Itchdotio({color = 'currentColor', size = 24, title = "itchdotio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Itchdotio - \ No newline at end of file +export default Itchdotio; diff --git a/src/components/ItermTwo.tsx b/src/components/ItermTwo.tsx index 77f80e2d8..01e839b2e 100644 --- a/src/components/ItermTwo.tsx +++ b/src/components/ItermTwo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ItermTwoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ItermTwoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const ItermTwo = React.forwardRef(function ItermTwo({color = 'currentColor', size = 24, title = "iterm2", ...others}, ref) { - const ItermTwo = React.forwardRef(function ItermTwo({color = 'currentColor', size = 24, title = "iterm2", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default ItermTwo - \ No newline at end of file +export default ItermTwo; diff --git a/src/components/Itunes.tsx b/src/components/Itunes.tsx index 53d4bb9d6..577c9256c 100644 --- a/src/components/Itunes.tsx +++ b/src/components/Itunes.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ItunesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ItunesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Itunes = React.forwardRef(function Itunes({color = 'currentColor', size = 24, title = "itunes", ...others}, ref) { - const Itunes = React.forwardRef(function Itunes({color = 'currentColor', size = 24, title = "itunes", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Itunes - \ No newline at end of file +export default Itunes; diff --git a/src/components/Iveco.tsx b/src/components/Iveco.tsx index fbb47af7d..90a2c49bb 100644 --- a/src/components/Iveco.tsx +++ b/src/components/Iveco.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type IvecoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type IvecoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Iveco = React.forwardRef(function Iveco({color = 'currentColor', size = 24, title = "iveco", ...others}, ref) { - const Iveco = React.forwardRef(function Iveco({color = 'currentColor', size = 24, title = "iveco", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Iveco - \ No newline at end of file +export default Iveco; diff --git a/src/components/Jabber.tsx b/src/components/Jabber.tsx index c8d470372..3fec16b63 100644 --- a/src/components/Jabber.tsx +++ b/src/components/Jabber.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JabberProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JabberProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jabber = React.forwardRef(function Jabber({color = 'currentColor', size = 24, title = "jabber", ...others}, ref) { - const Jabber = React.forwardRef(function Jabber({color = 'currentColor', size = 24, title = "jabber", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jabber - \ No newline at end of file +export default Jabber; diff --git a/src/components/Jaguar.tsx b/src/components/Jaguar.tsx index 2668486c9..9956df613 100644 --- a/src/components/Jaguar.tsx +++ b/src/components/Jaguar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JaguarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JaguarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jaguar = React.forwardRef(function Jaguar({color = 'currentColor', size = 24, title = "jaguar", ...others}, ref) { - const Jaguar = React.forwardRef(function Jaguar({color = 'currentColor', size = 24, title = "jaguar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jaguar - \ No newline at end of file +export default Jaguar; diff --git a/src/components/Jamboard.tsx b/src/components/Jamboard.tsx index 60dc71f31..b6ad6a9fd 100644 --- a/src/components/Jamboard.tsx +++ b/src/components/Jamboard.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JamboardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JamboardProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jamboard = React.forwardRef(function Jamboard({color = 'currentColor', size = 24, title = "jamboard", ...others}, ref) { - const Jamboard = React.forwardRef(function Jamboard({color = 'currentColor', size = 24, title = "jamboard", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jamboard - \ No newline at end of file +export default Jamboard; diff --git a/src/components/Jameson.tsx b/src/components/Jameson.tsx index cdd194240..d084f9257 100644 --- a/src/components/Jameson.tsx +++ b/src/components/Jameson.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JamesonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JamesonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jameson = React.forwardRef(function Jameson({color = 'currentColor', size = 24, title = "jameson", ...others}, ref) { - const Jameson = React.forwardRef(function Jameson({color = 'currentColor', size = 24, title = "jameson", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jameson - \ No newline at end of file +export default Jameson; diff --git a/src/components/Jamstack.tsx b/src/components/Jamstack.tsx index 6957cdddf..9a3bd15ab 100644 --- a/src/components/Jamstack.tsx +++ b/src/components/Jamstack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JamstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JamstackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jamstack = React.forwardRef(function Jamstack({color = 'currentColor', size = 24, title = "jamstack", ...others}, ref) { - const Jamstack = React.forwardRef(function Jamstack({color = 'currentColor', size = 24, title = "jamstack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jamstack - \ No newline at end of file +export default Jamstack; diff --git a/src/components/Jasmine.tsx b/src/components/Jasmine.tsx index 41c1993f9..efe2a1d15 100644 --- a/src/components/Jasmine.tsx +++ b/src/components/Jasmine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JasmineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JasmineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jasmine = React.forwardRef(function Jasmine({color = 'currentColor', size = 24, title = "jasmine", ...others}, ref) { - const Jasmine = React.forwardRef(function Jasmine({color = 'currentColor', size = 24, title = "jasmine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jasmine - \ No newline at end of file +export default Jasmine; diff --git a/src/components/Javascript.tsx b/src/components/Javascript.tsx index 0c1c96935..6eb5b8af4 100644 --- a/src/components/Javascript.tsx +++ b/src/components/Javascript.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JavascriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JavascriptProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Javascript = React.forwardRef(function Javascript({color = 'currentColor', size = 24, title = "javascript", ...others}, ref) { - const Javascript = React.forwardRef(function Javascript({color = 'currentColor', size = 24, title = "javascript", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Javascript - \ No newline at end of file +export default Javascript; diff --git a/src/components/Jbl.tsx b/src/components/Jbl.tsx index a64d23d7e..1cf55cd31 100644 --- a/src/components/Jbl.tsx +++ b/src/components/Jbl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JblProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JblProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jbl = React.forwardRef(function Jbl({color = 'currentColor', size = 24, title = "jbl", ...others}, ref) { - const Jbl = React.forwardRef(function Jbl({color = 'currentColor', size = 24, title = "jbl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jbl - \ No newline at end of file +export default Jbl; diff --git a/src/components/Jcb.tsx b/src/components/Jcb.tsx index 396398078..c583b77fd 100644 --- a/src/components/Jcb.tsx +++ b/src/components/Jcb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JcbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JcbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jcb = React.forwardRef(function Jcb({color = 'currentColor', size = 24, title = "jcb", ...others}, ref) { - const Jcb = React.forwardRef(function Jcb({color = 'currentColor', size = 24, title = "jcb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jcb - \ No newline at end of file +export default Jcb; diff --git a/src/components/Jeep.tsx b/src/components/Jeep.tsx index 8d93b75b0..2075cf482 100644 --- a/src/components/Jeep.tsx +++ b/src/components/Jeep.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JeepProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JeepProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jeep = React.forwardRef(function Jeep({color = 'currentColor', size = 24, title = "jeep", ...others}, ref) { - const Jeep = React.forwardRef(function Jeep({color = 'currentColor', size = 24, title = "jeep", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jeep - \ No newline at end of file +export default Jeep; diff --git a/src/components/Jekyll.tsx b/src/components/Jekyll.tsx index 9bbd1e69a..58c845ce2 100644 --- a/src/components/Jekyll.tsx +++ b/src/components/Jekyll.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JekyllProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JekyllProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jekyll = React.forwardRef(function Jekyll({color = 'currentColor', size = 24, title = "jekyll", ...others}, ref) { - const Jekyll = React.forwardRef(function Jekyll({color = 'currentColor', size = 24, title = "jekyll", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jekyll - \ No newline at end of file +export default Jekyll; diff --git a/src/components/Jellyfin.tsx b/src/components/Jellyfin.tsx index c2bf1d6e6..dd1e605fb 100644 --- a/src/components/Jellyfin.tsx +++ b/src/components/Jellyfin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JellyfinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JellyfinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jellyfin = React.forwardRef(function Jellyfin({color = 'currentColor', size = 24, title = "jellyfin", ...others}, ref) { - const Jellyfin = React.forwardRef(function Jellyfin({color = 'currentColor', size = 24, title = "jellyfin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jellyfin - \ No newline at end of file +export default Jellyfin; diff --git a/src/components/Jenkins.tsx b/src/components/Jenkins.tsx index 06502c94a..f5b0ec775 100644 --- a/src/components/Jenkins.tsx +++ b/src/components/Jenkins.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JenkinsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JenkinsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jenkins = React.forwardRef(function Jenkins({color = 'currentColor', size = 24, title = "jenkins", ...others}, ref) { - const Jenkins = React.forwardRef(function Jenkins({color = 'currentColor', size = 24, title = "jenkins", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jenkins - \ No newline at end of file +export default Jenkins; diff --git a/src/components/Jenkinsx.tsx b/src/components/Jenkinsx.tsx index d28424fab..48c2b9b8f 100644 --- a/src/components/Jenkinsx.tsx +++ b/src/components/Jenkinsx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JenkinsxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JenkinsxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jenkinsx = React.forwardRef(function Jenkinsx({color = 'currentColor', size = 24, title = "jenkinsx", ...others}, ref) { - const Jenkinsx = React.forwardRef(function Jenkinsx({color = 'currentColor', size = 24, title = "jenkinsx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jenkinsx - \ No newline at end of file +export default Jenkinsx; diff --git a/src/components/Jest.tsx b/src/components/Jest.tsx index f2ddcfc60..28aac41f0 100644 --- a/src/components/Jest.tsx +++ b/src/components/Jest.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JestProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jest = React.forwardRef(function Jest({color = 'currentColor', size = 24, title = "jest", ...others}, ref) { - const Jest = React.forwardRef(function Jest({color = 'currentColor', size = 24, title = "jest", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jest - \ No newline at end of file +export default Jest; diff --git a/src/components/Jet.tsx b/src/components/Jet.tsx index d869a05de..617c1841a 100644 --- a/src/components/Jet.tsx +++ b/src/components/Jet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jet = React.forwardRef(function Jet({color = 'currentColor', size = 24, title = "jet", ...others}, ref) { - const Jet = React.forwardRef(function Jet({color = 'currentColor', size = 24, title = "jet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jet - \ No newline at end of file +export default Jet; diff --git a/src/components/Jetbrains.tsx b/src/components/Jetbrains.tsx index fc255b4bc..5dbecae59 100644 --- a/src/components/Jetbrains.tsx +++ b/src/components/Jetbrains.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JetbrainsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JetbrainsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jetbrains = React.forwardRef(function Jetbrains({color = 'currentColor', size = 24, title = "jetbrains", ...others}, ref) { - const Jetbrains = React.forwardRef(function Jetbrains({color = 'currentColor', size = 24, title = "jetbrains", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jetbrains - \ No newline at end of file +export default Jetbrains; diff --git a/src/components/Jetpackcompose.tsx b/src/components/Jetpackcompose.tsx index 630bb5522..222886ed6 100644 --- a/src/components/Jetpackcompose.tsx +++ b/src/components/Jetpackcompose.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JetpackcomposeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JetpackcomposeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jetpackcompose = React.forwardRef(function Jetpackcompose({color = 'currentColor', size = 24, title = "jetpackcompose", ...others}, ref) { - const Jetpackcompose = React.forwardRef(function Jetpackcompose({color = 'currentColor', size = 24, title = "jetpackcompose", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jetpackcompose - \ No newline at end of file +export default Jetpackcompose; diff --git a/src/components/Jfrog.tsx b/src/components/Jfrog.tsx index 3299ae001..8a541f5b7 100644 --- a/src/components/Jfrog.tsx +++ b/src/components/Jfrog.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JfrogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JfrogProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jfrog = React.forwardRef(function Jfrog({color = 'currentColor', size = 24, title = "jfrog", ...others}, ref) { - const Jfrog = React.forwardRef(function Jfrog({color = 'currentColor', size = 24, title = "jfrog", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jfrog - \ No newline at end of file +export default Jfrog; diff --git a/src/components/Jfrogbintray.tsx b/src/components/Jfrogbintray.tsx index 5f34bc1ec..d8c6447ea 100644 --- a/src/components/Jfrogbintray.tsx +++ b/src/components/Jfrogbintray.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JfrogbintrayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JfrogbintrayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jfrogbintray = React.forwardRef(function Jfrogbintray({color = 'currentColor', size = 24, title = "jfrogbintray", ...others}, ref) { - const Jfrogbintray = React.forwardRef(function Jfrogbintray({color = 'currentColor', size = 24, title = "jfrogbintray", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jfrogbintray - \ No newline at end of file +export default Jfrogbintray; diff --git a/src/components/Jinja.tsx b/src/components/Jinja.tsx index ba2078f7c..c6fdd8b5f 100644 --- a/src/components/Jinja.tsx +++ b/src/components/Jinja.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JinjaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JinjaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jinja = React.forwardRef(function Jinja({color = 'currentColor', size = 24, title = "jinja", ...others}, ref) { - const Jinja = React.forwardRef(function Jinja({color = 'currentColor', size = 24, title = "jinja", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jinja - \ No newline at end of file +export default Jinja; diff --git a/src/components/Jira.tsx b/src/components/Jira.tsx index 228fdd00b..54dd60a8e 100644 --- a/src/components/Jira.tsx +++ b/src/components/Jira.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JiraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JiraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jira = React.forwardRef(function Jira({color = 'currentColor', size = 24, title = "jira", ...others}, ref) { - const Jira = React.forwardRef(function Jira({color = 'currentColor', size = 24, title = "jira", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jira - \ No newline at end of file +export default Jira; diff --git a/src/components/Jirasoftware.tsx b/src/components/Jirasoftware.tsx index a9bfb373d..1934ac970 100644 --- a/src/components/Jirasoftware.tsx +++ b/src/components/Jirasoftware.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JirasoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JirasoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jirasoftware = React.forwardRef(function Jirasoftware({color = 'currentColor', size = 24, title = "jirasoftware", ...others}, ref) { - const Jirasoftware = React.forwardRef(function Jirasoftware({color = 'currentColor', size = 24, title = "jirasoftware", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jirasoftware - \ No newline at end of file +export default Jirasoftware; diff --git a/src/components/Jitsi.tsx b/src/components/Jitsi.tsx index fb9758590..976b36ab8 100644 --- a/src/components/Jitsi.tsx +++ b/src/components/Jitsi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JitsiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JitsiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jitsi = React.forwardRef(function Jitsi({color = 'currentColor', size = 24, title = "jitsi", ...others}, ref) { - const Jitsi = React.forwardRef(function Jitsi({color = 'currentColor', size = 24, title = "jitsi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jitsi - \ No newline at end of file +export default Jitsi; diff --git a/src/components/Johndeere.tsx b/src/components/Johndeere.tsx index b21a62e36..a22e9d476 100644 --- a/src/components/Johndeere.tsx +++ b/src/components/Johndeere.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JohndeereProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JohndeereProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Johndeere = React.forwardRef(function Johndeere({color = 'currentColor', size = 24, title = "johndeere", ...others}, ref) { - const Johndeere = React.forwardRef(function Johndeere({color = 'currentColor', size = 24, title = "johndeere", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Johndeere - \ No newline at end of file +export default Johndeere; diff --git a/src/components/Joomla.tsx b/src/components/Joomla.tsx index 452fee96d..36325de02 100644 --- a/src/components/Joomla.tsx +++ b/src/components/Joomla.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JoomlaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JoomlaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Joomla = React.forwardRef(function Joomla({color = 'currentColor', size = 24, title = "joomla", ...others}, ref) { - const Joomla = React.forwardRef(function Joomla({color = 'currentColor', size = 24, title = "joomla", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Joomla - \ No newline at end of file +export default Joomla; diff --git a/src/components/Joplin.tsx b/src/components/Joplin.tsx index e604a1d2f..25d6fb9ee 100644 --- a/src/components/Joplin.tsx +++ b/src/components/Joplin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JoplinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JoplinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Joplin = React.forwardRef(function Joplin({color = 'currentColor', size = 24, title = "joplin", ...others}, ref) { - const Joplin = React.forwardRef(function Joplin({color = 'currentColor', size = 24, title = "joplin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Joplin - \ No newline at end of file +export default Joplin; diff --git a/src/components/Jordan.tsx b/src/components/Jordan.tsx index 55d8c895f..931a62513 100644 --- a/src/components/Jordan.tsx +++ b/src/components/Jordan.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JordanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JordanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jordan = React.forwardRef(function Jordan({color = 'currentColor', size = 24, title = "jordan", ...others}, ref) { - const Jordan = React.forwardRef(function Jordan({color = 'currentColor', size = 24, title = "jordan", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jordan - \ No newline at end of file +export default Jordan; diff --git a/src/components/Jpeg.tsx b/src/components/Jpeg.tsx index b3640829f..a48e30f08 100644 --- a/src/components/Jpeg.tsx +++ b/src/components/Jpeg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JpegProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JpegProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jpeg = React.forwardRef(function Jpeg({color = 'currentColor', size = 24, title = "jpeg", ...others}, ref) { - const Jpeg = React.forwardRef(function Jpeg({color = 'currentColor', size = 24, title = "jpeg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jpeg - \ No newline at end of file +export default Jpeg; diff --git a/src/components/Jquery.tsx b/src/components/Jquery.tsx index e4afab210..5271b1e83 100644 --- a/src/components/Jquery.tsx +++ b/src/components/Jquery.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JqueryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JqueryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jquery = React.forwardRef(function Jquery({color = 'currentColor', size = 24, title = "jquery", ...others}, ref) { - const Jquery = React.forwardRef(function Jquery({color = 'currentColor', size = 24, title = "jquery", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jquery - \ No newline at end of file +export default Jquery; diff --git a/src/components/Jrgroup.tsx b/src/components/Jrgroup.tsx index 3d27ab5f7..49521e742 100644 --- a/src/components/Jrgroup.tsx +++ b/src/components/Jrgroup.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JrgroupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JrgroupProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jrgroup = React.forwardRef(function Jrgroup({color = 'currentColor', size = 24, title = "jrgroup", ...others}, ref) { - const Jrgroup = React.forwardRef(function Jrgroup({color = 'currentColor', size = 24, title = "jrgroup", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jrgroup - \ No newline at end of file +export default Jrgroup; diff --git a/src/components/Jsdelivr.tsx b/src/components/Jsdelivr.tsx index ac921ff9d..b639d7941 100644 --- a/src/components/Jsdelivr.tsx +++ b/src/components/Jsdelivr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JsdelivrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JsdelivrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jsdelivr = React.forwardRef(function Jsdelivr({color = 'currentColor', size = 24, title = "jsdelivr", ...others}, ref) { - const Jsdelivr = React.forwardRef(function Jsdelivr({color = 'currentColor', size = 24, title = "jsdelivr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jsdelivr - \ No newline at end of file +export default Jsdelivr; diff --git a/src/components/Jsfiddle.tsx b/src/components/Jsfiddle.tsx index 36701680e..8aa506b7d 100644 --- a/src/components/Jsfiddle.tsx +++ b/src/components/Jsfiddle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JsfiddleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JsfiddleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jsfiddle = React.forwardRef(function Jsfiddle({color = 'currentColor', size = 24, title = "jsfiddle", ...others}, ref) { - const Jsfiddle = React.forwardRef(function Jsfiddle({color = 'currentColor', size = 24, title = "jsfiddle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jsfiddle - \ No newline at end of file +export default Jsfiddle; diff --git a/src/components/Json.tsx b/src/components/Json.tsx index d98e1f113..5fd5d78b7 100644 --- a/src/components/Json.tsx +++ b/src/components/Json.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JsonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JsonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Json = React.forwardRef(function Json({color = 'currentColor', size = 24, title = "json", ...others}, ref) { - const Json = React.forwardRef(function Json({color = 'currentColor', size = 24, title = "json", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Json - \ No newline at end of file +export default Json; diff --git a/src/components/Jsonwebtokens.tsx b/src/components/Jsonwebtokens.tsx index 9ec2f30fc..a1586d942 100644 --- a/src/components/Jsonwebtokens.tsx +++ b/src/components/Jsonwebtokens.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JsonwebtokensProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JsonwebtokensProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jsonwebtokens = React.forwardRef(function Jsonwebtokens({color = 'currentColor', size = 24, title = "jsonwebtokens", ...others}, ref) { - const Jsonwebtokens = React.forwardRef(function Jsonwebtokens({color = 'currentColor', size = 24, title = "jsonwebtokens", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jsonwebtokens - \ No newline at end of file +export default Jsonwebtokens; diff --git a/src/components/Jss.tsx b/src/components/Jss.tsx index 4f933c1fa..d447f7be8 100644 --- a/src/components/Jss.tsx +++ b/src/components/Jss.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JssProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jss = React.forwardRef(function Jss({color = 'currentColor', size = 24, title = "jss", ...others}, ref) { - const Jss = React.forwardRef(function Jss({color = 'currentColor', size = 24, title = "jss", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jss - \ No newline at end of file +export default Jss; diff --git a/src/components/Juke.tsx b/src/components/Juke.tsx new file mode 100644 index 000000000..ed440969d --- /dev/null +++ b/src/components/Juke.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type JukeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Juke = React.forwardRef(function Juke({color = 'currentColor', size = 24, title = "juke", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Juke; diff --git a/src/components/Julia.tsx b/src/components/Julia.tsx index 1bdca007d..6a3eb37aa 100644 --- a/src/components/Julia.tsx +++ b/src/components/Julia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JuliaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JuliaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Julia = React.forwardRef(function Julia({color = 'currentColor', size = 24, title = "julia", ...others}, ref) { - const Julia = React.forwardRef(function Julia({color = 'currentColor', size = 24, title = "julia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Julia - \ No newline at end of file +export default Julia; diff --git a/src/components/Junipernetworks.tsx b/src/components/Junipernetworks.tsx index 1f2d5a6f9..b2c915bb4 100644 --- a/src/components/Junipernetworks.tsx +++ b/src/components/Junipernetworks.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JunipernetworksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JunipernetworksProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Junipernetworks = React.forwardRef(function Junipernetworks({color = 'currentColor', size = 24, title = "junipernetworks", ...others}, ref) { - const Junipernetworks = React.forwardRef(function Junipernetworks({color = 'currentColor', size = 24, title = "junipernetworks", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Junipernetworks - \ No newline at end of file +export default Junipernetworks; diff --git a/src/components/Junit5.tsx b/src/components/Junit5.tsx index cc3a2ada4..29d54ae0f 100644 --- a/src/components/Junit5.tsx +++ b/src/components/Junit5.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Junit5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Junit5Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Junit5 = React.forwardRef(function Junit5({color = 'currentColor', size = 24, title = "junit5", ...others}, ref) { - const Junit5 = React.forwardRef(function Junit5({color = 'currentColor', size = 24, title = "junit5", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Junit5 - \ No newline at end of file +export default Junit5; diff --git a/src/components/Jupyter.tsx b/src/components/Jupyter.tsx index 180966461..061a80624 100644 --- a/src/components/Jupyter.tsx +++ b/src/components/Jupyter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JupyterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JupyterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Jupyter = React.forwardRef(function Jupyter({color = 'currentColor', size = 24, title = "jupyter", ...others}, ref) { - const Jupyter = React.forwardRef(function Jupyter({color = 'currentColor', size = 24, title = "jupyter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Jupyter - \ No newline at end of file +export default Jupyter; diff --git a/src/components/Justeat.tsx b/src/components/Justeat.tsx index 0727a4018..b68ffb557 100644 --- a/src/components/Justeat.tsx +++ b/src/components/Justeat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JusteatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JusteatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Justeat = React.forwardRef(function Justeat({color = 'currentColor', size = 24, title = "justeat", ...others}, ref) { - const Justeat = React.forwardRef(function Justeat({color = 'currentColor', size = 24, title = "justeat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Justeat - \ No newline at end of file +export default Justeat; diff --git a/src/components/Justgiving.tsx b/src/components/Justgiving.tsx index e4d96a44d..0df5ff554 100644 --- a/src/components/Justgiving.tsx +++ b/src/components/Justgiving.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type JustgivingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type JustgivingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Justgiving = React.forwardRef(function Justgiving({color = 'currentColor', size = 24, title = "justgiving", ...others}, ref) { - const Justgiving = React.forwardRef(function Justgiving({color = 'currentColor', size = 24, title = "justgiving", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Justgiving - \ No newline at end of file +export default Justgiving; diff --git a/src/components/KSix.tsx b/src/components/KSix.tsx index 648f9fdda..4df330dc6 100644 --- a/src/components/KSix.tsx +++ b/src/components/KSix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KSixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KSixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const KSix = React.forwardRef(function KSix({color = 'currentColor', size = 24, title = "k6", ...others}, ref) { - const KSix = React.forwardRef(function KSix({color = 'currentColor', size = 24, title = "k6", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default KSix - \ No newline at end of file +export default KSix; diff --git a/src/components/KThreeS.tsx b/src/components/KThreeS.tsx index 9072bd445..ee0102401 100644 --- a/src/components/KThreeS.tsx +++ b/src/components/KThreeS.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KThreeSProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KThreeSProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const KThreeS = React.forwardRef(function KThreeS({color = 'currentColor', size = 24, title = "k3s", ...others}, ref) { - const KThreeS = React.forwardRef(function KThreeS({color = 'currentColor', size = 24, title = "k3s", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default KThreeS - \ No newline at end of file +export default KThreeS; diff --git a/src/components/Kaggle.tsx b/src/components/Kaggle.tsx index d8cdec14a..38dab4e7f 100644 --- a/src/components/Kaggle.tsx +++ b/src/components/Kaggle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KaggleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KaggleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kaggle = React.forwardRef(function Kaggle({color = 'currentColor', size = 24, title = "kaggle", ...others}, ref) { - const Kaggle = React.forwardRef(function Kaggle({color = 'currentColor', size = 24, title = "kaggle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kaggle - \ No newline at end of file +export default Kaggle; diff --git a/src/components/Kahoot.tsx b/src/components/Kahoot.tsx index 513cba416..b66065dc8 100644 --- a/src/components/Kahoot.tsx +++ b/src/components/Kahoot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KahootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KahootProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kahoot = React.forwardRef(function Kahoot({color = 'currentColor', size = 24, title = "kahoot", ...others}, ref) { - const Kahoot = React.forwardRef(function Kahoot({color = 'currentColor', size = 24, title = "kahoot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kahoot - \ No newline at end of file +export default Kahoot; diff --git a/src/components/Kaios.tsx b/src/components/Kaios.tsx index 3b9fff67e..5ee402420 100644 --- a/src/components/Kaios.tsx +++ b/src/components/Kaios.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KaiosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KaiosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kaios = React.forwardRef(function Kaios({color = 'currentColor', size = 24, title = "kaios", ...others}, ref) { - const Kaios = React.forwardRef(function Kaios({color = 'currentColor', size = 24, title = "kaios", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kaios - \ No newline at end of file +export default Kaios; diff --git a/src/components/Kakao.tsx b/src/components/Kakao.tsx index 81a79814d..7571e3fa9 100644 --- a/src/components/Kakao.tsx +++ b/src/components/Kakao.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KakaoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KakaoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kakao = React.forwardRef(function Kakao({color = 'currentColor', size = 24, title = "kakao", ...others}, ref) { - const Kakao = React.forwardRef(function Kakao({color = 'currentColor', size = 24, title = "kakao", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kakao - \ No newline at end of file +export default Kakao; diff --git a/src/components/Kakaotalk.tsx b/src/components/Kakaotalk.tsx index 9fd32cb68..30a60fede 100644 --- a/src/components/Kakaotalk.tsx +++ b/src/components/Kakaotalk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KakaotalkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KakaotalkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kakaotalk = React.forwardRef(function Kakaotalk({color = 'currentColor', size = 24, title = "kakaotalk", ...others}, ref) { - const Kakaotalk = React.forwardRef(function Kakaotalk({color = 'currentColor', size = 24, title = "kakaotalk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kakaotalk - \ No newline at end of file +export default Kakaotalk; diff --git a/src/components/Kalilinux.tsx b/src/components/Kalilinux.tsx index a34442038..602dc49e3 100644 --- a/src/components/Kalilinux.tsx +++ b/src/components/Kalilinux.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KalilinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KalilinuxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kalilinux = React.forwardRef(function Kalilinux({color = 'currentColor', size = 24, title = "kalilinux", ...others}, ref) { - const Kalilinux = React.forwardRef(function Kalilinux({color = 'currentColor', size = 24, title = "kalilinux", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kalilinux - \ No newline at end of file +export default Kalilinux; diff --git a/src/components/Kaniko.tsx b/src/components/Kaniko.tsx index 9cc6cb0f6..447519598 100644 --- a/src/components/Kaniko.tsx +++ b/src/components/Kaniko.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KanikoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KanikoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kaniko = React.forwardRef(function Kaniko({color = 'currentColor', size = 24, title = "kaniko", ...others}, ref) { - const Kaniko = React.forwardRef(function Kaniko({color = 'currentColor', size = 24, title = "kaniko", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kaniko - \ No newline at end of file +export default Kaniko; diff --git a/src/components/Karlsruherverkehrsverbund.tsx b/src/components/Karlsruherverkehrsverbund.tsx index 6c50f6e93..631e62b1b 100644 --- a/src/components/Karlsruherverkehrsverbund.tsx +++ b/src/components/Karlsruherverkehrsverbund.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KarlsruherverkehrsverbundProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KarlsruherverkehrsverbundProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Karlsruherverkehrsverbund = React.forwardRef(function Karlsruherverkehrsverbund({color = 'currentColor', size = 24, title = "karlsruherverkehrsverbund", ...others}, ref) { - const Karlsruherverkehrsverbund = React.forwardRef(function Karlsruherverkehrsverbund({color = 'currentColor', size = 24, title = "karlsruherverkehrsverbund", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Karlsruherverkehrsverbund - \ No newline at end of file +export default Karlsruherverkehrsverbund; diff --git a/src/components/Kasasmart.tsx b/src/components/Kasasmart.tsx index 2d1682ee1..a2d6173bc 100644 --- a/src/components/Kasasmart.tsx +++ b/src/components/Kasasmart.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KasasmartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KasasmartProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kasasmart = React.forwardRef(function Kasasmart({color = 'currentColor', size = 24, title = "kasasmart", ...others}, ref) { - const Kasasmart = React.forwardRef(function Kasasmart({color = 'currentColor', size = 24, title = "kasasmart", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kasasmart - \ No newline at end of file +export default Kasasmart; diff --git a/src/components/Kashflow.tsx b/src/components/Kashflow.tsx index 781c274ac..dfad25e41 100644 --- a/src/components/Kashflow.tsx +++ b/src/components/Kashflow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KashflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KashflowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kashflow = React.forwardRef(function Kashflow({color = 'currentColor', size = 24, title = "kashflow", ...others}, ref) { - const Kashflow = React.forwardRef(function Kashflow({color = 'currentColor', size = 24, title = "kashflow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kashflow - \ No newline at end of file +export default Kashflow; diff --git a/src/components/Kaspersky.tsx b/src/components/Kaspersky.tsx index 899a6763f..228bb26bd 100644 --- a/src/components/Kaspersky.tsx +++ b/src/components/Kaspersky.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KasperskyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KasperskyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kaspersky = React.forwardRef(function Kaspersky({color = 'currentColor', size = 24, title = "kaspersky", ...others}, ref) { - const Kaspersky = React.forwardRef(function Kaspersky({color = 'currentColor', size = 24, title = "kaspersky", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kaspersky - \ No newline at end of file +export default Kaspersky; diff --git a/src/components/Katacoda.tsx b/src/components/Katacoda.tsx index eb88c7c43..c71a3389e 100644 --- a/src/components/Katacoda.tsx +++ b/src/components/Katacoda.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KatacodaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KatacodaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Katacoda = React.forwardRef(function Katacoda({color = 'currentColor', size = 24, title = "katacoda", ...others}, ref) { - const Katacoda = React.forwardRef(function Katacoda({color = 'currentColor', size = 24, title = "katacoda", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Katacoda - \ No newline at end of file +export default Katacoda; diff --git a/src/components/Katana.tsx b/src/components/Katana.tsx index 016c73740..2718ec00f 100644 --- a/src/components/Katana.tsx +++ b/src/components/Katana.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KatanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KatanaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Katana = React.forwardRef(function Katana({color = 'currentColor', size = 24, title = "katana", ...others}, ref) { - const Katana = React.forwardRef(function Katana({color = 'currentColor', size = 24, title = "katana", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Katana - \ No newline at end of file +export default Katana; diff --git a/src/components/Kaufland.tsx b/src/components/Kaufland.tsx index 82f224ea3..1515cea12 100644 --- a/src/components/Kaufland.tsx +++ b/src/components/Kaufland.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KauflandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KauflandProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kaufland = React.forwardRef(function Kaufland({color = 'currentColor', size = 24, title = "kaufland", ...others}, ref) { - const Kaufland = React.forwardRef(function Kaufland({color = 'currentColor', size = 24, title = "kaufland", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kaufland - \ No newline at end of file +export default Kaufland; diff --git a/src/components/Kde.tsx b/src/components/Kde.tsx index 37909b672..231d1938d 100644 --- a/src/components/Kde.tsx +++ b/src/components/Kde.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KdeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KdeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kde = React.forwardRef(function Kde({color = 'currentColor', size = 24, title = "kde", ...others}, ref) { - const Kde = React.forwardRef(function Kde({color = 'currentColor', size = 24, title = "kde", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kde - \ No newline at end of file +export default Kde; diff --git a/src/components/Kdenlive.tsx b/src/components/Kdenlive.tsx index 7033e59e1..8955b9303 100644 --- a/src/components/Kdenlive.tsx +++ b/src/components/Kdenlive.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KdenliveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KdenliveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kdenlive = React.forwardRef(function Kdenlive({color = 'currentColor', size = 24, title = "kdenlive", ...others}, ref) { - const Kdenlive = React.forwardRef(function Kdenlive({color = 'currentColor', size = 24, title = "kdenlive", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kdenlive - \ No newline at end of file +export default Kdenlive; diff --git a/src/components/Keepachangelog.tsx b/src/components/Keepachangelog.tsx index d46a5c440..0dd05af5c 100644 --- a/src/components/Keepachangelog.tsx +++ b/src/components/Keepachangelog.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KeepachangelogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KeepachangelogProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Keepachangelog = React.forwardRef(function Keepachangelog({color = 'currentColor', size = 24, title = "keepachangelog", ...others}, ref) { - const Keepachangelog = React.forwardRef(function Keepachangelog({color = 'currentColor', size = 24, title = "keepachangelog", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Keepachangelog - \ No newline at end of file +export default Keepachangelog; diff --git a/src/components/Keepassxc.tsx b/src/components/Keepassxc.tsx index ce5016db6..ee6454109 100644 --- a/src/components/Keepassxc.tsx +++ b/src/components/Keepassxc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KeepassxcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KeepassxcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Keepassxc = React.forwardRef(function Keepassxc({color = 'currentColor', size = 24, title = "keepassxc", ...others}, ref) { - const Keepassxc = React.forwardRef(function Keepassxc({color = 'currentColor', size = 24, title = "keepassxc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Keepassxc - \ No newline at end of file +export default Keepassxc; diff --git a/src/components/Kentico.tsx b/src/components/Kentico.tsx index d187a1eff..93974fbc7 100644 --- a/src/components/Kentico.tsx +++ b/src/components/Kentico.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KenticoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KenticoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kentico = React.forwardRef(function Kentico({color = 'currentColor', size = 24, title = "kentico", ...others}, ref) { - const Kentico = React.forwardRef(function Kentico({color = 'currentColor', size = 24, title = "kentico", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kentico - \ No newline at end of file +export default Kentico; diff --git a/src/components/Keras.tsx b/src/components/Keras.tsx index 78b7fd60a..32c1ca566 100644 --- a/src/components/Keras.tsx +++ b/src/components/Keras.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KerasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KerasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Keras = React.forwardRef(function Keras({color = 'currentColor', size = 24, title = "keras", ...others}, ref) { - const Keras = React.forwardRef(function Keras({color = 'currentColor', size = 24, title = "keras", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Keras - \ No newline at end of file +export default Keras; diff --git a/src/components/Keybase.tsx b/src/components/Keybase.tsx index 42101ca05..aa831e6c8 100644 --- a/src/components/Keybase.tsx +++ b/src/components/Keybase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KeybaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KeybaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Keybase = React.forwardRef(function Keybase({color = 'currentColor', size = 24, title = "keybase", ...others}, ref) { - const Keybase = React.forwardRef(function Keybase({color = 'currentColor', size = 24, title = "keybase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Keybase - \ No newline at end of file +export default Keybase; diff --git a/src/components/Keycdn.tsx b/src/components/Keycdn.tsx index 992c45ba0..c7065cfb8 100644 --- a/src/components/Keycdn.tsx +++ b/src/components/Keycdn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KeycdnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KeycdnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Keycdn = React.forwardRef(function Keycdn({color = 'currentColor', size = 24, title = "keycdn", ...others}, ref) { - const Keycdn = React.forwardRef(function Keycdn({color = 'currentColor', size = 24, title = "keycdn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Keycdn - \ No newline at end of file +export default Keycdn; diff --git a/src/components/Keystone.tsx b/src/components/Keystone.tsx index 3d0ca010a..18f26ff78 100644 --- a/src/components/Keystone.tsx +++ b/src/components/Keystone.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KeystoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KeystoneProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Keystone = React.forwardRef(function Keystone({color = 'currentColor', size = 24, title = "keystone", ...others}, ref) { - const Keystone = React.forwardRef(function Keystone({color = 'currentColor', size = 24, title = "keystone", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Keystone - \ No newline at end of file +export default Keystone; diff --git a/src/components/Kfc.tsx b/src/components/Kfc.tsx index 7077451f2..c7f677e26 100644 --- a/src/components/Kfc.tsx +++ b/src/components/Kfc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KfcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KfcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kfc = React.forwardRef(function Kfc({color = 'currentColor', size = 24, title = "kfc", ...others}, ref) { - const Kfc = React.forwardRef(function Kfc({color = 'currentColor', size = 24, title = "kfc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kfc - \ No newline at end of file +export default Kfc; diff --git a/src/components/Khanacademy.tsx b/src/components/Khanacademy.tsx index 1a6e9815b..f3dcf3b5b 100644 --- a/src/components/Khanacademy.tsx +++ b/src/components/Khanacademy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KhanacademyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KhanacademyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Khanacademy = React.forwardRef(function Khanacademy({color = 'currentColor', size = 24, title = "khanacademy", ...others}, ref) { - const Khanacademy = React.forwardRef(function Khanacademy({color = 'currentColor', size = 24, title = "khanacademy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Khanacademy - \ No newline at end of file +export default Khanacademy; diff --git a/src/components/Khronosgroup.tsx b/src/components/Khronosgroup.tsx index 0f8e437fb..6950d3440 100644 --- a/src/components/Khronosgroup.tsx +++ b/src/components/Khronosgroup.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KhronosgroupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KhronosgroupProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Khronosgroup = React.forwardRef(function Khronosgroup({color = 'currentColor', size = 24, title = "khronosgroup", ...others}, ref) { - const Khronosgroup = React.forwardRef(function Khronosgroup({color = 'currentColor', size = 24, title = "khronosgroup", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Khronosgroup - \ No newline at end of file +export default Khronosgroup; diff --git a/src/components/Kia.tsx b/src/components/Kia.tsx index 008f51322..f8ffa4903 100644 --- a/src/components/Kia.tsx +++ b/src/components/Kia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KiaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kia = React.forwardRef(function Kia({color = 'currentColor', size = 24, title = "kia", ...others}, ref) { - const Kia = React.forwardRef(function Kia({color = 'currentColor', size = 24, title = "kia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kia - \ No newline at end of file +export default Kia; diff --git a/src/components/Kibana.tsx b/src/components/Kibana.tsx index 77d622b26..a8303094d 100644 --- a/src/components/Kibana.tsx +++ b/src/components/Kibana.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KibanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KibanaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kibana = React.forwardRef(function Kibana({color = 'currentColor', size = 24, title = "kibana", ...others}, ref) { - const Kibana = React.forwardRef(function Kibana({color = 'currentColor', size = 24, title = "kibana", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kibana - \ No newline at end of file +export default Kibana; diff --git a/src/components/Kicad.tsx b/src/components/Kicad.tsx index 7434286d9..c44d50729 100644 --- a/src/components/Kicad.tsx +++ b/src/components/Kicad.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KicadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KicadProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kicad = React.forwardRef(function Kicad({color = 'currentColor', size = 24, title = "kicad", ...others}, ref) { - const Kicad = React.forwardRef(function Kicad({color = 'currentColor', size = 24, title = "kicad", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kicad - \ No newline at end of file +export default Kicad; diff --git a/src/components/Kickstarter.tsx b/src/components/Kickstarter.tsx index b0d185c07..bcec6ddf3 100644 --- a/src/components/Kickstarter.tsx +++ b/src/components/Kickstarter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KickstarterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KickstarterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kickstarter = React.forwardRef(function Kickstarter({color = 'currentColor', size = 24, title = "kickstarter", ...others}, ref) { - const Kickstarter = React.forwardRef(function Kickstarter({color = 'currentColor', size = 24, title = "kickstarter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kickstarter - \ No newline at end of file +export default Kickstarter; diff --git a/src/components/Kik.tsx b/src/components/Kik.tsx index 3e46cbe46..d231680b7 100644 --- a/src/components/Kik.tsx +++ b/src/components/Kik.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KikProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KikProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kik = React.forwardRef(function Kik({color = 'currentColor', size = 24, title = "kik", ...others}, ref) { - const Kik = React.forwardRef(function Kik({color = 'currentColor', size = 24, title = "kik", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kik - \ No newline at end of file +export default Kik; diff --git a/src/components/Kingstontechnology.tsx b/src/components/Kingstontechnology.tsx index bfb05b480..21e1bcdb0 100644 --- a/src/components/Kingstontechnology.tsx +++ b/src/components/Kingstontechnology.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KingstontechnologyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KingstontechnologyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kingstontechnology = React.forwardRef(function Kingstontechnology({color = 'currentColor', size = 24, title = "kingstontechnology", ...others}, ref) { - const Kingstontechnology = React.forwardRef(function Kingstontechnology({color = 'currentColor', size = 24, title = "kingstontechnology", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kingstontechnology - \ No newline at end of file +export default Kingstontechnology; diff --git a/src/components/Kinopoisk.tsx b/src/components/Kinopoisk.tsx index fc27cd0c3..f678e39b8 100644 --- a/src/components/Kinopoisk.tsx +++ b/src/components/Kinopoisk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KinopoiskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KinopoiskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kinopoisk = React.forwardRef(function Kinopoisk({color = 'currentColor', size = 24, title = "kinopoisk", ...others}, ref) { - const Kinopoisk = React.forwardRef(function Kinopoisk({color = 'currentColor', size = 24, title = "kinopoisk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kinopoisk - \ No newline at end of file +export default Kinopoisk; diff --git a/src/components/Kirby.tsx b/src/components/Kirby.tsx index a54480dba..e48423e22 100644 --- a/src/components/Kirby.tsx +++ b/src/components/Kirby.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KirbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KirbyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kirby = React.forwardRef(function Kirby({color = 'currentColor', size = 24, title = "kirby", ...others}, ref) { - const Kirby = React.forwardRef(function Kirby({color = 'currentColor', size = 24, title = "kirby", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kirby - \ No newline at end of file +export default Kirby; diff --git a/src/components/Kitsu.tsx b/src/components/Kitsu.tsx index 403a69dd6..51ffb851d 100644 --- a/src/components/Kitsu.tsx +++ b/src/components/Kitsu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KitsuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KitsuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kitsu = React.forwardRef(function Kitsu({color = 'currentColor', size = 24, title = "kitsu", ...others}, ref) { - const Kitsu = React.forwardRef(function Kitsu({color = 'currentColor', size = 24, title = "kitsu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kitsu - \ No newline at end of file +export default Kitsu; diff --git a/src/components/Klarna.tsx b/src/components/Klarna.tsx index 0343a4e79..cc9a911ba 100644 --- a/src/components/Klarna.tsx +++ b/src/components/Klarna.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KlarnaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KlarnaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Klarna = React.forwardRef(function Klarna({color = 'currentColor', size = 24, title = "klarna", ...others}, ref) { - const Klarna = React.forwardRef(function Klarna({color = 'currentColor', size = 24, title = "klarna", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Klarna - \ No newline at end of file +export default Klarna; diff --git a/src/components/Klm.tsx b/src/components/Klm.tsx index 06fd1a5c8..dfc5d59e6 100644 --- a/src/components/Klm.tsx +++ b/src/components/Klm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KlmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KlmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Klm = React.forwardRef(function Klm({color = 'currentColor', size = 24, title = "klm", ...others}, ref) { - const Klm = React.forwardRef(function Klm({color = 'currentColor', size = 24, title = "klm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Klm - \ No newline at end of file +export default Klm; diff --git a/src/components/Klook.tsx b/src/components/Klook.tsx index 397e5cf6d..6c583ade9 100644 --- a/src/components/Klook.tsx +++ b/src/components/Klook.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KlookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KlookProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Klook = React.forwardRef(function Klook({color = 'currentColor', size = 24, title = "klook", ...others}, ref) { - const Klook = React.forwardRef(function Klook({color = 'currentColor', size = 24, title = "klook", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Klook - \ No newline at end of file +export default Klook; diff --git a/src/components/Knative.tsx b/src/components/Knative.tsx index a5f2265fb..0680f11a6 100644 --- a/src/components/Knative.tsx +++ b/src/components/Knative.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KnativeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KnativeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Knative = React.forwardRef(function Knative({color = 'currentColor', size = 24, title = "knative", ...others}, ref) { - const Knative = React.forwardRef(function Knative({color = 'currentColor', size = 24, title = "knative", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Knative - \ No newline at end of file +export default Knative; diff --git a/src/components/Knowledgebase.tsx b/src/components/Knowledgebase.tsx index 2b2a2e27d..61e58498f 100644 --- a/src/components/Knowledgebase.tsx +++ b/src/components/Knowledgebase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KnowledgebaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KnowledgebaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Knowledgebase = React.forwardRef(function Knowledgebase({color = 'currentColor', size = 24, title = "knowledgebase", ...others}, ref) { - const Knowledgebase = React.forwardRef(function Knowledgebase({color = 'currentColor', size = 24, title = "knowledgebase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Knowledgebase - \ No newline at end of file +export default Knowledgebase; diff --git a/src/components/Known.tsx b/src/components/Known.tsx index 4b8c52b1f..9adb6d410 100644 --- a/src/components/Known.tsx +++ b/src/components/Known.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KnownProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KnownProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Known = React.forwardRef(function Known({color = 'currentColor', size = 24, title = "known", ...others}, ref) { - const Known = React.forwardRef(function Known({color = 'currentColor', size = 24, title = "known", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Known - \ No newline at end of file +export default Known; diff --git a/src/components/Koa.tsx b/src/components/Koa.tsx index a475893a4..03b5dbdd3 100644 --- a/src/components/Koa.tsx +++ b/src/components/Koa.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KoaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KoaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Koa = React.forwardRef(function Koa({color = 'currentColor', size = 24, title = "koa", ...others}, ref) { - const Koa = React.forwardRef(function Koa({color = 'currentColor', size = 24, title = "koa", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Koa - \ No newline at end of file +export default Koa; diff --git a/src/components/Koc.tsx b/src/components/Koc.tsx index 987be67e6..6dcd3a6af 100644 --- a/src/components/Koc.tsx +++ b/src/components/Koc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KocProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KocProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Koc = React.forwardRef(function Koc({color = 'currentColor', size = 24, title = "koc", ...others}, ref) { - const Koc = React.forwardRef(function Koc({color = 'currentColor', size = 24, title = "koc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Koc - \ No newline at end of file +export default Koc; diff --git a/src/components/Kodi.tsx b/src/components/Kodi.tsx index b0c87ad8b..8f00fac5a 100644 --- a/src/components/Kodi.tsx +++ b/src/components/Kodi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KodiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KodiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kodi = React.forwardRef(function Kodi({color = 'currentColor', size = 24, title = "kodi", ...others}, ref) { - const Kodi = React.forwardRef(function Kodi({color = 'currentColor', size = 24, title = "kodi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kodi - \ No newline at end of file +export default Kodi; diff --git a/src/components/Kofax.tsx b/src/components/Kofax.tsx index 568405383..cc357698b 100644 --- a/src/components/Kofax.tsx +++ b/src/components/Kofax.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KofaxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KofaxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kofax = React.forwardRef(function Kofax({color = 'currentColor', size = 24, title = "kofax", ...others}, ref) { - const Kofax = React.forwardRef(function Kofax({color = 'currentColor', size = 24, title = "kofax", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kofax - \ No newline at end of file +export default Kofax; diff --git a/src/components/Kofi.tsx b/src/components/Kofi.tsx index 6f55aa087..4f8d6556f 100644 --- a/src/components/Kofi.tsx +++ b/src/components/Kofi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KofiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KofiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kofi = React.forwardRef(function Kofi({color = 'currentColor', size = 24, title = "kofi", ...others}, ref) { - const Kofi = React.forwardRef(function Kofi({color = 'currentColor', size = 24, title = "kofi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kofi - \ No newline at end of file +export default Kofi; diff --git a/src/components/Komoot.tsx b/src/components/Komoot.tsx index 9e3ffe5b3..b9928dced 100644 --- a/src/components/Komoot.tsx +++ b/src/components/Komoot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KomootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KomootProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Komoot = React.forwardRef(function Komoot({color = 'currentColor', size = 24, title = "komoot", ...others}, ref) { - const Komoot = React.forwardRef(function Komoot({color = 'currentColor', size = 24, title = "komoot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Komoot - \ No newline at end of file +export default Komoot; diff --git a/src/components/Konami.tsx b/src/components/Konami.tsx index c05ca4516..d8eaf280b 100644 --- a/src/components/Konami.tsx +++ b/src/components/Konami.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KonamiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KonamiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Konami = React.forwardRef(function Konami({color = 'currentColor', size = 24, title = "konami", ...others}, ref) { - const Konami = React.forwardRef(function Konami({color = 'currentColor', size = 24, title = "konami", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Konami - \ No newline at end of file +export default Konami; diff --git a/src/components/Kong.tsx b/src/components/Kong.tsx index 2e8b02acb..bffe32204 100644 --- a/src/components/Kong.tsx +++ b/src/components/Kong.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KongProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KongProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kong = React.forwardRef(function Kong({color = 'currentColor', size = 24, title = "kong", ...others}, ref) { - const Kong = React.forwardRef(function Kong({color = 'currentColor', size = 24, title = "kong", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kong - \ No newline at end of file +export default Kong; diff --git a/src/components/Kongregate.tsx b/src/components/Kongregate.tsx index 8a47d1042..f6d2ebd68 100644 --- a/src/components/Kongregate.tsx +++ b/src/components/Kongregate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KongregateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KongregateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kongregate = React.forwardRef(function Kongregate({color = 'currentColor', size = 24, title = "kongregate", ...others}, ref) { - const Kongregate = React.forwardRef(function Kongregate({color = 'currentColor', size = 24, title = "kongregate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kongregate - \ No newline at end of file +export default Kongregate; diff --git a/src/components/Konva.tsx b/src/components/Konva.tsx index 3a45fd8b2..2344a17c9 100644 --- a/src/components/Konva.tsx +++ b/src/components/Konva.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KonvaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KonvaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Konva = React.forwardRef(function Konva({color = 'currentColor', size = 24, title = "konva", ...others}, ref) { - const Konva = React.forwardRef(function Konva({color = 'currentColor', size = 24, title = "konva", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Konva - \ No newline at end of file +export default Konva; diff --git a/src/components/Kotlin.tsx b/src/components/Kotlin.tsx index 1949f87f4..400fa8b41 100644 --- a/src/components/Kotlin.tsx +++ b/src/components/Kotlin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KotlinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KotlinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kotlin = React.forwardRef(function Kotlin({color = 'currentColor', size = 24, title = "kotlin", ...others}, ref) { - const Kotlin = React.forwardRef(function Kotlin({color = 'currentColor', size = 24, title = "kotlin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kotlin - \ No newline at end of file +export default Kotlin; diff --git a/src/components/Koyeb.tsx b/src/components/Koyeb.tsx index f3f3504df..c19f00192 100644 --- a/src/components/Koyeb.tsx +++ b/src/components/Koyeb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KoyebProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KoyebProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Koyeb = React.forwardRef(function Koyeb({color = 'currentColor', size = 24, title = "koyeb", ...others}, ref) { - const Koyeb = React.forwardRef(function Koyeb({color = 'currentColor', size = 24, title = "koyeb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Koyeb - \ No newline at end of file +export default Koyeb; diff --git a/src/components/Krita.tsx b/src/components/Krita.tsx index ad7cc9110..cc50c483b 100644 --- a/src/components/Krita.tsx +++ b/src/components/Krita.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KritaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KritaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Krita = React.forwardRef(function Krita({color = 'currentColor', size = 24, title = "krita", ...others}, ref) { - const Krita = React.forwardRef(function Krita({color = 'currentColor', size = 24, title = "krita", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Krita - \ No newline at end of file +export default Krita; diff --git a/src/components/Ktm.tsx b/src/components/Ktm.tsx index 6ef50023a..31c1730f8 100644 --- a/src/components/Ktm.tsx +++ b/src/components/Ktm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KtmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KtmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ktm = React.forwardRef(function Ktm({color = 'currentColor', size = 24, title = "ktm", ...others}, ref) { - const Ktm = React.forwardRef(function Ktm({color = 'currentColor', size = 24, title = "ktm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ktm - \ No newline at end of file +export default Ktm; diff --git a/src/components/Kuaishou.tsx b/src/components/Kuaishou.tsx index 066e7bdbc..a83820180 100644 --- a/src/components/Kuaishou.tsx +++ b/src/components/Kuaishou.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KuaishouProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KuaishouProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kuaishou = React.forwardRef(function Kuaishou({color = 'currentColor', size = 24, title = "kuaishou", ...others}, ref) { - const Kuaishou = React.forwardRef(function Kuaishou({color = 'currentColor', size = 24, title = "kuaishou", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kuaishou - \ No newline at end of file +export default Kuaishou; diff --git a/src/components/Kubernetes.tsx b/src/components/Kubernetes.tsx index e59a21e38..99b483f70 100644 --- a/src/components/Kubernetes.tsx +++ b/src/components/Kubernetes.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KubernetesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KubernetesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kubernetes = React.forwardRef(function Kubernetes({color = 'currentColor', size = 24, title = "kubernetes", ...others}, ref) { - const Kubernetes = React.forwardRef(function Kubernetes({color = 'currentColor', size = 24, title = "kubernetes", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kubernetes - \ No newline at end of file +export default Kubernetes; diff --git a/src/components/Kubuntu.tsx b/src/components/Kubuntu.tsx index 9774f26f3..4cb2db7ab 100644 --- a/src/components/Kubuntu.tsx +++ b/src/components/Kubuntu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KubuntuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KubuntuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kubuntu = React.forwardRef(function Kubuntu({color = 'currentColor', size = 24, title = "kubuntu", ...others}, ref) { - const Kubuntu = React.forwardRef(function Kubuntu({color = 'currentColor', size = 24, title = "kubuntu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kubuntu - \ No newline at end of file +export default Kubuntu; diff --git a/src/components/Kuma.tsx b/src/components/Kuma.tsx index ab3d9960f..4970a84e1 100644 --- a/src/components/Kuma.tsx +++ b/src/components/Kuma.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KumaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KumaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kuma = React.forwardRef(function Kuma({color = 'currentColor', size = 24, title = "kuma", ...others}, ref) { - const Kuma = React.forwardRef(function Kuma({color = 'currentColor', size = 24, title = "kuma", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kuma - \ No newline at end of file +export default Kuma; diff --git a/src/components/Kyocera.tsx b/src/components/Kyocera.tsx index e14f2701a..d9c430557 100644 --- a/src/components/Kyocera.tsx +++ b/src/components/Kyocera.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type KyoceraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type KyoceraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Kyocera = React.forwardRef(function Kyocera({color = 'currentColor', size = 24, title = "kyocera", ...others}, ref) { - const Kyocera = React.forwardRef(function Kyocera({color = 'currentColor', size = 24, title = "kyocera", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Kyocera - \ No newline at end of file +export default Kyocera; diff --git a/src/components/Labview.tsx b/src/components/Labview.tsx index 74ce2e5b8..9c81aca06 100644 --- a/src/components/Labview.tsx +++ b/src/components/Labview.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LabviewProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LabviewProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Labview = React.forwardRef(function Labview({color = 'currentColor', size = 24, title = "labview", ...others}, ref) { - const Labview = React.forwardRef(function Labview({color = 'currentColor', size = 24, title = "labview", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Labview - \ No newline at end of file +export default Labview; diff --git a/src/components/Lada.tsx b/src/components/Lada.tsx index 03b3e3ebe..7b1d6c58c 100644 --- a/src/components/Lada.tsx +++ b/src/components/Lada.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LadaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LadaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lada = React.forwardRef(function Lada({color = 'currentColor', size = 24, title = "lada", ...others}, ref) { - const Lada = React.forwardRef(function Lada({color = 'currentColor', size = 24, title = "lada", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lada - \ No newline at end of file +export default Lada; diff --git a/src/components/Lamborghini.tsx b/src/components/Lamborghini.tsx index 884526182..674b29d58 100644 --- a/src/components/Lamborghini.tsx +++ b/src/components/Lamborghini.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LamborghiniProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LamborghiniProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lamborghini = React.forwardRef(function Lamborghini({color = 'currentColor', size = 24, title = "lamborghini", ...others}, ref) { - const Lamborghini = React.forwardRef(function Lamborghini({color = 'currentColor', size = 24, title = "lamborghini", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lamborghini - \ No newline at end of file +export default Lamborghini; diff --git a/src/components/Landrover.tsx b/src/components/Landrover.tsx index 91c4f4e5a..4b272b2e3 100644 --- a/src/components/Landrover.tsx +++ b/src/components/Landrover.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LandroverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LandroverProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Landrover = React.forwardRef(function Landrover({color = 'currentColor', size = 24, title = "landrover", ...others}, ref) { - const Landrover = React.forwardRef(function Landrover({color = 'currentColor', size = 24, title = "landrover", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Landrover - \ No newline at end of file +export default Landrover; diff --git a/src/components/Lapce.tsx b/src/components/Lapce.tsx index 1340d3655..ad7887119 100644 --- a/src/components/Lapce.tsx +++ b/src/components/Lapce.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LapceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LapceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lapce = React.forwardRef(function Lapce({color = 'currentColor', size = 24, title = "lapce", ...others}, ref) { - const Lapce = React.forwardRef(function Lapce({color = 'currentColor', size = 24, title = "lapce", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lapce - \ No newline at end of file +export default Lapce; diff --git a/src/components/Laragon.tsx b/src/components/Laragon.tsx index f6a58fccf..82cd9b608 100644 --- a/src/components/Laragon.tsx +++ b/src/components/Laragon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LaragonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LaragonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Laragon = React.forwardRef(function Laragon({color = 'currentColor', size = 24, title = "laragon", ...others}, ref) { - const Laragon = React.forwardRef(function Laragon({color = 'currentColor', size = 24, title = "laragon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Laragon - \ No newline at end of file +export default Laragon; diff --git a/src/components/Laravel.tsx b/src/components/Laravel.tsx index 0ca6db9fb..f1c7a66e4 100644 --- a/src/components/Laravel.tsx +++ b/src/components/Laravel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LaravelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LaravelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Laravel = React.forwardRef(function Laravel({color = 'currentColor', size = 24, title = "laravel", ...others}, ref) { - const Laravel = React.forwardRef(function Laravel({color = 'currentColor', size = 24, title = "laravel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Laravel - \ No newline at end of file +export default Laravel; diff --git a/src/components/Laravelhorizon.tsx b/src/components/Laravelhorizon.tsx index 630b6e237..29682601f 100644 --- a/src/components/Laravelhorizon.tsx +++ b/src/components/Laravelhorizon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LaravelhorizonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LaravelhorizonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Laravelhorizon = React.forwardRef(function Laravelhorizon({color = 'currentColor', size = 24, title = "laravelhorizon", ...others}, ref) { - const Laravelhorizon = React.forwardRef(function Laravelhorizon({color = 'currentColor', size = 24, title = "laravelhorizon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Laravelhorizon - \ No newline at end of file +export default Laravelhorizon; diff --git a/src/components/Laravelnova.tsx b/src/components/Laravelnova.tsx index a18938380..b8f56319c 100644 --- a/src/components/Laravelnova.tsx +++ b/src/components/Laravelnova.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LaravelnovaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LaravelnovaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Laravelnova = React.forwardRef(function Laravelnova({color = 'currentColor', size = 24, title = "laravelnova", ...others}, ref) { - const Laravelnova = React.forwardRef(function Laravelnova({color = 'currentColor', size = 24, title = "laravelnova", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Laravelnova - \ No newline at end of file +export default Laravelnova; diff --git a/src/components/Lastdotfm.tsx b/src/components/Lastdotfm.tsx index 18216230a..953ccd770 100644 --- a/src/components/Lastdotfm.tsx +++ b/src/components/Lastdotfm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LastdotfmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LastdotfmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lastdotfm = React.forwardRef(function Lastdotfm({color = 'currentColor', size = 24, title = "lastdotfm", ...others}, ref) { - const Lastdotfm = React.forwardRef(function Lastdotfm({color = 'currentColor', size = 24, title = "lastdotfm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lastdotfm - \ No newline at end of file +export default Lastdotfm; diff --git a/src/components/Lastpass.tsx b/src/components/Lastpass.tsx index 135e615df..2196392a4 100644 --- a/src/components/Lastpass.tsx +++ b/src/components/Lastpass.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LastpassProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LastpassProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lastpass = React.forwardRef(function Lastpass({color = 'currentColor', size = 24, title = "lastpass", ...others}, ref) { - const Lastpass = React.forwardRef(function Lastpass({color = 'currentColor', size = 24, title = "lastpass", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lastpass - \ No newline at end of file +export default Lastpass; diff --git a/src/components/Latex.tsx b/src/components/Latex.tsx index 1a5d77022..1d6204046 100644 --- a/src/components/Latex.tsx +++ b/src/components/Latex.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LatexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LatexProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Latex = React.forwardRef(function Latex({color = 'currentColor', size = 24, title = "latex", ...others}, ref) { - const Latex = React.forwardRef(function Latex({color = 'currentColor', size = 24, title = "latex", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Latex - \ No newline at end of file +export default Latex; diff --git a/src/components/Launchpad.tsx b/src/components/Launchpad.tsx index 4f26daf73..cfce1956a 100644 --- a/src/components/Launchpad.tsx +++ b/src/components/Launchpad.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LaunchpadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LaunchpadProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Launchpad = React.forwardRef(function Launchpad({color = 'currentColor', size = 24, title = "launchpad", ...others}, ref) { - const Launchpad = React.forwardRef(function Launchpad({color = 'currentColor', size = 24, title = "launchpad", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Launchpad - \ No newline at end of file +export default Launchpad; diff --git a/src/components/Lazarus.tsx b/src/components/Lazarus.tsx index 374298289..abdd11c0d 100644 --- a/src/components/Lazarus.tsx +++ b/src/components/Lazarus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LazarusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LazarusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lazarus = React.forwardRef(function Lazarus({color = 'currentColor', size = 24, title = "lazarus", ...others}, ref) { - const Lazarus = React.forwardRef(function Lazarus({color = 'currentColor', size = 24, title = "lazarus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lazarus - \ No newline at end of file +export default Lazarus; diff --git a/src/components/Lbry.tsx b/src/components/Lbry.tsx index 5e3afa3c7..d05c90595 100644 --- a/src/components/Lbry.tsx +++ b/src/components/Lbry.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LbryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LbryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lbry = React.forwardRef(function Lbry({color = 'currentColor', size = 24, title = "lbry", ...others}, ref) { - const Lbry = React.forwardRef(function Lbry({color = 'currentColor', size = 24, title = "lbry", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lbry - \ No newline at end of file +export default Lbry; diff --git a/src/components/Leaderprice.tsx b/src/components/Leaderprice.tsx index 510b1dfac..6eb551881 100644 --- a/src/components/Leaderprice.tsx +++ b/src/components/Leaderprice.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LeaderpriceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LeaderpriceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Leaderprice = React.forwardRef(function Leaderprice({color = 'currentColor', size = 24, title = "leaderprice", ...others}, ref) { - const Leaderprice = React.forwardRef(function Leaderprice({color = 'currentColor', size = 24, title = "leaderprice", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Leaderprice - \ No newline at end of file +export default Leaderprice; diff --git a/src/components/Leaflet.tsx b/src/components/Leaflet.tsx index 3e4aa2887..3bbfec636 100644 --- a/src/components/Leaflet.tsx +++ b/src/components/Leaflet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LeafletProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LeafletProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Leaflet = React.forwardRef(function Leaflet({color = 'currentColor', size = 24, title = "leaflet", ...others}, ref) { - const Leaflet = React.forwardRef(function Leaflet({color = 'currentColor', size = 24, title = "leaflet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Leaflet - \ No newline at end of file +export default Leaflet; diff --git a/src/components/Leanpub.tsx b/src/components/Leanpub.tsx index 7dc321217..de4937164 100644 --- a/src/components/Leanpub.tsx +++ b/src/components/Leanpub.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LeanpubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LeanpubProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Leanpub = React.forwardRef(function Leanpub({color = 'currentColor', size = 24, title = "leanpub", ...others}, ref) { - const Leanpub = React.forwardRef(function Leanpub({color = 'currentColor', size = 24, title = "leanpub", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Leanpub - \ No newline at end of file +export default Leanpub; diff --git a/src/components/Leetcode.tsx b/src/components/Leetcode.tsx index 4ee6178c2..92e12b2c2 100644 --- a/src/components/Leetcode.tsx +++ b/src/components/Leetcode.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LeetcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LeetcodeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Leetcode = React.forwardRef(function Leetcode({color = 'currentColor', size = 24, title = "leetcode", ...others}, ref) { - const Leetcode = React.forwardRef(function Leetcode({color = 'currentColor', size = 24, title = "leetcode", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Leetcode - \ No newline at end of file +export default Leetcode; diff --git a/src/components/Legacygames.tsx b/src/components/Legacygames.tsx index 7821c33b1..0075c2855 100644 --- a/src/components/Legacygames.tsx +++ b/src/components/Legacygames.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LegacygamesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LegacygamesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Legacygames = React.forwardRef(function Legacygames({color = 'currentColor', size = 24, title = "legacygames", ...others}, ref) { - const Legacygames = React.forwardRef(function Legacygames({color = 'currentColor', size = 24, title = "legacygames", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Legacygames - \ No newline at end of file +export default Legacygames; diff --git a/src/components/Lemmy.tsx b/src/components/Lemmy.tsx index 72b5ba720..a78420ea5 100644 --- a/src/components/Lemmy.tsx +++ b/src/components/Lemmy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LemmyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LemmyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lemmy = React.forwardRef(function Lemmy({color = 'currentColor', size = 24, title = "lemmy", ...others}, ref) { - const Lemmy = React.forwardRef(function Lemmy({color = 'currentColor', size = 24, title = "lemmy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lemmy - \ No newline at end of file +export default Lemmy; diff --git a/src/components/Lenovo.tsx b/src/components/Lenovo.tsx index 7461a7294..9e4f755bf 100644 --- a/src/components/Lenovo.tsx +++ b/src/components/Lenovo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LenovoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LenovoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lenovo = React.forwardRef(function Lenovo({color = 'currentColor', size = 24, title = "lenovo", ...others}, ref) { - const Lenovo = React.forwardRef(function Lenovo({color = 'currentColor', size = 24, title = "lenovo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lenovo - \ No newline at end of file +export default Lenovo; diff --git a/src/components/Lens.tsx b/src/components/Lens.tsx index 4d12f8bfd..1479f7e7e 100644 --- a/src/components/Lens.tsx +++ b/src/components/Lens.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LensProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LensProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lens = React.forwardRef(function Lens({color = 'currentColor', size = 24, title = "lens", ...others}, ref) { - const Lens = React.forwardRef(function Lens({color = 'currentColor', size = 24, title = "lens", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lens - \ No newline at end of file +export default Lens; diff --git a/src/components/Lerna.tsx b/src/components/Lerna.tsx index ad4639322..d68a199cf 100644 --- a/src/components/Lerna.tsx +++ b/src/components/Lerna.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LernaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LernaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lerna = React.forwardRef(function Lerna({color = 'currentColor', size = 24, title = "lerna", ...others}, ref) { - const Lerna = React.forwardRef(function Lerna({color = 'currentColor', size = 24, title = "lerna", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lerna - \ No newline at end of file +export default Lerna; diff --git a/src/components/Leroymerlin.tsx b/src/components/Leroymerlin.tsx index 078d6d488..49cc9b210 100644 --- a/src/components/Leroymerlin.tsx +++ b/src/components/Leroymerlin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LeroymerlinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LeroymerlinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Leroymerlin = React.forwardRef(function Leroymerlin({color = 'currentColor', size = 24, title = "leroymerlin", ...others}, ref) { - const Leroymerlin = React.forwardRef(function Leroymerlin({color = 'currentColor', size = 24, title = "leroymerlin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Leroymerlin - \ No newline at end of file +export default Leroymerlin; diff --git a/src/components/Less.tsx b/src/components/Less.tsx index 02609a32b..46fa67461 100644 --- a/src/components/Less.tsx +++ b/src/components/Less.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Less = React.forwardRef(function Less({color = 'currentColor', size = 24, title = "less", ...others}, ref) { - const Less = React.forwardRef(function Less({color = 'currentColor', size = 24, title = "less", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Less - \ No newline at end of file +export default Less; diff --git a/src/components/Letsencrypt.tsx b/src/components/Letsencrypt.tsx index c60abd01b..e2f6368fc 100644 --- a/src/components/Letsencrypt.tsx +++ b/src/components/Letsencrypt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LetsencryptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LetsencryptProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Letsencrypt = React.forwardRef(function Letsencrypt({color = 'currentColor', size = 24, title = "letsencrypt", ...others}, ref) { - const Letsencrypt = React.forwardRef(function Letsencrypt({color = 'currentColor', size = 24, title = "letsencrypt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Letsencrypt - \ No newline at end of file +export default Letsencrypt; diff --git a/src/components/Letterboxd.tsx b/src/components/Letterboxd.tsx index dfe72150b..772eeb1da 100644 --- a/src/components/Letterboxd.tsx +++ b/src/components/Letterboxd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LetterboxdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LetterboxdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Letterboxd = React.forwardRef(function Letterboxd({color = 'currentColor', size = 24, title = "letterboxd", ...others}, ref) { - const Letterboxd = React.forwardRef(function Letterboxd({color = 'currentColor', size = 24, title = "letterboxd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Letterboxd - \ No newline at end of file +export default Letterboxd; diff --git a/src/components/Levelsdotfyi.tsx b/src/components/Levelsdotfyi.tsx index 23adf8b87..e046d9e93 100644 --- a/src/components/Levelsdotfyi.tsx +++ b/src/components/Levelsdotfyi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LevelsdotfyiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LevelsdotfyiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Levelsdotfyi = React.forwardRef(function Levelsdotfyi({color = 'currentColor', size = 24, title = "levelsdotfyi", ...others}, ref) { - const Levelsdotfyi = React.forwardRef(function Levelsdotfyi({color = 'currentColor', size = 24, title = "levelsdotfyi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Levelsdotfyi - \ No newline at end of file +export default Levelsdotfyi; diff --git a/src/components/Lg.tsx b/src/components/Lg.tsx index 519ef1b70..ff6e6d077 100644 --- a/src/components/Lg.tsx +++ b/src/components/Lg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LgProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lg = React.forwardRef(function Lg({color = 'currentColor', size = 24, title = "lg", ...others}, ref) { - const Lg = React.forwardRef(function Lg({color = 'currentColor', size = 24, title = "lg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lg - \ No newline at end of file +export default Lg; diff --git a/src/components/Lgtm.tsx b/src/components/Lgtm.tsx index 639a569b4..a49f85885 100644 --- a/src/components/Lgtm.tsx +++ b/src/components/Lgtm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LgtmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LgtmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lgtm = React.forwardRef(function Lgtm({color = 'currentColor', size = 24, title = "lgtm", ...others}, ref) { - const Lgtm = React.forwardRef(function Lgtm({color = 'currentColor', size = 24, title = "lgtm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lgtm - \ No newline at end of file +export default Lgtm; diff --git a/src/components/Liberapay.tsx b/src/components/Liberapay.tsx index d5ae932ab..c512755ea 100644 --- a/src/components/Liberapay.tsx +++ b/src/components/Liberapay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LiberapayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LiberapayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Liberapay = React.forwardRef(function Liberapay({color = 'currentColor', size = 24, title = "liberapay", ...others}, ref) { - const Liberapay = React.forwardRef(function Liberapay({color = 'currentColor', size = 24, title = "liberapay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Liberapay - \ No newline at end of file +export default Liberapay; diff --git a/src/components/Librariesdotio.tsx b/src/components/Librariesdotio.tsx index 364a4e37a..3c5c32447 100644 --- a/src/components/Librariesdotio.tsx +++ b/src/components/Librariesdotio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LibrariesdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LibrariesdotioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Librariesdotio = React.forwardRef(function Librariesdotio({color = 'currentColor', size = 24, title = "librariesdotio", ...others}, ref) { - const Librariesdotio = React.forwardRef(function Librariesdotio({color = 'currentColor', size = 24, title = "librariesdotio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Librariesdotio - \ No newline at end of file +export default Librariesdotio; diff --git a/src/components/Librarything.tsx b/src/components/Librarything.tsx index 8ddd6f226..b0c800048 100644 --- a/src/components/Librarything.tsx +++ b/src/components/Librarything.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LibrarythingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LibrarythingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Librarything = React.forwardRef(function Librarything({color = 'currentColor', size = 24, title = "librarything", ...others}, ref) { - const Librarything = React.forwardRef(function Librarything({color = 'currentColor', size = 24, title = "librarything", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Librarything - \ No newline at end of file +export default Librarything; diff --git a/src/components/Libreoffice.tsx b/src/components/Libreoffice.tsx index 37502a7ac..f8b6a8c8a 100644 --- a/src/components/Libreoffice.tsx +++ b/src/components/Libreoffice.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LibreofficeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LibreofficeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Libreoffice = React.forwardRef(function Libreoffice({color = 'currentColor', size = 24, title = "libreoffice", ...others}, ref) { - const Libreoffice = React.forwardRef(function Libreoffice({color = 'currentColor', size = 24, title = "libreoffice", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Libreoffice - \ No newline at end of file +export default Libreoffice; diff --git a/src/components/Libuv.tsx b/src/components/Libuv.tsx index 7607a547d..065e2aa5b 100644 --- a/src/components/Libuv.tsx +++ b/src/components/Libuv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LibuvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LibuvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Libuv = React.forwardRef(function Libuv({color = 'currentColor', size = 24, title = "libuv", ...others}, ref) { - const Libuv = React.forwardRef(function Libuv({color = 'currentColor', size = 24, title = "libuv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Libuv - \ No newline at end of file +export default Libuv; diff --git a/src/components/Lichess.tsx b/src/components/Lichess.tsx index 1faf2f1d9..a10a44955 100644 --- a/src/components/Lichess.tsx +++ b/src/components/Lichess.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LichessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LichessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lichess = React.forwardRef(function Lichess({color = 'currentColor', size = 24, title = "lichess", ...others}, ref) { - const Lichess = React.forwardRef(function Lichess({color = 'currentColor', size = 24, title = "lichess", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lichess - \ No newline at end of file +export default Lichess; diff --git a/src/components/Lidl.tsx b/src/components/Lidl.tsx index 5285bb53a..1a92a6576 100644 --- a/src/components/Lidl.tsx +++ b/src/components/Lidl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LidlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LidlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lidl = React.forwardRef(function Lidl({color = 'currentColor', size = 24, title = "lidl", ...others}, ref) { - const Lidl = React.forwardRef(function Lidl({color = 'currentColor', size = 24, title = "lidl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lidl - \ No newline at end of file +export default Lidl; diff --git a/src/components/Lifx.tsx b/src/components/Lifx.tsx index 8dd396144..f56a932e3 100644 --- a/src/components/Lifx.tsx +++ b/src/components/Lifx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LifxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LifxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lifx = React.forwardRef(function Lifx({color = 'currentColor', size = 24, title = "lifx", ...others}, ref) { - const Lifx = React.forwardRef(function Lifx({color = 'currentColor', size = 24, title = "lifx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lifx - \ No newline at end of file +export default Lifx; diff --git a/src/components/Lighthouse.tsx b/src/components/Lighthouse.tsx index c22243c4d..cc9883180 100644 --- a/src/components/Lighthouse.tsx +++ b/src/components/Lighthouse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LighthouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LighthouseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lighthouse = React.forwardRef(function Lighthouse({color = 'currentColor', size = 24, title = "lighthouse", ...others}, ref) { - const Lighthouse = React.forwardRef(function Lighthouse({color = 'currentColor', size = 24, title = "lighthouse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lighthouse - \ No newline at end of file +export default Lighthouse; diff --git a/src/components/Line.tsx b/src/components/Line.tsx index 20bd681fd..238ad6bf0 100644 --- a/src/components/Line.tsx +++ b/src/components/Line.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Line = React.forwardRef(function Line({color = 'currentColor', size = 24, title = "line", ...others}, ref) { - const Line = React.forwardRef(function Line({color = 'currentColor', size = 24, title = "line", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Line - \ No newline at end of file +export default Line; diff --git a/src/components/Lineageos.tsx b/src/components/Lineageos.tsx index 1d70b6c58..2be3e357a 100644 --- a/src/components/Lineageos.tsx +++ b/src/components/Lineageos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LineageosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LineageosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lineageos = React.forwardRef(function Lineageos({color = 'currentColor', size = 24, title = "lineageos", ...others}, ref) { - const Lineageos = React.forwardRef(function Lineageos({color = 'currentColor', size = 24, title = "lineageos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lineageos - \ No newline at end of file +export default Lineageos; diff --git a/src/components/Linear.tsx b/src/components/Linear.tsx index 5a81f4de9..acd716734 100644 --- a/src/components/Linear.tsx +++ b/src/components/Linear.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LinearProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LinearProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Linear = React.forwardRef(function Linear({color = 'currentColor', size = 24, title = "linear", ...others}, ref) { - const Linear = React.forwardRef(function Linear({color = 'currentColor', size = 24, title = "linear", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Linear - \ No newline at end of file +export default Linear; diff --git a/src/components/Linkedin.tsx b/src/components/Linkedin.tsx index eaf9504ae..8499b44f1 100644 --- a/src/components/Linkedin.tsx +++ b/src/components/Linkedin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LinkedinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LinkedinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Linkedin = React.forwardRef(function Linkedin({color = 'currentColor', size = 24, title = "linkedin", ...others}, ref) { - const Linkedin = React.forwardRef(function Linkedin({color = 'currentColor', size = 24, title = "linkedin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Linkedin - \ No newline at end of file +export default Linkedin; diff --git a/src/components/Linkerd.tsx b/src/components/Linkerd.tsx index 1487258bc..8593e1f64 100644 --- a/src/components/Linkerd.tsx +++ b/src/components/Linkerd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LinkerdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LinkerdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Linkerd = React.forwardRef(function Linkerd({color = 'currentColor', size = 24, title = "linkerd", ...others}, ref) { - const Linkerd = React.forwardRef(function Linkerd({color = 'currentColor', size = 24, title = "linkerd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Linkerd - \ No newline at end of file +export default Linkerd; diff --git a/src/components/Linkfire.tsx b/src/components/Linkfire.tsx index e816e321b..eeab404f3 100644 --- a/src/components/Linkfire.tsx +++ b/src/components/Linkfire.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LinkfireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LinkfireProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Linkfire = React.forwardRef(function Linkfire({color = 'currentColor', size = 24, title = "linkfire", ...others}, ref) { - const Linkfire = React.forwardRef(function Linkfire({color = 'currentColor', size = 24, title = "linkfire", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Linkfire - \ No newline at end of file +export default Linkfire; diff --git a/src/components/Linktree.tsx b/src/components/Linktree.tsx index e6845db63..f05b8e6c2 100644 --- a/src/components/Linktree.tsx +++ b/src/components/Linktree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LinktreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LinktreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Linktree = React.forwardRef(function Linktree({color = 'currentColor', size = 24, title = "linktree", ...others}, ref) { - const Linktree = React.forwardRef(function Linktree({color = 'currentColor', size = 24, title = "linktree", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Linktree - \ No newline at end of file +export default Linktree; diff --git a/src/components/Linode.tsx b/src/components/Linode.tsx index e459c8120..2bd978bd2 100644 --- a/src/components/Linode.tsx +++ b/src/components/Linode.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LinodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LinodeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Linode = React.forwardRef(function Linode({color = 'currentColor', size = 24, title = "linode", ...others}, ref) { - const Linode = React.forwardRef(function Linode({color = 'currentColor', size = 24, title = "linode", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Linode - \ No newline at end of file +export default Linode; diff --git a/src/components/Linux.tsx b/src/components/Linux.tsx index 59857f4bf..b45fb41ea 100644 --- a/src/components/Linux.tsx +++ b/src/components/Linux.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LinuxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Linux = React.forwardRef(function Linux({color = 'currentColor', size = 24, title = "linux", ...others}, ref) { - const Linux = React.forwardRef(function Linux({color = 'currentColor', size = 24, title = "linux", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Linux - \ No newline at end of file +export default Linux; diff --git a/src/components/Linuxcontainers.tsx b/src/components/Linuxcontainers.tsx index a07eb3544..fc360baa7 100644 --- a/src/components/Linuxcontainers.tsx +++ b/src/components/Linuxcontainers.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LinuxcontainersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LinuxcontainersProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Linuxcontainers = React.forwardRef(function Linuxcontainers({color = 'currentColor', size = 24, title = "linuxcontainers", ...others}, ref) { - const Linuxcontainers = React.forwardRef(function Linuxcontainers({color = 'currentColor', size = 24, title = "linuxcontainers", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Linuxcontainers - \ No newline at end of file +export default Linuxcontainers; diff --git a/src/components/Linuxfoundation.tsx b/src/components/Linuxfoundation.tsx index 5d84a0f57..64fb2f4c5 100644 --- a/src/components/Linuxfoundation.tsx +++ b/src/components/Linuxfoundation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LinuxfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LinuxfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Linuxfoundation = React.forwardRef(function Linuxfoundation({color = 'currentColor', size = 24, title = "linuxfoundation", ...others}, ref) { - const Linuxfoundation = React.forwardRef(function Linuxfoundation({color = 'currentColor', size = 24, title = "linuxfoundation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Linuxfoundation - \ No newline at end of file +export default Linuxfoundation; diff --git a/src/components/Linuxmint.tsx b/src/components/Linuxmint.tsx index f7ad7a626..aeafb872e 100644 --- a/src/components/Linuxmint.tsx +++ b/src/components/Linuxmint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LinuxmintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LinuxmintProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Linuxmint = React.forwardRef(function Linuxmint({color = 'currentColor', size = 24, title = "linuxmint", ...others}, ref) { - const Linuxmint = React.forwardRef(function Linuxmint({color = 'currentColor', size = 24, title = "linuxmint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Linuxmint - \ No newline at end of file +export default Linuxmint; diff --git a/src/components/Lionair.tsx b/src/components/Lionair.tsx index 5aea6d295..49f6d9dcd 100644 --- a/src/components/Lionair.tsx +++ b/src/components/Lionair.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LionairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LionairProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lionair = React.forwardRef(function Lionair({color = 'currentColor', size = 24, title = "lionair", ...others}, ref) { - const Lionair = React.forwardRef(function Lionair({color = 'currentColor', size = 24, title = "lionair", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lionair - \ No newline at end of file +export default Lionair; diff --git a/src/components/Liquibase.tsx b/src/components/Liquibase.tsx index 0584be650..716febfe0 100644 --- a/src/components/Liquibase.tsx +++ b/src/components/Liquibase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LiquibaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LiquibaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Liquibase = React.forwardRef(function Liquibase({color = 'currentColor', size = 24, title = "liquibase", ...others}, ref) { - const Liquibase = React.forwardRef(function Liquibase({color = 'currentColor', size = 24, title = "liquibase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Liquibase - \ No newline at end of file +export default Liquibase; diff --git a/src/components/Lit.tsx b/src/components/Lit.tsx index 84d6e28d7..3ee038da0 100644 --- a/src/components/Lit.tsx +++ b/src/components/Lit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lit = React.forwardRef(function Lit({color = 'currentColor', size = 24, title = "lit", ...others}, ref) { - const Lit = React.forwardRef(function Lit({color = 'currentColor', size = 24, title = "lit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lit - \ No newline at end of file +export default Lit; diff --git a/src/components/Litecoin.tsx b/src/components/Litecoin.tsx index 7bbe52311..b85ed8cd8 100644 --- a/src/components/Litecoin.tsx +++ b/src/components/Litecoin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LitecoinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LitecoinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Litecoin = React.forwardRef(function Litecoin({color = 'currentColor', size = 24, title = "litecoin", ...others}, ref) { - const Litecoin = React.forwardRef(function Litecoin({color = 'currentColor', size = 24, title = "litecoin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Litecoin - \ No newline at end of file +export default Litecoin; diff --git a/src/components/Litiengine.tsx b/src/components/Litiengine.tsx index 73ba69d0d..a14e73bef 100644 --- a/src/components/Litiengine.tsx +++ b/src/components/Litiengine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LitiengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LitiengineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Litiengine = React.forwardRef(function Litiengine({color = 'currentColor', size = 24, title = "litiengine", ...others}, ref) { - const Litiengine = React.forwardRef(function Litiengine({color = 'currentColor', size = 24, title = "litiengine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Litiengine - \ No newline at end of file +export default Litiengine; diff --git a/src/components/Livechat.tsx b/src/components/Livechat.tsx index 54e081120..8017c7cd1 100644 --- a/src/components/Livechat.tsx +++ b/src/components/Livechat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LivechatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LivechatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Livechat = React.forwardRef(function Livechat({color = 'currentColor', size = 24, title = "livechat", ...others}, ref) { - const Livechat = React.forwardRef(function Livechat({color = 'currentColor', size = 24, title = "livechat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Livechat - \ No newline at end of file +export default Livechat; diff --git a/src/components/Livejournal.tsx b/src/components/Livejournal.tsx index 24c92e9f6..40659305d 100644 --- a/src/components/Livejournal.tsx +++ b/src/components/Livejournal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LivejournalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LivejournalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Livejournal = React.forwardRef(function Livejournal({color = 'currentColor', size = 24, title = "livejournal", ...others}, ref) { - const Livejournal = React.forwardRef(function Livejournal({color = 'currentColor', size = 24, title = "livejournal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Livejournal - \ No newline at end of file +export default Livejournal; diff --git a/src/components/Livewire.tsx b/src/components/Livewire.tsx index 4fae87122..fed5e388d 100644 --- a/src/components/Livewire.tsx +++ b/src/components/Livewire.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LivewireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LivewireProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Livewire = React.forwardRef(function Livewire({color = 'currentColor', size = 24, title = "livewire", ...others}, ref) { - const Livewire = React.forwardRef(function Livewire({color = 'currentColor', size = 24, title = "livewire", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Livewire - \ No newline at end of file +export default Livewire; diff --git a/src/components/Llvm.tsx b/src/components/Llvm.tsx index 7c9d709ac..b9335c21b 100644 --- a/src/components/Llvm.tsx +++ b/src/components/Llvm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LlvmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LlvmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Llvm = React.forwardRef(function Llvm({color = 'currentColor', size = 24, title = "llvm", ...others}, ref) { - const Llvm = React.forwardRef(function Llvm({color = 'currentColor', size = 24, title = "llvm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Llvm - \ No newline at end of file +export default Llvm; diff --git a/src/components/Lmms.tsx b/src/components/Lmms.tsx index 515b973b2..0863e9e81 100644 --- a/src/components/Lmms.tsx +++ b/src/components/Lmms.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LmmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LmmsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lmms = React.forwardRef(function Lmms({color = 'currentColor', size = 24, title = "lmms", ...others}, ref) { - const Lmms = React.forwardRef(function Lmms({color = 'currentColor', size = 24, title = "lmms", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lmms - \ No newline at end of file +export default Lmms; diff --git a/src/components/Lodash.tsx b/src/components/Lodash.tsx index 4aaa641ed..69fd56063 100644 --- a/src/components/Lodash.tsx +++ b/src/components/Lodash.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LodashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LodashProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lodash = React.forwardRef(function Lodash({color = 'currentColor', size = 24, title = "lodash", ...others}, ref) { - const Lodash = React.forwardRef(function Lodash({color = 'currentColor', size = 24, title = "lodash", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lodash - \ No newline at end of file +export default Lodash; diff --git a/src/components/Logitech.tsx b/src/components/Logitech.tsx index ec990b21b..d0a33d35f 100644 --- a/src/components/Logitech.tsx +++ b/src/components/Logitech.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LogitechProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LogitechProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Logitech = React.forwardRef(function Logitech({color = 'currentColor', size = 24, title = "logitech", ...others}, ref) { - const Logitech = React.forwardRef(function Logitech({color = 'currentColor', size = 24, title = "logitech", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Logitech - \ No newline at end of file +export default Logitech; diff --git a/src/components/Logmein.tsx b/src/components/Logmein.tsx index ea7a2e27b..8546d80a5 100644 --- a/src/components/Logmein.tsx +++ b/src/components/Logmein.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LogmeinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LogmeinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Logmein = React.forwardRef(function Logmein({color = 'currentColor', size = 24, title = "logmein", ...others}, ref) { - const Logmein = React.forwardRef(function Logmein({color = 'currentColor', size = 24, title = "logmein", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Logmein - \ No newline at end of file +export default Logmein; diff --git a/src/components/Logstash.tsx b/src/components/Logstash.tsx index 1b60ada06..9cd4a61f3 100644 --- a/src/components/Logstash.tsx +++ b/src/components/Logstash.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LogstashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LogstashProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Logstash = React.forwardRef(function Logstash({color = 'currentColor', size = 24, title = "logstash", ...others}, ref) { - const Logstash = React.forwardRef(function Logstash({color = 'currentColor', size = 24, title = "logstash", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Logstash - \ No newline at end of file +export default Logstash; diff --git a/src/components/Looker.tsx b/src/components/Looker.tsx index bdf0c6fd0..7e9d92c46 100644 --- a/src/components/Looker.tsx +++ b/src/components/Looker.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LookerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LookerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Looker = React.forwardRef(function Looker({color = 'currentColor', size = 24, title = "looker", ...others}, ref) { - const Looker = React.forwardRef(function Looker({color = 'currentColor', size = 24, title = "looker", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Looker - \ No newline at end of file +export default Looker; diff --git a/src/components/Loom.tsx b/src/components/Loom.tsx index 1aee3973f..b63000cc4 100644 --- a/src/components/Loom.tsx +++ b/src/components/Loom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LoomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LoomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Loom = React.forwardRef(function Loom({color = 'currentColor', size = 24, title = "loom", ...others}, ref) { - const Loom = React.forwardRef(function Loom({color = 'currentColor', size = 24, title = "loom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Loom - \ No newline at end of file +export default Loom; diff --git a/src/components/Loop.tsx b/src/components/Loop.tsx index c71cd2507..97a5ccd9c 100644 --- a/src/components/Loop.tsx +++ b/src/components/Loop.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LoopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LoopProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Loop = React.forwardRef(function Loop({color = 'currentColor', size = 24, title = "loop", ...others}, ref) { - const Loop = React.forwardRef(function Loop({color = 'currentColor', size = 24, title = "loop", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Loop - \ No newline at end of file +export default Loop; diff --git a/src/components/Loopback.tsx b/src/components/Loopback.tsx index 7eea033e3..68ec52915 100644 --- a/src/components/Loopback.tsx +++ b/src/components/Loopback.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LoopbackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LoopbackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Loopback = React.forwardRef(function Loopback({color = 'currentColor', size = 24, title = "loopback", ...others}, ref) { - const Loopback = React.forwardRef(function Loopback({color = 'currentColor', size = 24, title = "loopback", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Loopback - \ No newline at end of file +export default Loopback; diff --git a/src/components/Lospec.tsx b/src/components/Lospec.tsx index fe55c6848..661adc47e 100644 --- a/src/components/Lospec.tsx +++ b/src/components/Lospec.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LospecProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LospecProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lospec = React.forwardRef(function Lospec({color = 'currentColor', size = 24, title = "lospec", ...others}, ref) { - const Lospec = React.forwardRef(function Lospec({color = 'currentColor', size = 24, title = "lospec", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lospec - \ No newline at end of file +export default Lospec; diff --git a/src/components/Lotpolishairlines.tsx b/src/components/Lotpolishairlines.tsx index 6a43aaa7f..627167c38 100644 --- a/src/components/Lotpolishairlines.tsx +++ b/src/components/Lotpolishairlines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LotpolishairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LotpolishairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lotpolishairlines = React.forwardRef(function Lotpolishairlines({color = 'currentColor', size = 24, title = "lotpolishairlines", ...others}, ref) { - const Lotpolishairlines = React.forwardRef(function Lotpolishairlines({color = 'currentColor', size = 24, title = "lotpolishairlines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lotpolishairlines - \ No newline at end of file +export default Lotpolishairlines; diff --git a/src/components/Lua.tsx b/src/components/Lua.tsx index 0f8f3d5ed..a9116c09c 100644 --- a/src/components/Lua.tsx +++ b/src/components/Lua.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LuaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LuaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lua = React.forwardRef(function Lua({color = 'currentColor', size = 24, title = "lua", ...others}, ref) { - const Lua = React.forwardRef(function Lua({color = 'currentColor', size = 24, title = "lua", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lua - \ No newline at end of file +export default Lua; diff --git a/src/components/Lubuntu.tsx b/src/components/Lubuntu.tsx index 9a7309e00..b845a997a 100644 --- a/src/components/Lubuntu.tsx +++ b/src/components/Lubuntu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LubuntuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LubuntuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lubuntu = React.forwardRef(function Lubuntu({color = 'currentColor', size = 24, title = "lubuntu", ...others}, ref) { - const Lubuntu = React.forwardRef(function Lubuntu({color = 'currentColor', size = 24, title = "lubuntu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lubuntu - \ No newline at end of file +export default Lubuntu; diff --git a/src/components/Ludwig.tsx b/src/components/Ludwig.tsx index 28c2a8ba0..8e62fe339 100644 --- a/src/components/Ludwig.tsx +++ b/src/components/Ludwig.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LudwigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LudwigProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ludwig = React.forwardRef(function Ludwig({color = 'currentColor', size = 24, title = "ludwig", ...others}, ref) { - const Ludwig = React.forwardRef(function Ludwig({color = 'currentColor', size = 24, title = "ludwig", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ludwig - \ No newline at end of file +export default Ludwig; diff --git a/src/components/Lufthansa.tsx b/src/components/Lufthansa.tsx index f2eaf425d..5ccc178e6 100644 --- a/src/components/Lufthansa.tsx +++ b/src/components/Lufthansa.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LufthansaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LufthansaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lufthansa = React.forwardRef(function Lufthansa({color = 'currentColor', size = 24, title = "lufthansa", ...others}, ref) { - const Lufthansa = React.forwardRef(function Lufthansa({color = 'currentColor', size = 24, title = "lufthansa", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lufthansa - \ No newline at end of file +export default Lufthansa; diff --git a/src/components/Lumen.tsx b/src/components/Lumen.tsx index c807869bf..495d97c71 100644 --- a/src/components/Lumen.tsx +++ b/src/components/Lumen.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LumenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LumenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lumen = React.forwardRef(function Lumen({color = 'currentColor', size = 24, title = "lumen", ...others}, ref) { - const Lumen = React.forwardRef(function Lumen({color = 'currentColor', size = 24, title = "lumen", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lumen - \ No newline at end of file +export default Lumen; diff --git a/src/components/Lunacy.tsx b/src/components/Lunacy.tsx index fb55c2e89..407d3d75f 100644 --- a/src/components/Lunacy.tsx +++ b/src/components/Lunacy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LunacyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LunacyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lunacy = React.forwardRef(function Lunacy({color = 'currentColor', size = 24, title = "lunacy", ...others}, ref) { - const Lunacy = React.forwardRef(function Lunacy({color = 'currentColor', size = 24, title = "lunacy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lunacy - \ No newline at end of file +export default Lunacy; diff --git a/src/components/Lydia.tsx b/src/components/Lydia.tsx index 6b87c0b02..96a5f45f4 100644 --- a/src/components/Lydia.tsx +++ b/src/components/Lydia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LydiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LydiaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lydia = React.forwardRef(function Lydia({color = 'currentColor', size = 24, title = "lydia", ...others}, ref) { - const Lydia = React.forwardRef(function Lydia({color = 'currentColor', size = 24, title = "lydia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lydia - \ No newline at end of file +export default Lydia; diff --git a/src/components/Lyft.tsx b/src/components/Lyft.tsx index 32929d0f5..c01abfbce 100644 --- a/src/components/Lyft.tsx +++ b/src/components/Lyft.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type LyftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type LyftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Lyft = React.forwardRef(function Lyft({color = 'currentColor', size = 24, title = "lyft", ...others}, ref) { - const Lyft = React.forwardRef(function Lyft({color = 'currentColor', size = 24, title = "lyft", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Lyft - \ No newline at end of file +export default Lyft; diff --git a/src/components/Maas.tsx b/src/components/Maas.tsx index 668bf170d..27b487488 100644 --- a/src/components/Maas.tsx +++ b/src/components/Maas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MaasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MaasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Maas = React.forwardRef(function Maas({color = 'currentColor', size = 24, title = "maas", ...others}, ref) { - const Maas = React.forwardRef(function Maas({color = 'currentColor', size = 24, title = "maas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Maas - \ No newline at end of file +export default Maas; diff --git a/src/components/Macos.tsx b/src/components/Macos.tsx index 43c1883a3..f1b92d682 100644 --- a/src/components/Macos.tsx +++ b/src/components/Macos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MacosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MacosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Macos = React.forwardRef(function Macos({color = 'currentColor', size = 24, title = "macos", ...others}, ref) { - const Macos = React.forwardRef(function Macos({color = 'currentColor', size = 24, title = "macos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Macos - \ No newline at end of file +export default Macos; diff --git a/src/components/Macpaw.tsx b/src/components/Macpaw.tsx new file mode 100644 index 000000000..c7836ca56 --- /dev/null +++ b/src/components/Macpaw.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type MacpawProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Macpaw = React.forwardRef(function Macpaw({color = 'currentColor', size = 24, title = "macpaw", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Macpaw; diff --git a/src/components/Macys.tsx b/src/components/Macys.tsx index 10d42ff79..8d1ba56e4 100644 --- a/src/components/Macys.tsx +++ b/src/components/Macys.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MacysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MacysProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Macys = React.forwardRef(function Macys({color = 'currentColor', size = 24, title = "macys", ...others}, ref) { - const Macys = React.forwardRef(function Macys({color = 'currentColor', size = 24, title = "macys", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Macys - \ No newline at end of file +export default Macys; diff --git a/src/components/Magasinsu.tsx b/src/components/Magasinsu.tsx index 5696ffdc5..0ad91d4da 100644 --- a/src/components/Magasinsu.tsx +++ b/src/components/Magasinsu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MagasinsuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MagasinsuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Magasinsu = React.forwardRef(function Magasinsu({color = 'currentColor', size = 24, title = "magasinsu", ...others}, ref) { - const Magasinsu = React.forwardRef(function Magasinsu({color = 'currentColor', size = 24, title = "magasinsu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Magasinsu - \ No newline at end of file +export default Magasinsu; diff --git a/src/components/Magento.tsx b/src/components/Magento.tsx index f06789f68..76c7353ba 100644 --- a/src/components/Magento.tsx +++ b/src/components/Magento.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MagentoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MagentoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Magento = React.forwardRef(function Magento({color = 'currentColor', size = 24, title = "magento", ...others}, ref) { - const Magento = React.forwardRef(function Magento({color = 'currentColor', size = 24, title = "magento", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Magento - \ No newline at end of file +export default Magento; diff --git a/src/components/Magisk.tsx b/src/components/Magisk.tsx index 062ba4bfa..e8d04e856 100644 --- a/src/components/Magisk.tsx +++ b/src/components/Magisk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MagiskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MagiskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Magisk = React.forwardRef(function Magisk({color = 'currentColor', size = 24, title = "magisk", ...others}, ref) { - const Magisk = React.forwardRef(function Magisk({color = 'currentColor', size = 24, title = "magisk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Magisk - \ No newline at end of file +export default Magisk; diff --git a/src/components/Mailchimp.tsx b/src/components/Mailchimp.tsx index a40673319..3cbb094d3 100644 --- a/src/components/Mailchimp.tsx +++ b/src/components/Mailchimp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MailchimpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MailchimpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mailchimp = React.forwardRef(function Mailchimp({color = 'currentColor', size = 24, title = "mailchimp", ...others}, ref) { - const Mailchimp = React.forwardRef(function Mailchimp({color = 'currentColor', size = 24, title = "mailchimp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mailchimp - \ No newline at end of file +export default Mailchimp; diff --git a/src/components/Maildotru.tsx b/src/components/Maildotru.tsx index 0e44306c8..194a54bf8 100644 --- a/src/components/Maildotru.tsx +++ b/src/components/Maildotru.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MaildotruProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MaildotruProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Maildotru = React.forwardRef(function Maildotru({color = 'currentColor', size = 24, title = "maildotru", ...others}, ref) { - const Maildotru = React.forwardRef(function Maildotru({color = 'currentColor', size = 24, title = "maildotru", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Maildotru - \ No newline at end of file +export default Maildotru; diff --git a/src/components/Mailgun.tsx b/src/components/Mailgun.tsx index 70a3ee60c..1cea0f79d 100644 --- a/src/components/Mailgun.tsx +++ b/src/components/Mailgun.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MailgunProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MailgunProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mailgun = React.forwardRef(function Mailgun({color = 'currentColor', size = 24, title = "mailgun", ...others}, ref) { - const Mailgun = React.forwardRef(function Mailgun({color = 'currentColor', size = 24, title = "mailgun", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mailgun - \ No newline at end of file +export default Mailgun; diff --git a/src/components/Majorleaguehacking.tsx b/src/components/Majorleaguehacking.tsx index a3c44120c..832853ee3 100644 --- a/src/components/Majorleaguehacking.tsx +++ b/src/components/Majorleaguehacking.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MajorleaguehackingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MajorleaguehackingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Majorleaguehacking = React.forwardRef(function Majorleaguehacking({color = 'currentColor', size = 24, title = "majorleaguehacking", ...others}, ref) { - const Majorleaguehacking = React.forwardRef(function Majorleaguehacking({color = 'currentColor', size = 24, title = "majorleaguehacking", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Majorleaguehacking - \ No newline at end of file +export default Majorleaguehacking; diff --git a/src/components/Makerbot.tsx b/src/components/Makerbot.tsx index 5dfc9995b..73c9d91ce 100644 --- a/src/components/Makerbot.tsx +++ b/src/components/Makerbot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MakerbotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MakerbotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Makerbot = React.forwardRef(function Makerbot({color = 'currentColor', size = 24, title = "makerbot", ...others}, ref) { - const Makerbot = React.forwardRef(function Makerbot({color = 'currentColor', size = 24, title = "makerbot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Makerbot - \ No newline at end of file +export default Makerbot; diff --git a/src/components/Mamp.tsx b/src/components/Mamp.tsx index 9d1027ef3..ad6833fb0 100644 --- a/src/components/Mamp.tsx +++ b/src/components/Mamp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MampProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mamp = React.forwardRef(function Mamp({color = 'currentColor', size = 24, title = "mamp", ...others}, ref) { - const Mamp = React.forwardRef(function Mamp({color = 'currentColor', size = 24, title = "mamp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mamp - \ No newline at end of file +export default Mamp; diff --git a/src/components/Man.tsx b/src/components/Man.tsx index 30cbfd9cd..8203831b6 100644 --- a/src/components/Man.tsx +++ b/src/components/Man.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ManProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ManProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Man = React.forwardRef(function Man({color = 'currentColor', size = 24, title = "man", ...others}, ref) { - const Man = React.forwardRef(function Man({color = 'currentColor', size = 24, title = "man", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Man - \ No newline at end of file +export default Man; diff --git a/src/components/Manageiq.tsx b/src/components/Manageiq.tsx index bccb9de0c..c4414352a 100644 --- a/src/components/Manageiq.tsx +++ b/src/components/Manageiq.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ManageiqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ManageiqProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Manageiq = React.forwardRef(function Manageiq({color = 'currentColor', size = 24, title = "manageiq", ...others}, ref) { - const Manageiq = React.forwardRef(function Manageiq({color = 'currentColor', size = 24, title = "manageiq", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Manageiq - \ No newline at end of file +export default Manageiq; diff --git a/src/components/Manjaro.tsx b/src/components/Manjaro.tsx index a13906fbc..267aee6f4 100644 --- a/src/components/Manjaro.tsx +++ b/src/components/Manjaro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ManjaroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ManjaroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Manjaro = React.forwardRef(function Manjaro({color = 'currentColor', size = 24, title = "manjaro", ...others}, ref) { - const Manjaro = React.forwardRef(function Manjaro({color = 'currentColor', size = 24, title = "manjaro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Manjaro - \ No newline at end of file +export default Manjaro; diff --git a/src/components/Mapbox.tsx b/src/components/Mapbox.tsx index 6dbf56e49..ddf13c138 100644 --- a/src/components/Mapbox.tsx +++ b/src/components/Mapbox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MapboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MapboxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mapbox = React.forwardRef(function Mapbox({color = 'currentColor', size = 24, title = "mapbox", ...others}, ref) { - const Mapbox = React.forwardRef(function Mapbox({color = 'currentColor', size = 24, title = "mapbox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mapbox - \ No newline at end of file +export default Mapbox; diff --git a/src/components/Mariadb.tsx b/src/components/Mariadb.tsx index bafe04257..c4e7eb32d 100644 --- a/src/components/Mariadb.tsx +++ b/src/components/Mariadb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MariadbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MariadbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mariadb = React.forwardRef(function Mariadb({color = 'currentColor', size = 24, title = "mariadb", ...others}, ref) { - const Mariadb = React.forwardRef(function Mariadb({color = 'currentColor', size = 24, title = "mariadb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mariadb - \ No newline at end of file +export default Mariadb; diff --git a/src/components/Mariadbfoundation.tsx b/src/components/Mariadbfoundation.tsx index 387ca1016..a63c94ee0 100644 --- a/src/components/Mariadbfoundation.tsx +++ b/src/components/Mariadbfoundation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MariadbfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MariadbfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mariadbfoundation = React.forwardRef(function Mariadbfoundation({color = 'currentColor', size = 24, title = "mariadbfoundation", ...others}, ref) { - const Mariadbfoundation = React.forwardRef(function Mariadbfoundation({color = 'currentColor', size = 24, title = "mariadbfoundation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mariadbfoundation - \ No newline at end of file +export default Mariadbfoundation; diff --git a/src/components/Markdown.tsx b/src/components/Markdown.tsx index b6d8f8ffc..37db606e3 100644 --- a/src/components/Markdown.tsx +++ b/src/components/Markdown.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MarkdownProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MarkdownProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Markdown = React.forwardRef(function Markdown({color = 'currentColor', size = 24, title = "markdown", ...others}, ref) { - const Markdown = React.forwardRef(function Markdown({color = 'currentColor', size = 24, title = "markdown", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Markdown - \ No newline at end of file +export default Markdown; diff --git a/src/components/Marketo.tsx b/src/components/Marketo.tsx index a534f217e..ae75651ca 100644 --- a/src/components/Marketo.tsx +++ b/src/components/Marketo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MarketoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MarketoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Marketo = React.forwardRef(function Marketo({color = 'currentColor', size = 24, title = "marketo", ...others}, ref) { - const Marketo = React.forwardRef(function Marketo({color = 'currentColor', size = 24, title = "marketo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Marketo - \ No newline at end of file +export default Marketo; diff --git a/src/components/Marko.tsx b/src/components/Marko.tsx index 746c60a4f..7e8249198 100644 --- a/src/components/Marko.tsx +++ b/src/components/Marko.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MarkoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MarkoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Marko = React.forwardRef(function Marko({color = 'currentColor', size = 24, title = "marko", ...others}, ref) { - const Marko = React.forwardRef(function Marko({color = 'currentColor', size = 24, title = "marko", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Marko - \ No newline at end of file +export default Marko; diff --git a/src/components/Marriott.tsx b/src/components/Marriott.tsx index c4b3cc043..f78ee07f1 100644 --- a/src/components/Marriott.tsx +++ b/src/components/Marriott.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MarriottProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MarriottProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Marriott = React.forwardRef(function Marriott({color = 'currentColor', size = 24, title = "marriott", ...others}, ref) { - const Marriott = React.forwardRef(function Marriott({color = 'currentColor', size = 24, title = "marriott", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Marriott - \ No newline at end of file +export default Marriott; diff --git a/src/components/Maserati.tsx b/src/components/Maserati.tsx index ec706df48..29173083f 100644 --- a/src/components/Maserati.tsx +++ b/src/components/Maserati.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MaseratiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MaseratiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Maserati = React.forwardRef(function Maserati({color = 'currentColor', size = 24, title = "maserati", ...others}, ref) { - const Maserati = React.forwardRef(function Maserati({color = 'currentColor', size = 24, title = "maserati", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Maserati - \ No newline at end of file +export default Maserati; diff --git a/src/components/Mastercard.tsx b/src/components/Mastercard.tsx index 2cc8b582d..375d44cb8 100644 --- a/src/components/Mastercard.tsx +++ b/src/components/Mastercard.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MastercardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MastercardProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mastercard = React.forwardRef(function Mastercard({color = 'currentColor', size = 24, title = "mastercard", ...others}, ref) { - const Mastercard = React.forwardRef(function Mastercard({color = 'currentColor', size = 24, title = "mastercard", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mastercard - \ No newline at end of file +export default Mastercard; diff --git a/src/components/Mastercomfig.tsx b/src/components/Mastercomfig.tsx index fb6298e84..183e3a7c2 100644 --- a/src/components/Mastercomfig.tsx +++ b/src/components/Mastercomfig.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MastercomfigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MastercomfigProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mastercomfig = React.forwardRef(function Mastercomfig({color = 'currentColor', size = 24, title = "mastercomfig", ...others}, ref) { - const Mastercomfig = React.forwardRef(function Mastercomfig({color = 'currentColor', size = 24, title = "mastercomfig", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mastercomfig - \ No newline at end of file +export default Mastercomfig; diff --git a/src/components/Mastodon.tsx b/src/components/Mastodon.tsx index c5f3f9d82..de45d6695 100644 --- a/src/components/Mastodon.tsx +++ b/src/components/Mastodon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MastodonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MastodonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mastodon = React.forwardRef(function Mastodon({color = 'currentColor', size = 24, title = "mastodon", ...others}, ref) { - const Mastodon = React.forwardRef(function Mastodon({color = 'currentColor', size = 24, title = "mastodon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mastodon - \ No newline at end of file +export default Mastodon; diff --git a/src/components/Materialdesign.tsx b/src/components/Materialdesign.tsx index a33c29800..697081d10 100644 --- a/src/components/Materialdesign.tsx +++ b/src/components/Materialdesign.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MaterialdesignProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MaterialdesignProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Materialdesign = React.forwardRef(function Materialdesign({color = 'currentColor', size = 24, title = "materialdesign", ...others}, ref) { - const Materialdesign = React.forwardRef(function Materialdesign({color = 'currentColor', size = 24, title = "materialdesign", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Materialdesign - \ No newline at end of file +export default Materialdesign; diff --git a/src/components/Materialdesignicons.tsx b/src/components/Materialdesignicons.tsx index 27133d0f3..e4e02dafb 100644 --- a/src/components/Materialdesignicons.tsx +++ b/src/components/Materialdesignicons.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MaterialdesigniconsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MaterialdesigniconsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Materialdesignicons = React.forwardRef(function Materialdesignicons({color = 'currentColor', size = 24, title = "materialdesignicons", ...others}, ref) { - const Materialdesignicons = React.forwardRef(function Materialdesignicons({color = 'currentColor', size = 24, title = "materialdesignicons", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Materialdesignicons - \ No newline at end of file +export default Materialdesignicons; diff --git a/src/components/Matomo.tsx b/src/components/Matomo.tsx index b548ec82c..e3988c261 100644 --- a/src/components/Matomo.tsx +++ b/src/components/Matomo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MatomoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MatomoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Matomo = React.forwardRef(function Matomo({color = 'currentColor', size = 24, title = "matomo", ...others}, ref) { - const Matomo = React.forwardRef(function Matomo({color = 'currentColor', size = 24, title = "matomo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Matomo - \ No newline at end of file +export default Matomo; diff --git a/src/components/Matrix.tsx b/src/components/Matrix.tsx index e9e342009..6f0a74420 100644 --- a/src/components/Matrix.tsx +++ b/src/components/Matrix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MatrixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MatrixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Matrix = React.forwardRef(function Matrix({color = 'currentColor', size = 24, title = "matrix", ...others}, ref) { - const Matrix = React.forwardRef(function Matrix({color = 'currentColor', size = 24, title = "matrix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Matrix - \ No newline at end of file +export default Matrix; diff --git a/src/components/Matterdotjs.tsx b/src/components/Matterdotjs.tsx index b1cd382bd..4176a9b26 100644 --- a/src/components/Matterdotjs.tsx +++ b/src/components/Matterdotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MatterdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MatterdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Matterdotjs = React.forwardRef(function Matterdotjs({color = 'currentColor', size = 24, title = "matterdotjs", ...others}, ref) { - const Matterdotjs = React.forwardRef(function Matterdotjs({color = 'currentColor', size = 24, title = "matterdotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Matterdotjs - \ No newline at end of file +export default Matterdotjs; diff --git a/src/components/Mattermost.tsx b/src/components/Mattermost.tsx index 669e982bf..afb024186 100644 --- a/src/components/Mattermost.tsx +++ b/src/components/Mattermost.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MattermostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MattermostProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mattermost = React.forwardRef(function Mattermost({color = 'currentColor', size = 24, title = "mattermost", ...others}, ref) { - const Mattermost = React.forwardRef(function Mattermost({color = 'currentColor', size = 24, title = "mattermost", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mattermost - \ No newline at end of file +export default Mattermost; diff --git a/src/components/Matternet.tsx b/src/components/Matternet.tsx index 92de71757..4076e477b 100644 --- a/src/components/Matternet.tsx +++ b/src/components/Matternet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MatternetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MatternetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Matternet = React.forwardRef(function Matternet({color = 'currentColor', size = 24, title = "matternet", ...others}, ref) { - const Matternet = React.forwardRef(function Matternet({color = 'currentColor', size = 24, title = "matternet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Matternet - \ No newline at end of file +export default Matternet; diff --git a/src/components/Max.tsx b/src/components/Max.tsx index f24f8adb7..b57735781 100644 --- a/src/components/Max.tsx +++ b/src/components/Max.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MaxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MaxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Max = React.forwardRef(function Max({color = 'currentColor', size = 24, title = "max", ...others}, ref) { - const Max = React.forwardRef(function Max({color = 'currentColor', size = 24, title = "max", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Max - \ No newline at end of file +export default Max; diff --git a/src/components/Maxplanckgesellschaft.tsx b/src/components/Maxplanckgesellschaft.tsx index cc9027114..773eaec03 100644 --- a/src/components/Maxplanckgesellschaft.tsx +++ b/src/components/Maxplanckgesellschaft.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MaxplanckgesellschaftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MaxplanckgesellschaftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Maxplanckgesellschaft = React.forwardRef(function Maxplanckgesellschaft({color = 'currentColor', size = 24, title = "maxplanckgesellschaft", ...others}, ref) { - const Maxplanckgesellschaft = React.forwardRef(function Maxplanckgesellschaft({color = 'currentColor', size = 24, title = "maxplanckgesellschaft", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Maxplanckgesellschaft - \ No newline at end of file +export default Maxplanckgesellschaft; diff --git a/src/components/Maytag.tsx b/src/components/Maytag.tsx index dbe125cdc..810ab395c 100644 --- a/src/components/Maytag.tsx +++ b/src/components/Maytag.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MaytagProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MaytagProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Maytag = React.forwardRef(function Maytag({color = 'currentColor', size = 24, title = "maytag", ...others}, ref) { - const Maytag = React.forwardRef(function Maytag({color = 'currentColor', size = 24, title = "maytag", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Maytag - \ No newline at end of file +export default Maytag; diff --git a/src/components/Mazda.tsx b/src/components/Mazda.tsx index fa88a4d90..0b436709f 100644 --- a/src/components/Mazda.tsx +++ b/src/components/Mazda.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MazdaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MazdaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mazda = React.forwardRef(function Mazda({color = 'currentColor', size = 24, title = "mazda", ...others}, ref) { - const Mazda = React.forwardRef(function Mazda({color = 'currentColor', size = 24, title = "mazda", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mazda - \ No newline at end of file +export default Mazda; diff --git a/src/components/Mcafee.tsx b/src/components/Mcafee.tsx index 20105c2cb..924950b1e 100644 --- a/src/components/Mcafee.tsx +++ b/src/components/Mcafee.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type McafeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type McafeeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mcafee = React.forwardRef(function Mcafee({color = 'currentColor', size = 24, title = "mcafee", ...others}, ref) { - const Mcafee = React.forwardRef(function Mcafee({color = 'currentColor', size = 24, title = "mcafee", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mcafee - \ No newline at end of file +export default Mcafee; diff --git a/src/components/Mcdonalds.tsx b/src/components/Mcdonalds.tsx index 13b08d432..a7abda163 100644 --- a/src/components/Mcdonalds.tsx +++ b/src/components/Mcdonalds.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type McdonaldsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type McdonaldsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mcdonalds = React.forwardRef(function Mcdonalds({color = 'currentColor', size = 24, title = "mcdonalds", ...others}, ref) { - const Mcdonalds = React.forwardRef(function Mcdonalds({color = 'currentColor', size = 24, title = "mcdonalds", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mcdonalds - \ No newline at end of file +export default Mcdonalds; diff --git a/src/components/Mclaren.tsx b/src/components/Mclaren.tsx index 7202045df..fa9e7c240 100644 --- a/src/components/Mclaren.tsx +++ b/src/components/Mclaren.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MclarenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MclarenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mclaren = React.forwardRef(function Mclaren({color = 'currentColor', size = 24, title = "mclaren", ...others}, ref) { - const Mclaren = React.forwardRef(function Mclaren({color = 'currentColor', size = 24, title = "mclaren", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mclaren - \ No newline at end of file +export default Mclaren; diff --git a/src/components/Mdbook.tsx b/src/components/Mdbook.tsx index 777ebd473..45d86a24f 100644 --- a/src/components/Mdbook.tsx +++ b/src/components/Mdbook.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MdbookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MdbookProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mdbook = React.forwardRef(function Mdbook({color = 'currentColor', size = 24, title = "mdbook", ...others}, ref) { - const Mdbook = React.forwardRef(function Mdbook({color = 'currentColor', size = 24, title = "mdbook", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mdbook - \ No newline at end of file +export default Mdbook; diff --git a/src/components/Mdnwebdocs.tsx b/src/components/Mdnwebdocs.tsx index 6579da8e0..b21cba5e3 100644 --- a/src/components/Mdnwebdocs.tsx +++ b/src/components/Mdnwebdocs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MdnwebdocsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MdnwebdocsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mdnwebdocs = React.forwardRef(function Mdnwebdocs({color = 'currentColor', size = 24, title = "mdnwebdocs", ...others}, ref) { - const Mdnwebdocs = React.forwardRef(function Mdnwebdocs({color = 'currentColor', size = 24, title = "mdnwebdocs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mdnwebdocs - \ No newline at end of file +export default Mdnwebdocs; diff --git a/src/components/Mdx.tsx b/src/components/Mdx.tsx index 9b4cadb7d..a2818cb3c 100644 --- a/src/components/Mdx.tsx +++ b/src/components/Mdx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MdxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MdxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mdx = React.forwardRef(function Mdx({color = 'currentColor', size = 24, title = "mdx", ...others}, ref) { - const Mdx = React.forwardRef(function Mdx({color = 'currentColor', size = 24, title = "mdx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mdx - \ No newline at end of file +export default Mdx; diff --git a/src/components/Mediafire.tsx b/src/components/Mediafire.tsx index 60853f547..45b42d738 100644 --- a/src/components/Mediafire.tsx +++ b/src/components/Mediafire.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MediafireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MediafireProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mediafire = React.forwardRef(function Mediafire({color = 'currentColor', size = 24, title = "mediafire", ...others}, ref) { - const Mediafire = React.forwardRef(function Mediafire({color = 'currentColor', size = 24, title = "mediafire", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mediafire - \ No newline at end of file +export default Mediafire; diff --git a/src/components/Mediamarkt.tsx b/src/components/Mediamarkt.tsx index 100d5ce12..db738bcb0 100644 --- a/src/components/Mediamarkt.tsx +++ b/src/components/Mediamarkt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MediamarktProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MediamarktProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mediamarkt = React.forwardRef(function Mediamarkt({color = 'currentColor', size = 24, title = "mediamarkt", ...others}, ref) { - const Mediamarkt = React.forwardRef(function Mediamarkt({color = 'currentColor', size = 24, title = "mediamarkt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mediamarkt - \ No newline at end of file +export default Mediamarkt; diff --git a/src/components/Mediatek.tsx b/src/components/Mediatek.tsx index cd6236f57..ad529c80c 100644 --- a/src/components/Mediatek.tsx +++ b/src/components/Mediatek.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MediatekProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MediatekProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mediatek = React.forwardRef(function Mediatek({color = 'currentColor', size = 24, title = "mediatek", ...others}, ref) { - const Mediatek = React.forwardRef(function Mediatek({color = 'currentColor', size = 24, title = "mediatek", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mediatek - \ No newline at end of file +export default Mediatek; diff --git a/src/components/Mediatemple.tsx b/src/components/Mediatemple.tsx index d05f77eb2..429a640b4 100644 --- a/src/components/Mediatemple.tsx +++ b/src/components/Mediatemple.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MediatempleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MediatempleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mediatemple = React.forwardRef(function Mediatemple({color = 'currentColor', size = 24, title = "mediatemple", ...others}, ref) { - const Mediatemple = React.forwardRef(function Mediatemple({color = 'currentColor', size = 24, title = "mediatemple", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mediatemple - \ No newline at end of file +export default Mediatemple; diff --git a/src/components/Medium.tsx b/src/components/Medium.tsx index 9d4e178e4..b45ed4ffc 100644 --- a/src/components/Medium.tsx +++ b/src/components/Medium.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MediumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MediumProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Medium = React.forwardRef(function Medium({color = 'currentColor', size = 24, title = "medium", ...others}, ref) { - const Medium = React.forwardRef(function Medium({color = 'currentColor', size = 24, title = "medium", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Medium - \ No newline at end of file +export default Medium; diff --git a/src/components/Meetup.tsx b/src/components/Meetup.tsx index 99cb34154..4df01f026 100644 --- a/src/components/Meetup.tsx +++ b/src/components/Meetup.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MeetupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MeetupProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Meetup = React.forwardRef(function Meetup({color = 'currentColor', size = 24, title = "meetup", ...others}, ref) { - const Meetup = React.forwardRef(function Meetup({color = 'currentColor', size = 24, title = "meetup", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Meetup - \ No newline at end of file +export default Meetup; diff --git a/src/components/Mega.tsx b/src/components/Mega.tsx index 5badba586..d17e8584e 100644 --- a/src/components/Mega.tsx +++ b/src/components/Mega.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MegaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MegaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mega = React.forwardRef(function Mega({color = 'currentColor', size = 24, title = "mega", ...others}, ref) { - const Mega = React.forwardRef(function Mega({color = 'currentColor', size = 24, title = "mega", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mega - \ No newline at end of file +export default Mega; diff --git a/src/components/Mendeley.tsx b/src/components/Mendeley.tsx index d51b66edb..da7d65229 100644 --- a/src/components/Mendeley.tsx +++ b/src/components/Mendeley.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MendeleyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MendeleyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mendeley = React.forwardRef(function Mendeley({color = 'currentColor', size = 24, title = "mendeley", ...others}, ref) { - const Mendeley = React.forwardRef(function Mendeley({color = 'currentColor', size = 24, title = "mendeley", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mendeley - \ No newline at end of file +export default Mendeley; diff --git a/src/components/Mercedes.tsx b/src/components/Mercedes.tsx index 2e5af77ee..c0d0f5a66 100644 --- a/src/components/Mercedes.tsx +++ b/src/components/Mercedes.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MercedesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MercedesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mercedes = React.forwardRef(function Mercedes({color = 'currentColor', size = 24, title = "mercedes", ...others}, ref) { - const Mercedes = React.forwardRef(function Mercedes({color = 'currentColor', size = 24, title = "mercedes", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mercedes - \ No newline at end of file +export default Mercedes; diff --git a/src/components/Merck.tsx b/src/components/Merck.tsx index 291621163..e943f8979 100644 --- a/src/components/Merck.tsx +++ b/src/components/Merck.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MerckProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MerckProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Merck = React.forwardRef(function Merck({color = 'currentColor', size = 24, title = "merck", ...others}, ref) { - const Merck = React.forwardRef(function Merck({color = 'currentColor', size = 24, title = "merck", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Merck - \ No newline at end of file +export default Merck; diff --git a/src/components/Mercurial.tsx b/src/components/Mercurial.tsx index cdcafeb0d..8ccd93179 100644 --- a/src/components/Mercurial.tsx +++ b/src/components/Mercurial.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MercurialProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MercurialProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mercurial = React.forwardRef(function Mercurial({color = 'currentColor', size = 24, title = "mercurial", ...others}, ref) { - const Mercurial = React.forwardRef(function Mercurial({color = 'currentColor', size = 24, title = "mercurial", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mercurial - \ No newline at end of file +export default Mercurial; diff --git a/src/components/Messenger.tsx b/src/components/Messenger.tsx index a24508c34..faf4f1eb4 100644 --- a/src/components/Messenger.tsx +++ b/src/components/Messenger.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MessengerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MessengerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Messenger = React.forwardRef(function Messenger({color = 'currentColor', size = 24, title = "messenger", ...others}, ref) { - const Messenger = React.forwardRef(function Messenger({color = 'currentColor', size = 24, title = "messenger", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Messenger - \ No newline at end of file +export default Messenger; diff --git a/src/components/Meta.tsx b/src/components/Meta.tsx index b24d25200..4cb1ab82d 100644 --- a/src/components/Meta.tsx +++ b/src/components/Meta.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MetaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MetaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Meta = React.forwardRef(function Meta({color = 'currentColor', size = 24, title = "meta", ...others}, ref) { - const Meta = React.forwardRef(function Meta({color = 'currentColor', size = 24, title = "meta", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Meta - \ No newline at end of file +export default Meta; diff --git a/src/components/Metabase.tsx b/src/components/Metabase.tsx index cdd88c26e..d9780876f 100644 --- a/src/components/Metabase.tsx +++ b/src/components/Metabase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MetabaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MetabaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Metabase = React.forwardRef(function Metabase({color = 'currentColor', size = 24, title = "metabase", ...others}, ref) { - const Metabase = React.forwardRef(function Metabase({color = 'currentColor', size = 24, title = "metabase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Metabase - \ No newline at end of file +export default Metabase; diff --git a/src/components/Metafilter.tsx b/src/components/Metafilter.tsx index 93d54ab20..cdd84c3b3 100644 --- a/src/components/Metafilter.tsx +++ b/src/components/Metafilter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MetafilterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MetafilterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Metafilter = React.forwardRef(function Metafilter({color = 'currentColor', size = 24, title = "metafilter", ...others}, ref) { - const Metafilter = React.forwardRef(function Metafilter({color = 'currentColor', size = 24, title = "metafilter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Metafilter - \ No newline at end of file +export default Metafilter; diff --git a/src/components/Meteor.tsx b/src/components/Meteor.tsx index 5c479743a..3fc7aed0e 100644 --- a/src/components/Meteor.tsx +++ b/src/components/Meteor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MeteorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MeteorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Meteor = React.forwardRef(function Meteor({color = 'currentColor', size = 24, title = "meteor", ...others}, ref) { - const Meteor = React.forwardRef(function Meteor({color = 'currentColor', size = 24, title = "meteor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Meteor - \ No newline at end of file +export default Meteor; diff --git a/src/components/Metro.tsx b/src/components/Metro.tsx index 83f430d5e..44507f0e8 100644 --- a/src/components/Metro.tsx +++ b/src/components/Metro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MetroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MetroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Metro = React.forwardRef(function Metro({color = 'currentColor', size = 24, title = "metro", ...others}, ref) { - const Metro = React.forwardRef(function Metro({color = 'currentColor', size = 24, title = "metro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Metro - \ No newline at end of file +export default Metro; diff --git a/src/components/Metrodelaciudaddemexico.tsx b/src/components/Metrodelaciudaddemexico.tsx index 30fb1a65b..6bbd723c5 100644 --- a/src/components/Metrodelaciudaddemexico.tsx +++ b/src/components/Metrodelaciudaddemexico.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MetrodelaciudaddemexicoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MetrodelaciudaddemexicoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Metrodelaciudaddemexico = React.forwardRef(function Metrodelaciudaddemexico({color = 'currentColor', size = 24, title = "metrodelaciudaddemexico", ...others}, ref) { - const Metrodelaciudaddemexico = React.forwardRef(function Metrodelaciudaddemexico({color = 'currentColor', size = 24, title = "metrodelaciudaddemexico", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Metrodelaciudaddemexico - \ No newline at end of file +export default Metrodelaciudaddemexico; diff --git a/src/components/Metrodemadrid.tsx b/src/components/Metrodemadrid.tsx index ac44c872e..37445c030 100644 --- a/src/components/Metrodemadrid.tsx +++ b/src/components/Metrodemadrid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MetrodemadridProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MetrodemadridProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Metrodemadrid = React.forwardRef(function Metrodemadrid({color = 'currentColor', size = 24, title = "metrodemadrid", ...others}, ref) { - const Metrodemadrid = React.forwardRef(function Metrodemadrid({color = 'currentColor', size = 24, title = "metrodemadrid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Metrodemadrid - \ No newline at end of file +export default Metrodemadrid; diff --git a/src/components/Metrodeparis.tsx b/src/components/Metrodeparis.tsx index 3ac3e5ebe..9bcca5b2b 100644 --- a/src/components/Metrodeparis.tsx +++ b/src/components/Metrodeparis.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MetrodeparisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MetrodeparisProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Metrodeparis = React.forwardRef(function Metrodeparis({color = 'currentColor', size = 24, title = "metrodeparis", ...others}, ref) { - const Metrodeparis = React.forwardRef(function Metrodeparis({color = 'currentColor', size = 24, title = "metrodeparis", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Metrodeparis - \ No newline at end of file +export default Metrodeparis; diff --git a/src/components/Mewe.tsx b/src/components/Mewe.tsx index fe0b67b4e..41693b9bd 100644 --- a/src/components/Mewe.tsx +++ b/src/components/Mewe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MeweProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MeweProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mewe = React.forwardRef(function Mewe({color = 'currentColor', size = 24, title = "mewe", ...others}, ref) { - const Mewe = React.forwardRef(function Mewe({color = 'currentColor', size = 24, title = "mewe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mewe - \ No newline at end of file +export default Mewe; diff --git a/src/components/Microbit.tsx b/src/components/Microbit.tsx index 7a181acf5..b42166ee4 100644 --- a/src/components/Microbit.tsx +++ b/src/components/Microbit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrobitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrobitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microbit = React.forwardRef(function Microbit({color = 'currentColor', size = 24, title = "microbit", ...others}, ref) { - const Microbit = React.forwardRef(function Microbit({color = 'currentColor', size = 24, title = "microbit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microbit - \ No newline at end of file +export default Microbit; diff --git a/src/components/Microdotblog.tsx b/src/components/Microdotblog.tsx index bd810312d..6c581a91c 100644 --- a/src/components/Microdotblog.tsx +++ b/src/components/Microdotblog.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrodotblogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrodotblogProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microdotblog = React.forwardRef(function Microdotblog({color = 'currentColor', size = 24, title = "microdotblog", ...others}, ref) { - const Microdotblog = React.forwardRef(function Microdotblog({color = 'currentColor', size = 24, title = "microdotblog", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microdotblog - \ No newline at end of file +export default Microdotblog; diff --git a/src/components/Microgenetics.tsx b/src/components/Microgenetics.tsx index d194e1f19..0bf036040 100644 --- a/src/components/Microgenetics.tsx +++ b/src/components/Microgenetics.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrogeneticsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrogeneticsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microgenetics = React.forwardRef(function Microgenetics({color = 'currentColor', size = 24, title = "microgenetics", ...others}, ref) { - const Microgenetics = React.forwardRef(function Microgenetics({color = 'currentColor', size = 24, title = "microgenetics", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microgenetics - \ No newline at end of file +export default Microgenetics; diff --git a/src/components/Micropython.tsx b/src/components/Micropython.tsx index b4e36a90f..0134c86e5 100644 --- a/src/components/Micropython.tsx +++ b/src/components/Micropython.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicropythonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicropythonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Micropython = React.forwardRef(function Micropython({color = 'currentColor', size = 24, title = "micropython", ...others}, ref) { - const Micropython = React.forwardRef(function Micropython({color = 'currentColor', size = 24, title = "micropython", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Micropython - \ No newline at end of file +export default Micropython; diff --git a/src/components/Microsoft.tsx b/src/components/Microsoft.tsx index 0c18dc753..82ff1e16d 100644 --- a/src/components/Microsoft.tsx +++ b/src/components/Microsoft.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoft = React.forwardRef(function Microsoft({color = 'currentColor', size = 24, title = "microsoft", ...others}, ref) { - const Microsoft = React.forwardRef(function Microsoft({color = 'currentColor', size = 24, title = "microsoft", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoft - \ No newline at end of file +export default Microsoft; diff --git a/src/components/Microsoftacademic.tsx b/src/components/Microsoftacademic.tsx index 16b37132a..df2626fe3 100644 --- a/src/components/Microsoftacademic.tsx +++ b/src/components/Microsoftacademic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftacademicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftacademicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftacademic = React.forwardRef(function Microsoftacademic({color = 'currentColor', size = 24, title = "microsoftacademic", ...others}, ref) { - const Microsoftacademic = React.forwardRef(function Microsoftacademic({color = 'currentColor', size = 24, title = "microsoftacademic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftacademic - \ No newline at end of file +export default Microsoftacademic; diff --git a/src/components/Microsoftaccess.tsx b/src/components/Microsoftaccess.tsx index 493520896..c447c8b40 100644 --- a/src/components/Microsoftaccess.tsx +++ b/src/components/Microsoftaccess.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftaccessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftaccessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftaccess = React.forwardRef(function Microsoftaccess({color = 'currentColor', size = 24, title = "microsoftaccess", ...others}, ref) { - const Microsoftaccess = React.forwardRef(function Microsoftaccess({color = 'currentColor', size = 24, title = "microsoftaccess", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftaccess - \ No newline at end of file +export default Microsoftaccess; diff --git a/src/components/Microsoftazure.tsx b/src/components/Microsoftazure.tsx index 205906e70..8b47c0886 100644 --- a/src/components/Microsoftazure.tsx +++ b/src/components/Microsoftazure.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftazureProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftazureProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftazure = React.forwardRef(function Microsoftazure({color = 'currentColor', size = 24, title = "microsoftazure", ...others}, ref) { - const Microsoftazure = React.forwardRef(function Microsoftazure({color = 'currentColor', size = 24, title = "microsoftazure", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftazure - \ No newline at end of file +export default Microsoftazure; diff --git a/src/components/Microsoftbing.tsx b/src/components/Microsoftbing.tsx index 723f6727e..028117275 100644 --- a/src/components/Microsoftbing.tsx +++ b/src/components/Microsoftbing.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftbingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftbingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftbing = React.forwardRef(function Microsoftbing({color = 'currentColor', size = 24, title = "microsoftbing", ...others}, ref) { - const Microsoftbing = React.forwardRef(function Microsoftbing({color = 'currentColor', size = 24, title = "microsoftbing", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftbing - \ No newline at end of file +export default Microsoftbing; diff --git a/src/components/Microsoftedge.tsx b/src/components/Microsoftedge.tsx index 795078fba..8aca53c46 100644 --- a/src/components/Microsoftedge.tsx +++ b/src/components/Microsoftedge.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftedgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftedgeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftedge = React.forwardRef(function Microsoftedge({color = 'currentColor', size = 24, title = "microsoftedge", ...others}, ref) { - const Microsoftedge = React.forwardRef(function Microsoftedge({color = 'currentColor', size = 24, title = "microsoftedge", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftedge - \ No newline at end of file +export default Microsoftedge; diff --git a/src/components/Microsoftexcel.tsx b/src/components/Microsoftexcel.tsx index fc48d7102..7436454dd 100644 --- a/src/components/Microsoftexcel.tsx +++ b/src/components/Microsoftexcel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftexcelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftexcelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftexcel = React.forwardRef(function Microsoftexcel({color = 'currentColor', size = 24, title = "microsoftexcel", ...others}, ref) { - const Microsoftexcel = React.forwardRef(function Microsoftexcel({color = 'currentColor', size = 24, title = "microsoftexcel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftexcel - \ No newline at end of file +export default Microsoftexcel; diff --git a/src/components/Microsoftexchange.tsx b/src/components/Microsoftexchange.tsx index f341a56fe..d8d203585 100644 --- a/src/components/Microsoftexchange.tsx +++ b/src/components/Microsoftexchange.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftexchangeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftexchangeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftexchange = React.forwardRef(function Microsoftexchange({color = 'currentColor', size = 24, title = "microsoftexchange", ...others}, ref) { - const Microsoftexchange = React.forwardRef(function Microsoftexchange({color = 'currentColor', size = 24, title = "microsoftexchange", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftexchange - \ No newline at end of file +export default Microsoftexchange; diff --git a/src/components/Microsoftoffice.tsx b/src/components/Microsoftoffice.tsx index fed0b3c49..566a01cad 100644 --- a/src/components/Microsoftoffice.tsx +++ b/src/components/Microsoftoffice.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftofficeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftofficeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftoffice = React.forwardRef(function Microsoftoffice({color = 'currentColor', size = 24, title = "microsoftoffice", ...others}, ref) { - const Microsoftoffice = React.forwardRef(function Microsoftoffice({color = 'currentColor', size = 24, title = "microsoftoffice", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftoffice - \ No newline at end of file +export default Microsoftoffice; diff --git a/src/components/Microsoftonedrive.tsx b/src/components/Microsoftonedrive.tsx index 72c025f04..09ccec0ad 100644 --- a/src/components/Microsoftonedrive.tsx +++ b/src/components/Microsoftonedrive.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftonedriveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftonedriveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftonedrive = React.forwardRef(function Microsoftonedrive({color = 'currentColor', size = 24, title = "microsoftonedrive", ...others}, ref) { - const Microsoftonedrive = React.forwardRef(function Microsoftonedrive({color = 'currentColor', size = 24, title = "microsoftonedrive", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftonedrive - \ No newline at end of file +export default Microsoftonedrive; diff --git a/src/components/Microsoftonenote.tsx b/src/components/Microsoftonenote.tsx index 495c663ee..7cddf0a43 100644 --- a/src/components/Microsoftonenote.tsx +++ b/src/components/Microsoftonenote.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftonenoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftonenoteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftonenote = React.forwardRef(function Microsoftonenote({color = 'currentColor', size = 24, title = "microsoftonenote", ...others}, ref) { - const Microsoftonenote = React.forwardRef(function Microsoftonenote({color = 'currentColor', size = 24, title = "microsoftonenote", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftonenote - \ No newline at end of file +export default Microsoftonenote; diff --git a/src/components/Microsoftoutlook.tsx b/src/components/Microsoftoutlook.tsx index 3b2db950f..220c23905 100644 --- a/src/components/Microsoftoutlook.tsx +++ b/src/components/Microsoftoutlook.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftoutlookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftoutlookProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftoutlook = React.forwardRef(function Microsoftoutlook({color = 'currentColor', size = 24, title = "microsoftoutlook", ...others}, ref) { - const Microsoftoutlook = React.forwardRef(function Microsoftoutlook({color = 'currentColor', size = 24, title = "microsoftoutlook", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftoutlook - \ No newline at end of file +export default Microsoftoutlook; diff --git a/src/components/Microsoftpowerpoint.tsx b/src/components/Microsoftpowerpoint.tsx index ea8ac94c2..2ca27326d 100644 --- a/src/components/Microsoftpowerpoint.tsx +++ b/src/components/Microsoftpowerpoint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftpowerpointProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftpowerpointProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftpowerpoint = React.forwardRef(function Microsoftpowerpoint({color = 'currentColor', size = 24, title = "microsoftpowerpoint", ...others}, ref) { - const Microsoftpowerpoint = React.forwardRef(function Microsoftpowerpoint({color = 'currentColor', size = 24, title = "microsoftpowerpoint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftpowerpoint - \ No newline at end of file +export default Microsoftpowerpoint; diff --git a/src/components/Microsoftsharepoint.tsx b/src/components/Microsoftsharepoint.tsx index 02136eb0c..cedd15543 100644 --- a/src/components/Microsoftsharepoint.tsx +++ b/src/components/Microsoftsharepoint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftsharepointProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftsharepointProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftsharepoint = React.forwardRef(function Microsoftsharepoint({color = 'currentColor', size = 24, title = "microsoftsharepoint", ...others}, ref) { - const Microsoftsharepoint = React.forwardRef(function Microsoftsharepoint({color = 'currentColor', size = 24, title = "microsoftsharepoint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftsharepoint - \ No newline at end of file +export default Microsoftsharepoint; diff --git a/src/components/Microsoftsqlserver.tsx b/src/components/Microsoftsqlserver.tsx index 7046d9222..a84cc3aaa 100644 --- a/src/components/Microsoftsqlserver.tsx +++ b/src/components/Microsoftsqlserver.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftsqlserverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftsqlserverProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftsqlserver = React.forwardRef(function Microsoftsqlserver({color = 'currentColor', size = 24, title = "microsoftsqlserver", ...others}, ref) { - const Microsoftsqlserver = React.forwardRef(function Microsoftsqlserver({color = 'currentColor', size = 24, title = "microsoftsqlserver", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftsqlserver - \ No newline at end of file +export default Microsoftsqlserver; diff --git a/src/components/Microsoftteams.tsx b/src/components/Microsoftteams.tsx index 6f5e456f9..a843a4c3c 100644 --- a/src/components/Microsoftteams.tsx +++ b/src/components/Microsoftteams.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftteamsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftteamsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftteams = React.forwardRef(function Microsoftteams({color = 'currentColor', size = 24, title = "microsoftteams", ...others}, ref) { - const Microsoftteams = React.forwardRef(function Microsoftteams({color = 'currentColor', size = 24, title = "microsoftteams", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftteams - \ No newline at end of file +export default Microsoftteams; diff --git a/src/components/Microsofttranslator.tsx b/src/components/Microsofttranslator.tsx index 5b3d5d2ea..dd862f492 100644 --- a/src/components/Microsofttranslator.tsx +++ b/src/components/Microsofttranslator.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosofttranslatorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosofttranslatorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsofttranslator = React.forwardRef(function Microsofttranslator({color = 'currentColor', size = 24, title = "microsofttranslator", ...others}, ref) { - const Microsofttranslator = React.forwardRef(function Microsofttranslator({color = 'currentColor', size = 24, title = "microsofttranslator", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsofttranslator - \ No newline at end of file +export default Microsofttranslator; diff --git a/src/components/Microsoftvisio.tsx b/src/components/Microsoftvisio.tsx index 1237f16b0..90f75af68 100644 --- a/src/components/Microsoftvisio.tsx +++ b/src/components/Microsoftvisio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftvisioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftvisioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftvisio = React.forwardRef(function Microsoftvisio({color = 'currentColor', size = 24, title = "microsoftvisio", ...others}, ref) { - const Microsoftvisio = React.forwardRef(function Microsoftvisio({color = 'currentColor', size = 24, title = "microsoftvisio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftvisio - \ No newline at end of file +export default Microsoftvisio; diff --git a/src/components/Microsoftword.tsx b/src/components/Microsoftword.tsx index 5e361bead..cd116ff20 100644 --- a/src/components/Microsoftword.tsx +++ b/src/components/Microsoftword.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrosoftwordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrosoftwordProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microsoftword = React.forwardRef(function Microsoftword({color = 'currentColor', size = 24, title = "microsoftword", ...others}, ref) { - const Microsoftword = React.forwardRef(function Microsoftword({color = 'currentColor', size = 24, title = "microsoftword", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microsoftword - \ No newline at end of file +export default Microsoftword; diff --git a/src/components/Microstrategy.tsx b/src/components/Microstrategy.tsx index 1ee3de568..f6da0701f 100644 --- a/src/components/Microstrategy.tsx +++ b/src/components/Microstrategy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MicrostrategyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MicrostrategyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Microstrategy = React.forwardRef(function Microstrategy({color = 'currentColor', size = 24, title = "microstrategy", ...others}, ref) { - const Microstrategy = React.forwardRef(function Microstrategy({color = 'currentColor', size = 24, title = "microstrategy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Microstrategy - \ No newline at end of file +export default Microstrategy; diff --git a/src/components/Midi.tsx b/src/components/Midi.tsx index 8cc1400f0..808967dc3 100644 --- a/src/components/Midi.tsx +++ b/src/components/Midi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MidiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MidiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Midi = React.forwardRef(function Midi({color = 'currentColor', size = 24, title = "midi", ...others}, ref) { - const Midi = React.forwardRef(function Midi({color = 'currentColor', size = 24, title = "midi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Midi - \ No newline at end of file +export default Midi; diff --git a/src/components/Minds.tsx b/src/components/Minds.tsx index 06d39ec40..d6b233449 100644 --- a/src/components/Minds.tsx +++ b/src/components/Minds.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MindsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MindsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Minds = React.forwardRef(function Minds({color = 'currentColor', size = 24, title = "minds", ...others}, ref) { - const Minds = React.forwardRef(function Minds({color = 'currentColor', size = 24, title = "minds", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Minds - \ No newline at end of file +export default Minds; diff --git a/src/components/Minecraft.tsx b/src/components/Minecraft.tsx index 6ccdd1e73..33bd90a50 100644 --- a/src/components/Minecraft.tsx +++ b/src/components/Minecraft.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MinecraftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MinecraftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Minecraft = React.forwardRef(function Minecraft({color = 'currentColor', size = 24, title = "minecraft", ...others}, ref) { - const Minecraft = React.forwardRef(function Minecraft({color = 'currentColor', size = 24, title = "minecraft", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Minecraft - \ No newline at end of file +export default Minecraft; diff --git a/src/components/Minetest.tsx b/src/components/Minetest.tsx index f4ec524f9..3b027deac 100644 --- a/src/components/Minetest.tsx +++ b/src/components/Minetest.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MinetestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MinetestProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Minetest = React.forwardRef(function Minetest({color = 'currentColor', size = 24, title = "minetest", ...others}, ref) { - const Minetest = React.forwardRef(function Minetest({color = 'currentColor', size = 24, title = "minetest", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Minetest - \ No newline at end of file +export default Minetest; diff --git a/src/components/Mini.tsx b/src/components/Mini.tsx index 11a01b47c..7e7678206 100644 --- a/src/components/Mini.tsx +++ b/src/components/Mini.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MiniProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MiniProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mini = React.forwardRef(function Mini({color = 'currentColor', size = 24, title = "mini", ...others}, ref) { - const Mini = React.forwardRef(function Mini({color = 'currentColor', size = 24, title = "mini", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mini - \ No newline at end of file +export default Mini; diff --git a/src/components/Minutemailer.tsx b/src/components/Minutemailer.tsx index 0a89b9a9d..071f3845d 100644 --- a/src/components/Minutemailer.tsx +++ b/src/components/Minutemailer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MinutemailerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MinutemailerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Minutemailer = React.forwardRef(function Minutemailer({color = 'currentColor', size = 24, title = "minutemailer", ...others}, ref) { - const Minutemailer = React.forwardRef(function Minutemailer({color = 'currentColor', size = 24, title = "minutemailer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Minutemailer - \ No newline at end of file +export default Minutemailer; diff --git a/src/components/Miro.tsx b/src/components/Miro.tsx index 1c81fa9f6..2b367ed9b 100644 --- a/src/components/Miro.tsx +++ b/src/components/Miro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MiroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MiroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Miro = React.forwardRef(function Miro({color = 'currentColor', size = 24, title = "miro", ...others}, ref) { - const Miro = React.forwardRef(function Miro({color = 'currentColor', size = 24, title = "miro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Miro - \ No newline at end of file +export default Miro; diff --git a/src/components/Mitsubishi.tsx b/src/components/Mitsubishi.tsx index 9dbe9cec5..e688587ea 100644 --- a/src/components/Mitsubishi.tsx +++ b/src/components/Mitsubishi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MitsubishiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MitsubishiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mitsubishi = React.forwardRef(function Mitsubishi({color = 'currentColor', size = 24, title = "mitsubishi", ...others}, ref) { - const Mitsubishi = React.forwardRef(function Mitsubishi({color = 'currentColor', size = 24, title = "mitsubishi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mitsubishi - \ No newline at end of file +export default Mitsubishi; diff --git a/src/components/Mix.tsx b/src/components/Mix.tsx index aa8514edd..ee5167235 100644 --- a/src/components/Mix.tsx +++ b/src/components/Mix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mix = React.forwardRef(function Mix({color = 'currentColor', size = 24, title = "mix", ...others}, ref) { - const Mix = React.forwardRef(function Mix({color = 'currentColor', size = 24, title = "mix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mix - \ No newline at end of file +export default Mix; diff --git a/src/components/Mixcloud.tsx b/src/components/Mixcloud.tsx index 0edbfa430..21caac645 100644 --- a/src/components/Mixcloud.tsx +++ b/src/components/Mixcloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MixcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MixcloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mixcloud = React.forwardRef(function Mixcloud({color = 'currentColor', size = 24, title = "mixcloud", ...others}, ref) { - const Mixcloud = React.forwardRef(function Mixcloud({color = 'currentColor', size = 24, title = "mixcloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mixcloud - \ No newline at end of file +export default Mixcloud; diff --git a/src/components/Mlb.tsx b/src/components/Mlb.tsx index f61b9e85d..fee8dadf4 100644 --- a/src/components/Mlb.tsx +++ b/src/components/Mlb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MlbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MlbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mlb = React.forwardRef(function Mlb({color = 'currentColor', size = 24, title = "mlb", ...others}, ref) { - const Mlb = React.forwardRef(function Mlb({color = 'currentColor', size = 24, title = "mlb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mlb - \ No newline at end of file +export default Mlb; diff --git a/src/components/Mlflow.tsx b/src/components/Mlflow.tsx index dd05490b7..83ec6372e 100644 --- a/src/components/Mlflow.tsx +++ b/src/components/Mlflow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MlflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MlflowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mlflow = React.forwardRef(function Mlflow({color = 'currentColor', size = 24, title = "mlflow", ...others}, ref) { - const Mlflow = React.forwardRef(function Mlflow({color = 'currentColor', size = 24, title = "mlflow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mlflow - \ No newline at end of file +export default Mlflow; diff --git a/src/components/Mobx.tsx b/src/components/Mobx.tsx index 8fd77f916..a38db3ea8 100644 --- a/src/components/Mobx.tsx +++ b/src/components/Mobx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MobxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MobxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mobx = React.forwardRef(function Mobx({color = 'currentColor', size = 24, title = "mobx", ...others}, ref) { - const Mobx = React.forwardRef(function Mobx({color = 'currentColor', size = 24, title = "mobx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mobx - \ No newline at end of file +export default Mobx; diff --git a/src/components/Mobxstatetree.tsx b/src/components/Mobxstatetree.tsx index a1464003f..0285b2c67 100644 --- a/src/components/Mobxstatetree.tsx +++ b/src/components/Mobxstatetree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MobxstatetreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MobxstatetreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mobxstatetree = React.forwardRef(function Mobxstatetree({color = 'currentColor', size = 24, title = "mobxstatetree", ...others}, ref) { - const Mobxstatetree = React.forwardRef(function Mobxstatetree({color = 'currentColor', size = 24, title = "mobxstatetree", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mobxstatetree - \ No newline at end of file +export default Mobxstatetree; diff --git a/src/components/Mocha.tsx b/src/components/Mocha.tsx index 94f09fb88..758a2b614 100644 --- a/src/components/Mocha.tsx +++ b/src/components/Mocha.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MochaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MochaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mocha = React.forwardRef(function Mocha({color = 'currentColor', size = 24, title = "mocha", ...others}, ref) { - const Mocha = React.forwardRef(function Mocha({color = 'currentColor', size = 24, title = "mocha", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mocha - \ No newline at end of file +export default Mocha; diff --git a/src/components/Modx.tsx b/src/components/Modx.tsx index 4230b9d20..38b4be6da 100644 --- a/src/components/Modx.tsx +++ b/src/components/Modx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ModxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ModxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Modx = React.forwardRef(function Modx({color = 'currentColor', size = 24, title = "modx", ...others}, ref) { - const Modx = React.forwardRef(function Modx({color = 'currentColor', size = 24, title = "modx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Modx - \ No newline at end of file +export default Modx; diff --git a/src/components/Mojangstudios.tsx b/src/components/Mojangstudios.tsx index 762697b5e..d5358aa90 100644 --- a/src/components/Mojangstudios.tsx +++ b/src/components/Mojangstudios.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MojangstudiosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MojangstudiosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mojangstudios = React.forwardRef(function Mojangstudios({color = 'currentColor', size = 24, title = "mojangstudios", ...others}, ref) { - const Mojangstudios = React.forwardRef(function Mojangstudios({color = 'currentColor', size = 24, title = "mojangstudios", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mojangstudios - \ No newline at end of file +export default Mojangstudios; diff --git a/src/components/Moleculer.tsx b/src/components/Moleculer.tsx index 606410b01..1c1e3061e 100644 --- a/src/components/Moleculer.tsx +++ b/src/components/Moleculer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MoleculerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MoleculerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Moleculer = React.forwardRef(function Moleculer({color = 'currentColor', size = 24, title = "moleculer", ...others}, ref) { - const Moleculer = React.forwardRef(function Moleculer({color = 'currentColor', size = 24, title = "moleculer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Moleculer - \ No newline at end of file +export default Moleculer; diff --git a/src/components/Momenteo.tsx b/src/components/Momenteo.tsx index f9dd370d1..7c372ac2a 100644 --- a/src/components/Momenteo.tsx +++ b/src/components/Momenteo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MomenteoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MomenteoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Momenteo = React.forwardRef(function Momenteo({color = 'currentColor', size = 24, title = "momenteo", ...others}, ref) { - const Momenteo = React.forwardRef(function Momenteo({color = 'currentColor', size = 24, title = "momenteo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Momenteo - \ No newline at end of file +export default Momenteo; diff --git a/src/components/Monero.tsx b/src/components/Monero.tsx index 45d0eef53..8ea22c8ec 100644 --- a/src/components/Monero.tsx +++ b/src/components/Monero.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MoneroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MoneroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Monero = React.forwardRef(function Monero({color = 'currentColor', size = 24, title = "monero", ...others}, ref) { - const Monero = React.forwardRef(function Monero({color = 'currentColor', size = 24, title = "monero", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Monero - \ No newline at end of file +export default Monero; diff --git a/src/components/Moneygram.tsx b/src/components/Moneygram.tsx index 47fc5cca4..52734a3f2 100644 --- a/src/components/Moneygram.tsx +++ b/src/components/Moneygram.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MoneygramProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MoneygramProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Moneygram = React.forwardRef(function Moneygram({color = 'currentColor', size = 24, title = "moneygram", ...others}, ref) { - const Moneygram = React.forwardRef(function Moneygram({color = 'currentColor', size = 24, title = "moneygram", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Moneygram - \ No newline at end of file +export default Moneygram; diff --git a/src/components/Mongodb.tsx b/src/components/Mongodb.tsx index fd65668a8..bf2213f80 100644 --- a/src/components/Mongodb.tsx +++ b/src/components/Mongodb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MongodbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MongodbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mongodb = React.forwardRef(function Mongodb({color = 'currentColor', size = 24, title = "mongodb", ...others}, ref) { - const Mongodb = React.forwardRef(function Mongodb({color = 'currentColor', size = 24, title = "mongodb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mongodb - \ No newline at end of file +export default Mongodb; diff --git a/src/components/Monkeytie.tsx b/src/components/Monkeytie.tsx index 6e28e28d2..14ef861ce 100644 --- a/src/components/Monkeytie.tsx +++ b/src/components/Monkeytie.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MonkeytieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MonkeytieProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Monkeytie = React.forwardRef(function Monkeytie({color = 'currentColor', size = 24, title = "monkeytie", ...others}, ref) { - const Monkeytie = React.forwardRef(function Monkeytie({color = 'currentColor', size = 24, title = "monkeytie", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Monkeytie - \ No newline at end of file +export default Monkeytie; diff --git a/src/components/Monogames.tsx b/src/components/Monogames.tsx index 1776ba7d1..dbc80f952 100644 --- a/src/components/Monogames.tsx +++ b/src/components/Monogames.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MonogamesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MonogamesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Monogames = React.forwardRef(function Monogames({color = 'currentColor', size = 24, title = "monogames", ...others}, ref) { - const Monogames = React.forwardRef(function Monogames({color = 'currentColor', size = 24, title = "monogames", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Monogames - \ No newline at end of file +export default Monogames; diff --git a/src/components/Monoprix.tsx b/src/components/Monoprix.tsx index fbfcb7da1..f204ef881 100644 --- a/src/components/Monoprix.tsx +++ b/src/components/Monoprix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MonoprixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MonoprixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Monoprix = React.forwardRef(function Monoprix({color = 'currentColor', size = 24, title = "monoprix", ...others}, ref) { - const Monoprix = React.forwardRef(function Monoprix({color = 'currentColor', size = 24, title = "monoprix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Monoprix - \ No newline at end of file +export default Monoprix; diff --git a/src/components/Monster.tsx b/src/components/Monster.tsx index 8a632dfd9..4f441075b 100644 --- a/src/components/Monster.tsx +++ b/src/components/Monster.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MonsterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MonsterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Monster = React.forwardRef(function Monster({color = 'currentColor', size = 24, title = "monster", ...others}, ref) { - const Monster = React.forwardRef(function Monster({color = 'currentColor', size = 24, title = "monster", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Monster - \ No newline at end of file +export default Monster; diff --git a/src/components/Monzo.tsx b/src/components/Monzo.tsx index 8a522b4ac..4ad10f5c1 100644 --- a/src/components/Monzo.tsx +++ b/src/components/Monzo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MonzoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MonzoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Monzo = React.forwardRef(function Monzo({color = 'currentColor', size = 24, title = "monzo", ...others}, ref) { - const Monzo = React.forwardRef(function Monzo({color = 'currentColor', size = 24, title = "monzo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Monzo - \ No newline at end of file +export default Monzo; diff --git a/src/components/Moo.tsx b/src/components/Moo.tsx index 19eca22e0..7c18ab616 100644 --- a/src/components/Moo.tsx +++ b/src/components/Moo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MooProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Moo = React.forwardRef(function Moo({color = 'currentColor', size = 24, title = "moo", ...others}, ref) { - const Moo = React.forwardRef(function Moo({color = 'currentColor', size = 24, title = "moo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Moo - \ No newline at end of file +export default Moo; diff --git a/src/components/Morrisons.tsx b/src/components/Morrisons.tsx index 3edb72b2b..f27414363 100644 --- a/src/components/Morrisons.tsx +++ b/src/components/Morrisons.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MorrisonsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MorrisonsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Morrisons = React.forwardRef(function Morrisons({color = 'currentColor', size = 24, title = "morrisons", ...others}, ref) { - const Morrisons = React.forwardRef(function Morrisons({color = 'currentColor', size = 24, title = "morrisons", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Morrisons - \ No newline at end of file +export default Morrisons; diff --git a/src/components/Moscowmetro.tsx b/src/components/Moscowmetro.tsx index 30223cbae..391f0014b 100644 --- a/src/components/Moscowmetro.tsx +++ b/src/components/Moscowmetro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MoscowmetroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MoscowmetroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Moscowmetro = React.forwardRef(function Moscowmetro({color = 'currentColor', size = 24, title = "moscowmetro", ...others}, ref) { - const Moscowmetro = React.forwardRef(function Moscowmetro({color = 'currentColor', size = 24, title = "moscowmetro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Moscowmetro - \ No newline at end of file +export default Moscowmetro; diff --git a/src/components/Motorola.tsx b/src/components/Motorola.tsx index 79e3e23da..5de6ed114 100644 --- a/src/components/Motorola.tsx +++ b/src/components/Motorola.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MotorolaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MotorolaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Motorola = React.forwardRef(function Motorola({color = 'currentColor', size = 24, title = "motorola", ...others}, ref) { - const Motorola = React.forwardRef(function Motorola({color = 'currentColor', size = 24, title = "motorola", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Motorola - \ No newline at end of file +export default Motorola; diff --git a/src/components/Mozilla.tsx b/src/components/Mozilla.tsx index d987758c8..7accf6a6c 100644 --- a/src/components/Mozilla.tsx +++ b/src/components/Mozilla.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MozillaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MozillaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mozilla = React.forwardRef(function Mozilla({color = 'currentColor', size = 24, title = "mozilla", ...others}, ref) { - const Mozilla = React.forwardRef(function Mozilla({color = 'currentColor', size = 24, title = "mozilla", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mozilla - \ No newline at end of file +export default Mozilla; diff --git a/src/components/Msi.tsx b/src/components/Msi.tsx index 32e2f7fe5..b40ed7b1c 100644 --- a/src/components/Msi.tsx +++ b/src/components/Msi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MsiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MsiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Msi = React.forwardRef(function Msi({color = 'currentColor', size = 24, title = "msi", ...others}, ref) { - const Msi = React.forwardRef(function Msi({color = 'currentColor', size = 24, title = "msi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Msi - \ No newline at end of file +export default Msi; diff --git a/src/components/Msibusiness.tsx b/src/components/Msibusiness.tsx index 5300a33d7..9173924dc 100644 --- a/src/components/Msibusiness.tsx +++ b/src/components/Msibusiness.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MsibusinessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MsibusinessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Msibusiness = React.forwardRef(function Msibusiness({color = 'currentColor', size = 24, title = "msibusiness", ...others}, ref) { - const Msibusiness = React.forwardRef(function Msibusiness({color = 'currentColor', size = 24, title = "msibusiness", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Msibusiness - \ No newline at end of file +export default Msibusiness; diff --git a/src/components/Mta.tsx b/src/components/Mta.tsx index 9ee26fff6..a4c7bfff8 100644 --- a/src/components/Mta.tsx +++ b/src/components/Mta.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MtaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MtaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mta = React.forwardRef(function Mta({color = 'currentColor', size = 24, title = "mta", ...others}, ref) { - const Mta = React.forwardRef(function Mta({color = 'currentColor', size = 24, title = "mta", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mta - \ No newline at end of file +export default Mta; diff --git a/src/components/Mtr.tsx b/src/components/Mtr.tsx index 0d2e94631..d60566440 100644 --- a/src/components/Mtr.tsx +++ b/src/components/Mtr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MtrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MtrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mtr = React.forwardRef(function Mtr({color = 'currentColor', size = 24, title = "mtr", ...others}, ref) { - const Mtr = React.forwardRef(function Mtr({color = 'currentColor', size = 24, title = "mtr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mtr - \ No newline at end of file +export default Mtr; diff --git a/src/components/Mui.tsx b/src/components/Mui.tsx index 43a834871..e60a79bbc 100644 --- a/src/components/Mui.tsx +++ b/src/components/Mui.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MuiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mui = React.forwardRef(function Mui({color = 'currentColor', size = 24, title = "mui", ...others}, ref) { - const Mui = React.forwardRef(function Mui({color = 'currentColor', size = 24, title = "mui", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mui - \ No newline at end of file +export default Mui; diff --git a/src/components/Mulesoft.tsx b/src/components/Mulesoft.tsx index 8616b44b7..1c3a2bdaf 100644 --- a/src/components/Mulesoft.tsx +++ b/src/components/Mulesoft.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MulesoftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MulesoftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mulesoft = React.forwardRef(function Mulesoft({color = 'currentColor', size = 24, title = "mulesoft", ...others}, ref) { - const Mulesoft = React.forwardRef(function Mulesoft({color = 'currentColor', size = 24, title = "mulesoft", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mulesoft - \ No newline at end of file +export default Mulesoft; diff --git a/src/components/Muller.tsx b/src/components/Muller.tsx index bbed951c2..04e678703 100644 --- a/src/components/Muller.tsx +++ b/src/components/Muller.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MullerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MullerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Muller = React.forwardRef(function Muller({color = 'currentColor', size = 24, title = "muller", ...others}, ref) { - const Muller = React.forwardRef(function Muller({color = 'currentColor', size = 24, title = "muller", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Muller - \ No newline at end of file +export default Muller; diff --git a/src/components/Mumble.tsx b/src/components/Mumble.tsx index 7658f687b..c7d03002f 100644 --- a/src/components/Mumble.tsx +++ b/src/components/Mumble.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MumbleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MumbleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mumble = React.forwardRef(function Mumble({color = 'currentColor', size = 24, title = "mumble", ...others}, ref) { - const Mumble = React.forwardRef(function Mumble({color = 'currentColor', size = 24, title = "mumble", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mumble - \ No newline at end of file +export default Mumble; diff --git a/src/components/Musescore.tsx b/src/components/Musescore.tsx index 1e7cbcca1..566e6e10b 100644 --- a/src/components/Musescore.tsx +++ b/src/components/Musescore.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MusescoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MusescoreProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Musescore = React.forwardRef(function Musescore({color = 'currentColor', size = 24, title = "musescore", ...others}, ref) { - const Musescore = React.forwardRef(function Musescore({color = 'currentColor', size = 24, title = "musescore", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Musescore - \ No newline at end of file +export default Musescore; diff --git a/src/components/Musicbrainz.tsx b/src/components/Musicbrainz.tsx index 581225d89..9afb8dec6 100644 --- a/src/components/Musicbrainz.tsx +++ b/src/components/Musicbrainz.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MusicbrainzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MusicbrainzProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Musicbrainz = React.forwardRef(function Musicbrainz({color = 'currentColor', size = 24, title = "musicbrainz", ...others}, ref) { - const Musicbrainz = React.forwardRef(function Musicbrainz({color = 'currentColor', size = 24, title = "musicbrainz", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Musicbrainz - \ No newline at end of file +export default Musicbrainz; diff --git a/src/components/Mxlinux.tsx b/src/components/Mxlinux.tsx index 6eea75486..972e9d3d6 100644 --- a/src/components/Mxlinux.tsx +++ b/src/components/Mxlinux.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MxlinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MxlinuxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mxlinux = React.forwardRef(function Mxlinux({color = 'currentColor', size = 24, title = "mxlinux", ...others}, ref) { - const Mxlinux = React.forwardRef(function Mxlinux({color = 'currentColor', size = 24, title = "mxlinux", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mxlinux - \ No newline at end of file +export default Mxlinux; diff --git a/src/components/Myanimelist.tsx b/src/components/Myanimelist.tsx index eade67913..18fe97ee4 100644 --- a/src/components/Myanimelist.tsx +++ b/src/components/Myanimelist.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MyanimelistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MyanimelistProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Myanimelist = React.forwardRef(function Myanimelist({color = 'currentColor', size = 24, title = "myanimelist", ...others}, ref) { - const Myanimelist = React.forwardRef(function Myanimelist({color = 'currentColor', size = 24, title = "myanimelist", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Myanimelist - \ No newline at end of file +export default Myanimelist; diff --git a/src/components/Myob.tsx b/src/components/Myob.tsx index 678d1612e..492e0c380 100644 --- a/src/components/Myob.tsx +++ b/src/components/Myob.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MyobProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MyobProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Myob = React.forwardRef(function Myob({color = 'currentColor', size = 24, title = "myob", ...others}, ref) { - const Myob = React.forwardRef(function Myob({color = 'currentColor', size = 24, title = "myob", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Myob - \ No newline at end of file +export default Myob; diff --git a/src/components/Myspace.tsx b/src/components/Myspace.tsx index d64444699..358b42da0 100644 --- a/src/components/Myspace.tsx +++ b/src/components/Myspace.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MyspaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MyspaceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Myspace = React.forwardRef(function Myspace({color = 'currentColor', size = 24, title = "myspace", ...others}, ref) { - const Myspace = React.forwardRef(function Myspace({color = 'currentColor', size = 24, title = "myspace", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Myspace - \ No newline at end of file +export default Myspace; diff --git a/src/components/Mysql.tsx b/src/components/Mysql.tsx index 55dd15ee4..01812b540 100644 --- a/src/components/Mysql.tsx +++ b/src/components/Mysql.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type MysqlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type MysqlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Mysql = React.forwardRef(function Mysql({color = 'currentColor', size = 24, title = "mysql", ...others}, ref) { - const Mysql = React.forwardRef(function Mysql({color = 'currentColor', size = 24, title = "mysql", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Mysql - \ No newline at end of file +export default Mysql; diff --git a/src/components/NTwentySix.tsx b/src/components/NTwentySix.tsx index eaa31661c..9eeeaf245 100644 --- a/src/components/NTwentySix.tsx +++ b/src/components/NTwentySix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NTwentySixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NTwentySixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const NTwentySix = React.forwardRef(function NTwentySix({color = 'currentColor', size = 24, title = "n26", ...others}, ref) { - const NTwentySix = React.forwardRef(function NTwentySix({color = 'currentColor', size = 24, title = "n26", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default NTwentySix - \ No newline at end of file +export default NTwentySix; diff --git a/src/components/Namebase.tsx b/src/components/Namebase.tsx index 12f3e5687..6f7ed80a9 100644 --- a/src/components/Namebase.tsx +++ b/src/components/Namebase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NamebaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NamebaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Namebase = React.forwardRef(function Namebase({color = 'currentColor', size = 24, title = "namebase", ...others}, ref) { - const Namebase = React.forwardRef(function Namebase({color = 'currentColor', size = 24, title = "namebase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Namebase - \ No newline at end of file +export default Namebase; diff --git a/src/components/Namecheap.tsx b/src/components/Namecheap.tsx index 5b9d798af..7308dc03c 100644 --- a/src/components/Namecheap.tsx +++ b/src/components/Namecheap.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NamecheapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NamecheapProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Namecheap = React.forwardRef(function Namecheap({color = 'currentColor', size = 24, title = "namecheap", ...others}, ref) { - const Namecheap = React.forwardRef(function Namecheap({color = 'currentColor', size = 24, title = "namecheap", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Namecheap - \ No newline at end of file +export default Namecheap; diff --git a/src/components/Nano.tsx b/src/components/Nano.tsx index 8dea236a9..26f7a13f1 100644 --- a/src/components/Nano.tsx +++ b/src/components/Nano.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NanoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NanoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nano = React.forwardRef(function Nano({color = 'currentColor', size = 24, title = "nano", ...others}, ref) { - const Nano = React.forwardRef(function Nano({color = 'currentColor', size = 24, title = "nano", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nano - \ No newline at end of file +export default Nano; diff --git a/src/components/Nasa.tsx b/src/components/Nasa.tsx index a725b4eb8..e3e8b8025 100644 --- a/src/components/Nasa.tsx +++ b/src/components/Nasa.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NasaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NasaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nasa = React.forwardRef(function Nasa({color = 'currentColor', size = 24, title = "nasa", ...others}, ref) { - const Nasa = React.forwardRef(function Nasa({color = 'currentColor', size = 24, title = "nasa", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nasa - \ No newline at end of file +export default Nasa; diff --git a/src/components/Nationalgrid.tsx b/src/components/Nationalgrid.tsx index 2250e88cd..e35ba7cfb 100644 --- a/src/components/Nationalgrid.tsx +++ b/src/components/Nationalgrid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NationalgridProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NationalgridProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nationalgrid = React.forwardRef(function Nationalgrid({color = 'currentColor', size = 24, title = "nationalgrid", ...others}, ref) { - const Nationalgrid = React.forwardRef(function Nationalgrid({color = 'currentColor', size = 24, title = "nationalgrid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nationalgrid - \ No newline at end of file +export default Nationalgrid; diff --git a/src/components/Nativescript.tsx b/src/components/Nativescript.tsx index fba33973a..c273cb7c7 100644 --- a/src/components/Nativescript.tsx +++ b/src/components/Nativescript.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NativescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NativescriptProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nativescript = React.forwardRef(function Nativescript({color = 'currentColor', size = 24, title = "nativescript", ...others}, ref) { - const Nativescript = React.forwardRef(function Nativescript({color = 'currentColor', size = 24, title = "nativescript", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nativescript - \ No newline at end of file +export default Nativescript; diff --git a/src/components/Naver.tsx b/src/components/Naver.tsx index 41af329bb..99b75dd40 100644 --- a/src/components/Naver.tsx +++ b/src/components/Naver.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NaverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NaverProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Naver = React.forwardRef(function Naver({color = 'currentColor', size = 24, title = "naver", ...others}, ref) { - const Naver = React.forwardRef(function Naver({color = 'currentColor', size = 24, title = "naver", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Naver - \ No newline at end of file +export default Naver; diff --git a/src/components/Nba.tsx b/src/components/Nba.tsx index 3075d30df..0beca2ac5 100644 --- a/src/components/Nba.tsx +++ b/src/components/Nba.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NbaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NbaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nba = React.forwardRef(function Nba({color = 'currentColor', size = 24, title = "nba", ...others}, ref) { - const Nba = React.forwardRef(function Nba({color = 'currentColor', size = 24, title = "nba", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nba - \ No newline at end of file +export default Nba; diff --git a/src/components/Nbb.tsx b/src/components/Nbb.tsx index fba7cefe1..d8cbc53d1 100644 --- a/src/components/Nbb.tsx +++ b/src/components/Nbb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NbbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NbbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nbb = React.forwardRef(function Nbb({color = 'currentColor', size = 24, title = "nbb", ...others}, ref) { - const Nbb = React.forwardRef(function Nbb({color = 'currentColor', size = 24, title = "nbb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nbb - \ No newline at end of file +export default Nbb; diff --git a/src/components/Ndr.tsx b/src/components/Ndr.tsx index 006112c96..f80af75c9 100644 --- a/src/components/Ndr.tsx +++ b/src/components/Ndr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NdrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NdrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ndr = React.forwardRef(function Ndr({color = 'currentColor', size = 24, title = "ndr", ...others}, ref) { - const Ndr = React.forwardRef(function Ndr({color = 'currentColor', size = 24, title = "ndr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ndr - \ No newline at end of file +export default Ndr; diff --git a/src/components/Nec.tsx b/src/components/Nec.tsx index be97fed92..e9b290e7a 100644 --- a/src/components/Nec.tsx +++ b/src/components/Nec.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NecProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NecProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nec = React.forwardRef(function Nec({color = 'currentColor', size = 24, title = "nec", ...others}, ref) { - const Nec = React.forwardRef(function Nec({color = 'currentColor', size = 24, title = "nec", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nec - \ No newline at end of file +export default Nec; diff --git a/src/components/NeoFourJ.tsx b/src/components/NeoFourJ.tsx index 86fa0d015..1bdd198fa 100644 --- a/src/components/NeoFourJ.tsx +++ b/src/components/NeoFourJ.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NeoFourJProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NeoFourJProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const NeoFourJ = React.forwardRef(function NeoFourJ({color = 'currentColor', size = 24, title = "neo4j", ...others}, ref) { - const NeoFourJ = React.forwardRef(function NeoFourJ({color = 'currentColor', size = 24, title = "neo4j", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default NeoFourJ - \ No newline at end of file +export default NeoFourJ; diff --git a/src/components/Neovim.tsx b/src/components/Neovim.tsx index e106197a8..62ab5f643 100644 --- a/src/components/Neovim.tsx +++ b/src/components/Neovim.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NeovimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NeovimProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Neovim = React.forwardRef(function Neovim({color = 'currentColor', size = 24, title = "neovim", ...others}, ref) { - const Neovim = React.forwardRef(function Neovim({color = 'currentColor', size = 24, title = "neovim", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Neovim - \ No newline at end of file +export default Neovim; diff --git a/src/components/Nestjs.tsx b/src/components/Nestjs.tsx index 7ddb519fd..f900e195c 100644 --- a/src/components/Nestjs.tsx +++ b/src/components/Nestjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NestjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NestjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nestjs = React.forwardRef(function Nestjs({color = 'currentColor', size = 24, title = "nestjs", ...others}, ref) { - const Nestjs = React.forwardRef(function Nestjs({color = 'currentColor', size = 24, title = "nestjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nestjs - \ No newline at end of file +export default Nestjs; diff --git a/src/components/Netapp.tsx b/src/components/Netapp.tsx index cbfda3cda..89d94b421 100644 --- a/src/components/Netapp.tsx +++ b/src/components/Netapp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NetappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NetappProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Netapp = React.forwardRef(function Netapp({color = 'currentColor', size = 24, title = "netapp", ...others}, ref) { - const Netapp = React.forwardRef(function Netapp({color = 'currentColor', size = 24, title = "netapp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Netapp - \ No newline at end of file +export default Netapp; diff --git a/src/components/Netbsd.tsx b/src/components/Netbsd.tsx index 787a17424..a7742e114 100644 --- a/src/components/Netbsd.tsx +++ b/src/components/Netbsd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NetbsdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NetbsdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Netbsd = React.forwardRef(function Netbsd({color = 'currentColor', size = 24, title = "netbsd", ...others}, ref) { - const Netbsd = React.forwardRef(function Netbsd({color = 'currentColor', size = 24, title = "netbsd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Netbsd - \ No newline at end of file +export default Netbsd; diff --git a/src/components/Netflix.tsx b/src/components/Netflix.tsx index 301803065..138549968 100644 --- a/src/components/Netflix.tsx +++ b/src/components/Netflix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NetflixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NetflixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Netflix = React.forwardRef(function Netflix({color = 'currentColor', size = 24, title = "netflix", ...others}, ref) { - const Netflix = React.forwardRef(function Netflix({color = 'currentColor', size = 24, title = "netflix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Netflix - \ No newline at end of file +export default Netflix; diff --git a/src/components/Netlify.tsx b/src/components/Netlify.tsx index 672b13632..87e1afc4b 100644 --- a/src/components/Netlify.tsx +++ b/src/components/Netlify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NetlifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NetlifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Netlify = React.forwardRef(function Netlify({color = 'currentColor', size = 24, title = "netlify", ...others}, ref) { - const Netlify = React.forwardRef(function Netlify({color = 'currentColor', size = 24, title = "netlify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Netlify - \ No newline at end of file +export default Netlify; diff --git a/src/components/Nette.tsx b/src/components/Nette.tsx index 6305fa3cf..e4c8353ba 100644 --- a/src/components/Nette.tsx +++ b/src/components/Nette.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NetteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NetteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nette = React.forwardRef(function Nette({color = 'currentColor', size = 24, title = "nette", ...others}, ref) { - const Nette = React.forwardRef(function Nette({color = 'currentColor', size = 24, title = "nette", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nette - \ No newline at end of file +export default Nette; diff --git a/src/components/Netto.tsx b/src/components/Netto.tsx index c8a91a7a4..faa971af3 100644 --- a/src/components/Netto.tsx +++ b/src/components/Netto.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NettoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NettoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Netto = React.forwardRef(function Netto({color = 'currentColor', size = 24, title = "netto", ...others}, ref) { - const Netto = React.forwardRef(function Netto({color = 'currentColor', size = 24, title = "netto", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Netto - \ No newline at end of file +export default Netto; diff --git a/src/components/Neutralinojs.tsx b/src/components/Neutralinojs.tsx new file mode 100644 index 000000000..4ec217285 --- /dev/null +++ b/src/components/Neutralinojs.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type NeutralinojsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Neutralinojs = React.forwardRef(function Neutralinojs({color = 'currentColor', size = 24, title = "neutralinojs", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Neutralinojs; diff --git a/src/components/Newbalance.tsx b/src/components/Newbalance.tsx index 83caeff2d..575c602b6 100644 --- a/src/components/Newbalance.tsx +++ b/src/components/Newbalance.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NewbalanceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NewbalanceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Newbalance = React.forwardRef(function Newbalance({color = 'currentColor', size = 24, title = "newbalance", ...others}, ref) { - const Newbalance = React.forwardRef(function Newbalance({color = 'currentColor', size = 24, title = "newbalance", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Newbalance - \ No newline at end of file +export default Newbalance; diff --git a/src/components/Newjapanprowrestling.tsx b/src/components/Newjapanprowrestling.tsx index b81bf08a1..a1fb95000 100644 --- a/src/components/Newjapanprowrestling.tsx +++ b/src/components/Newjapanprowrestling.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NewjapanprowrestlingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NewjapanprowrestlingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Newjapanprowrestling = React.forwardRef(function Newjapanprowrestling({color = 'currentColor', size = 24, title = "newjapanprowrestling", ...others}, ref) { - const Newjapanprowrestling = React.forwardRef(function Newjapanprowrestling({color = 'currentColor', size = 24, title = "newjapanprowrestling", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Newjapanprowrestling - \ No newline at end of file +export default Newjapanprowrestling; diff --git a/src/components/Newrelic.tsx b/src/components/Newrelic.tsx index e3cf7118f..176f2fb96 100644 --- a/src/components/Newrelic.tsx +++ b/src/components/Newrelic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NewrelicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NewrelicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Newrelic = React.forwardRef(function Newrelic({color = 'currentColor', size = 24, title = "newrelic", ...others}, ref) { - const Newrelic = React.forwardRef(function Newrelic({color = 'currentColor', size = 24, title = "newrelic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Newrelic - \ No newline at end of file +export default Newrelic; diff --git a/src/components/Newyorktimes.tsx b/src/components/Newyorktimes.tsx index db6c19fff..cbd74e8cc 100644 --- a/src/components/Newyorktimes.tsx +++ b/src/components/Newyorktimes.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NewyorktimesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NewyorktimesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Newyorktimes = React.forwardRef(function Newyorktimes({color = 'currentColor', size = 24, title = "newyorktimes", ...others}, ref) { - const Newyorktimes = React.forwardRef(function Newyorktimes({color = 'currentColor', size = 24, title = "newyorktimes", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Newyorktimes - \ No newline at end of file +export default Newyorktimes; diff --git a/src/components/Nextbilliondotai.tsx b/src/components/Nextbilliondotai.tsx index 94a446dd8..fb0ed3f96 100644 --- a/src/components/Nextbilliondotai.tsx +++ b/src/components/Nextbilliondotai.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NextbilliondotaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NextbilliondotaiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nextbilliondotai = React.forwardRef(function Nextbilliondotai({color = 'currentColor', size = 24, title = "nextbilliondotai", ...others}, ref) { - const Nextbilliondotai = React.forwardRef(function Nextbilliondotai({color = 'currentColor', size = 24, title = "nextbilliondotai", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nextbilliondotai - \ No newline at end of file +export default Nextbilliondotai; diff --git a/src/components/Nextcloud.tsx b/src/components/Nextcloud.tsx index 9b3eb500b..be4bf61f1 100644 --- a/src/components/Nextcloud.tsx +++ b/src/components/Nextcloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NextcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NextcloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nextcloud = React.forwardRef(function Nextcloud({color = 'currentColor', size = 24, title = "nextcloud", ...others}, ref) { - const Nextcloud = React.forwardRef(function Nextcloud({color = 'currentColor', size = 24, title = "nextcloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nextcloud - \ No newline at end of file +export default Nextcloud; diff --git a/src/components/Nextdoor.tsx b/src/components/Nextdoor.tsx index 36e3c5603..336edb3a0 100644 --- a/src/components/Nextdoor.tsx +++ b/src/components/Nextdoor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NextdoorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NextdoorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nextdoor = React.forwardRef(function Nextdoor({color = 'currentColor', size = 24, title = "nextdoor", ...others}, ref) { - const Nextdoor = React.forwardRef(function Nextdoor({color = 'currentColor', size = 24, title = "nextdoor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nextdoor - \ No newline at end of file +export default Nextdoor; diff --git a/src/components/Nextdotjs.tsx b/src/components/Nextdotjs.tsx index e2846c054..1f9ecf3fe 100644 --- a/src/components/Nextdotjs.tsx +++ b/src/components/Nextdotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NextdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NextdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nextdotjs = React.forwardRef(function Nextdotjs({color = 'currentColor', size = 24, title = "nextdotjs", ...others}, ref) { - const Nextdotjs = React.forwardRef(function Nextdotjs({color = 'currentColor', size = 24, title = "nextdotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nextdotjs - \ No newline at end of file +export default Nextdotjs; diff --git a/src/components/Nfc.tsx b/src/components/Nfc.tsx index 43b9aab3a..a0b47e5df 100644 --- a/src/components/Nfc.tsx +++ b/src/components/Nfc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NfcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NfcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nfc = React.forwardRef(function Nfc({color = 'currentColor', size = 24, title = "nfc", ...others}, ref) { - const Nfc = React.forwardRef(function Nfc({color = 'currentColor', size = 24, title = "nfc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nfc - \ No newline at end of file +export default Nfc; diff --git a/src/components/Nginx.tsx b/src/components/Nginx.tsx index cbbca82a2..af4f7dec4 100644 --- a/src/components/Nginx.tsx +++ b/src/components/Nginx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NginxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NginxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nginx = React.forwardRef(function Nginx({color = 'currentColor', size = 24, title = "nginx", ...others}, ref) { - const Nginx = React.forwardRef(function Nginx({color = 'currentColor', size = 24, title = "nginx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nginx - \ No newline at end of file +export default Nginx; diff --git a/src/components/Ngrok.tsx b/src/components/Ngrok.tsx index 8ccf96449..b841b29ce 100644 --- a/src/components/Ngrok.tsx +++ b/src/components/Ngrok.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NgrokProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NgrokProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ngrok = React.forwardRef(function Ngrok({color = 'currentColor', size = 24, title = "ngrok", ...others}, ref) { - const Ngrok = React.forwardRef(function Ngrok({color = 'currentColor', size = 24, title = "ngrok", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ngrok - \ No newline at end of file +export default Ngrok; diff --git a/src/components/Niconico.tsx b/src/components/Niconico.tsx index 8959ef3d1..117da38bd 100644 --- a/src/components/Niconico.tsx +++ b/src/components/Niconico.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NiconicoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NiconicoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Niconico = React.forwardRef(function Niconico({color = 'currentColor', size = 24, title = "niconico", ...others}, ref) { - const Niconico = React.forwardRef(function Niconico({color = 'currentColor', size = 24, title = "niconico", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Niconico - \ No newline at end of file +export default Niconico; diff --git a/src/components/Nike.tsx b/src/components/Nike.tsx index 63c385222..625868303 100644 --- a/src/components/Nike.tsx +++ b/src/components/Nike.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NikeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NikeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nike = React.forwardRef(function Nike({color = 'currentColor', size = 24, title = "nike", ...others}, ref) { - const Nike = React.forwardRef(function Nike({color = 'currentColor', size = 24, title = "nike", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nike - \ No newline at end of file +export default Nike; diff --git a/src/components/Nim.tsx b/src/components/Nim.tsx index bb8249bb0..f55865177 100644 --- a/src/components/Nim.tsx +++ b/src/components/Nim.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NimProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nim = React.forwardRef(function Nim({color = 'currentColor', size = 24, title = "nim", ...others}, ref) { - const Nim = React.forwardRef(function Nim({color = 'currentColor', size = 24, title = "nim", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nim - \ No newline at end of file +export default Nim; diff --git a/src/components/Nintendo.tsx b/src/components/Nintendo.tsx index 64749f12f..01d271ca0 100644 --- a/src/components/Nintendo.tsx +++ b/src/components/Nintendo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NintendoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NintendoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nintendo = React.forwardRef(function Nintendo({color = 'currentColor', size = 24, title = "nintendo", ...others}, ref) { - const Nintendo = React.forwardRef(function Nintendo({color = 'currentColor', size = 24, title = "nintendo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nintendo - \ No newline at end of file +export default Nintendo; diff --git a/src/components/NintendoThreeDs.tsx b/src/components/NintendoThreeDs.tsx index 75c7f64c5..03c13aec7 100644 --- a/src/components/NintendoThreeDs.tsx +++ b/src/components/NintendoThreeDs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NintendoThreeDsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NintendoThreeDsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const NintendoThreeDs = React.forwardRef(function NintendoThreeDs({color = 'currentColor', size = 24, title = "nintendo3ds", ...others}, ref) { - const NintendoThreeDs = React.forwardRef(function NintendoThreeDs({color = 'currentColor', size = 24, title = "nintendo3ds", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default NintendoThreeDs - \ No newline at end of file +export default NintendoThreeDs; diff --git a/src/components/Nintendogamecube.tsx b/src/components/Nintendogamecube.tsx index 89b27266b..158079870 100644 --- a/src/components/Nintendogamecube.tsx +++ b/src/components/Nintendogamecube.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NintendogamecubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NintendogamecubeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nintendogamecube = React.forwardRef(function Nintendogamecube({color = 'currentColor', size = 24, title = "nintendogamecube", ...others}, ref) { - const Nintendogamecube = React.forwardRef(function Nintendogamecube({color = 'currentColor', size = 24, title = "nintendogamecube", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nintendogamecube - \ No newline at end of file +export default Nintendogamecube; diff --git a/src/components/Nintendonetwork.tsx b/src/components/Nintendonetwork.tsx index 4446732c1..0c7e704d8 100644 --- a/src/components/Nintendonetwork.tsx +++ b/src/components/Nintendonetwork.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NintendonetworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NintendonetworkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nintendonetwork = React.forwardRef(function Nintendonetwork({color = 'currentColor', size = 24, title = "nintendonetwork", ...others}, ref) { - const Nintendonetwork = React.forwardRef(function Nintendonetwork({color = 'currentColor', size = 24, title = "nintendonetwork", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nintendonetwork - \ No newline at end of file +export default Nintendonetwork; diff --git a/src/components/Nintendoswitch.tsx b/src/components/Nintendoswitch.tsx index 0996b2b62..82eb21e83 100644 --- a/src/components/Nintendoswitch.tsx +++ b/src/components/Nintendoswitch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NintendoswitchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NintendoswitchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nintendoswitch = React.forwardRef(function Nintendoswitch({color = 'currentColor', size = 24, title = "nintendoswitch", ...others}, ref) { - const Nintendoswitch = React.forwardRef(function Nintendoswitch({color = 'currentColor', size = 24, title = "nintendoswitch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nintendoswitch - \ No newline at end of file +export default Nintendoswitch; diff --git a/src/components/Nissan.tsx b/src/components/Nissan.tsx index 27327c8ae..adf444958 100644 --- a/src/components/Nissan.tsx +++ b/src/components/Nissan.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NissanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NissanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nissan = React.forwardRef(function Nissan({color = 'currentColor', size = 24, title = "nissan", ...others}, ref) { - const Nissan = React.forwardRef(function Nissan({color = 'currentColor', size = 24, title = "nissan", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nissan - \ No newline at end of file +export default Nissan; diff --git a/src/components/Nixos.tsx b/src/components/Nixos.tsx index 1350466a6..2e4c2414f 100644 --- a/src/components/Nixos.tsx +++ b/src/components/Nixos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NixosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NixosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nixos = React.forwardRef(function Nixos({color = 'currentColor', size = 24, title = "nixos", ...others}, ref) { - const Nixos = React.forwardRef(function Nixos({color = 'currentColor', size = 24, title = "nixos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nixos - \ No newline at end of file +export default Nixos; diff --git a/src/components/Nodedotjs.tsx b/src/components/Nodedotjs.tsx index 564b4fa7c..43fe4e0d5 100644 --- a/src/components/Nodedotjs.tsx +++ b/src/components/Nodedotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NodedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NodedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nodedotjs = React.forwardRef(function Nodedotjs({color = 'currentColor', size = 24, title = "nodedotjs", ...others}, ref) { - const Nodedotjs = React.forwardRef(function Nodedotjs({color = 'currentColor', size = 24, title = "nodedotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nodedotjs - \ No newline at end of file +export default Nodedotjs; diff --git a/src/components/Nodemon.tsx b/src/components/Nodemon.tsx index 93c0b39aa..4029a95b5 100644 --- a/src/components/Nodemon.tsx +++ b/src/components/Nodemon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NodemonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NodemonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nodemon = React.forwardRef(function Nodemon({color = 'currentColor', size = 24, title = "nodemon", ...others}, ref) { - const Nodemon = React.forwardRef(function Nodemon({color = 'currentColor', size = 24, title = "nodemon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nodemon - \ No newline at end of file +export default Nodemon; diff --git a/src/components/Nodered.tsx b/src/components/Nodered.tsx index f3a71e244..29a3bd483 100644 --- a/src/components/Nodered.tsx +++ b/src/components/Nodered.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NoderedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NoderedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nodered = React.forwardRef(function Nodered({color = 'currentColor', size = 24, title = "nodered", ...others}, ref) { - const Nodered = React.forwardRef(function Nodered({color = 'currentColor', size = 24, title = "nodered", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nodered - \ No newline at end of file +export default Nodered; diff --git a/src/components/Nokia.tsx b/src/components/Nokia.tsx index acf0f96a2..5476c49d7 100644 --- a/src/components/Nokia.tsx +++ b/src/components/Nokia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NokiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NokiaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nokia = React.forwardRef(function Nokia({color = 'currentColor', size = 24, title = "nokia", ...others}, ref) { - const Nokia = React.forwardRef(function Nokia({color = 'currentColor', size = 24, title = "nokia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nokia - \ No newline at end of file +export default Nokia; diff --git a/src/components/Norco.tsx b/src/components/Norco.tsx index 89ecd6c4d..7e49088a6 100644 --- a/src/components/Norco.tsx +++ b/src/components/Norco.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NorcoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NorcoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Norco = React.forwardRef(function Norco({color = 'currentColor', size = 24, title = "norco", ...others}, ref) { - const Norco = React.forwardRef(function Norco({color = 'currentColor', size = 24, title = "norco", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Norco - \ No newline at end of file +export default Norco; diff --git a/src/components/Nordvpn.tsx b/src/components/Nordvpn.tsx index e16aa45d9..e556e4405 100644 --- a/src/components/Nordvpn.tsx +++ b/src/components/Nordvpn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NordvpnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NordvpnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nordvpn = React.forwardRef(function Nordvpn({color = 'currentColor', size = 24, title = "nordvpn", ...others}, ref) { - const Nordvpn = React.forwardRef(function Nordvpn({color = 'currentColor', size = 24, title = "nordvpn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nordvpn - \ No newline at end of file +export default Nordvpn; diff --git a/src/components/Norwegian.tsx b/src/components/Norwegian.tsx index 0f443a362..41b5d5463 100644 --- a/src/components/Norwegian.tsx +++ b/src/components/Norwegian.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NorwegianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NorwegianProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Norwegian = React.forwardRef(function Norwegian({color = 'currentColor', size = 24, title = "norwegian", ...others}, ref) { - const Norwegian = React.forwardRef(function Norwegian({color = 'currentColor', size = 24, title = "norwegian", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Norwegian - \ No newline at end of file +export default Norwegian; diff --git a/src/components/Notepadplusplus.tsx b/src/components/Notepadplusplus.tsx index 54fe7e35a..a1bc972a9 100644 --- a/src/components/Notepadplusplus.tsx +++ b/src/components/Notepadplusplus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NotepadplusplusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NotepadplusplusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Notepadplusplus = React.forwardRef(function Notepadplusplus({color = 'currentColor', size = 24, title = "notepadplusplus", ...others}, ref) { - const Notepadplusplus = React.forwardRef(function Notepadplusplus({color = 'currentColor', size = 24, title = "notepadplusplus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Notepadplusplus - \ No newline at end of file +export default Notepadplusplus; diff --git a/src/components/Notion.tsx b/src/components/Notion.tsx index b2d5471d3..808413712 100644 --- a/src/components/Notion.tsx +++ b/src/components/Notion.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NotionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NotionProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Notion = React.forwardRef(function Notion({color = 'currentColor', size = 24, title = "notion", ...others}, ref) { - const Notion = React.forwardRef(function Notion({color = 'currentColor', size = 24, title = "notion", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Notion - \ No newline at end of file +export default Notion; diff --git a/src/components/Notist.tsx b/src/components/Notist.tsx index f34c82078..4fbc00a54 100644 --- a/src/components/Notist.tsx +++ b/src/components/Notist.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NotistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NotistProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Notist = React.forwardRef(function Notist({color = 'currentColor', size = 24, title = "notist", ...others}, ref) { - const Notist = React.forwardRef(function Notist({color = 'currentColor', size = 24, title = "notist", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Notist - \ No newline at end of file +export default Notist; diff --git a/src/components/Nounproject.tsx b/src/components/Nounproject.tsx index 433e019c9..03bef1427 100644 --- a/src/components/Nounproject.tsx +++ b/src/components/Nounproject.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NounprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NounprojectProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nounproject = React.forwardRef(function Nounproject({color = 'currentColor', size = 24, title = "nounproject", ...others}, ref) { - const Nounproject = React.forwardRef(function Nounproject({color = 'currentColor', size = 24, title = "nounproject", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nounproject - \ No newline at end of file +export default Nounproject; diff --git a/src/components/Now.tsx b/src/components/Now.tsx index c72db3cfe..69e829087 100644 --- a/src/components/Now.tsx +++ b/src/components/Now.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Now = React.forwardRef(function Now({color = 'currentColor', size = 24, title = "now", ...others}, ref) { - const Now = React.forwardRef(function Now({color = 'currentColor', size = 24, title = "now", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Now - \ No newline at end of file +export default Now; diff --git a/src/components/Npm.tsx b/src/components/Npm.tsx index 7f02d3c16..e830cf36b 100644 --- a/src/components/Npm.tsx +++ b/src/components/Npm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NpmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NpmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Npm = React.forwardRef(function Npm({color = 'currentColor', size = 24, title = "npm", ...others}, ref) { - const Npm = React.forwardRef(function Npm({color = 'currentColor', size = 24, title = "npm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Npm - \ No newline at end of file +export default Npm; diff --git a/src/components/Nrwl.tsx b/src/components/Nrwl.tsx index 86ad946ec..145a81501 100644 --- a/src/components/Nrwl.tsx +++ b/src/components/Nrwl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NrwlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NrwlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nrwl = React.forwardRef(function Nrwl({color = 'currentColor', size = 24, title = "nrwl", ...others}, ref) { - const Nrwl = React.forwardRef(function Nrwl({color = 'currentColor', size = 24, title = "nrwl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nrwl - \ No newline at end of file +export default Nrwl; diff --git a/src/components/Nubank.tsx b/src/components/Nubank.tsx index 2e46366b2..578e2bb58 100644 --- a/src/components/Nubank.tsx +++ b/src/components/Nubank.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NubankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NubankProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nubank = React.forwardRef(function Nubank({color = 'currentColor', size = 24, title = "nubank", ...others}, ref) { - const Nubank = React.forwardRef(function Nubank({color = 'currentColor', size = 24, title = "nubank", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nubank - \ No newline at end of file +export default Nubank; diff --git a/src/components/Nucleo.tsx b/src/components/Nucleo.tsx index 89616ef92..033263707 100644 --- a/src/components/Nucleo.tsx +++ b/src/components/Nucleo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NucleoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NucleoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nucleo = React.forwardRef(function Nucleo({color = 'currentColor', size = 24, title = "nucleo", ...others}, ref) { - const Nucleo = React.forwardRef(function Nucleo({color = 'currentColor', size = 24, title = "nucleo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nucleo - \ No newline at end of file +export default Nucleo; diff --git a/src/components/Nuget.tsx b/src/components/Nuget.tsx index b98f9bf61..0344b5f20 100644 --- a/src/components/Nuget.tsx +++ b/src/components/Nuget.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NugetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NugetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nuget = React.forwardRef(function Nuget({color = 'currentColor', size = 24, title = "nuget", ...others}, ref) { - const Nuget = React.forwardRef(function Nuget({color = 'currentColor', size = 24, title = "nuget", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nuget - \ No newline at end of file +export default Nuget; diff --git a/src/components/Nuke.tsx b/src/components/Nuke.tsx index a1e45b4b3..4180012b8 100644 --- a/src/components/Nuke.tsx +++ b/src/components/Nuke.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NukeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NukeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nuke = React.forwardRef(function Nuke({color = 'currentColor', size = 24, title = "nuke", ...others}, ref) { - const Nuke = React.forwardRef(function Nuke({color = 'currentColor', size = 24, title = "nuke", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nuke - \ No newline at end of file +export default Nuke; diff --git a/src/components/Numba.tsx b/src/components/Numba.tsx index 3215201f2..7953ecdaf 100644 --- a/src/components/Numba.tsx +++ b/src/components/Numba.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NumbaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NumbaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Numba = React.forwardRef(function Numba({color = 'currentColor', size = 24, title = "numba", ...others}, ref) { - const Numba = React.forwardRef(function Numba({color = 'currentColor', size = 24, title = "numba", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Numba - \ No newline at end of file +export default Numba; diff --git a/src/components/Numpy.tsx b/src/components/Numpy.tsx index 1c6ed9c00..9c8c8c71c 100644 --- a/src/components/Numpy.tsx +++ b/src/components/Numpy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NumpyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NumpyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Numpy = React.forwardRef(function Numpy({color = 'currentColor', size = 24, title = "numpy", ...others}, ref) { - const Numpy = React.forwardRef(function Numpy({color = 'currentColor', size = 24, title = "numpy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Numpy - \ No newline at end of file +export default Numpy; diff --git a/src/components/Nunjucks.tsx b/src/components/Nunjucks.tsx index 744867cec..e6c2eeb21 100644 --- a/src/components/Nunjucks.tsx +++ b/src/components/Nunjucks.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NunjucksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NunjucksProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nunjucks = React.forwardRef(function Nunjucks({color = 'currentColor', size = 24, title = "nunjucks", ...others}, ref) { - const Nunjucks = React.forwardRef(function Nunjucks({color = 'currentColor', size = 24, title = "nunjucks", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nunjucks - \ No newline at end of file +export default Nunjucks; diff --git a/src/components/Nutanix.tsx b/src/components/Nutanix.tsx index d710fd20b..06bba69cb 100644 --- a/src/components/Nutanix.tsx +++ b/src/components/Nutanix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NutanixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NutanixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nutanix = React.forwardRef(function Nutanix({color = 'currentColor', size = 24, title = "nutanix", ...others}, ref) { - const Nutanix = React.forwardRef(function Nutanix({color = 'currentColor', size = 24, title = "nutanix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nutanix - \ No newline at end of file +export default Nutanix; diff --git a/src/components/Nuxtdotjs.tsx b/src/components/Nuxtdotjs.tsx index ce0641478..a93461767 100644 --- a/src/components/Nuxtdotjs.tsx +++ b/src/components/Nuxtdotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NuxtdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NuxtdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nuxtdotjs = React.forwardRef(function Nuxtdotjs({color = 'currentColor', size = 24, title = "nuxtdotjs", ...others}, ref) { - const Nuxtdotjs = React.forwardRef(function Nuxtdotjs({color = 'currentColor', size = 24, title = "nuxtdotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nuxtdotjs - \ No newline at end of file +export default Nuxtdotjs; diff --git a/src/components/Nvidia.tsx b/src/components/Nvidia.tsx index 77c4ddccf..82fe10f99 100644 --- a/src/components/Nvidia.tsx +++ b/src/components/Nvidia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NvidiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NvidiaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nvidia = React.forwardRef(function Nvidia({color = 'currentColor', size = 24, title = "nvidia", ...others}, ref) { - const Nvidia = React.forwardRef(function Nvidia({color = 'currentColor', size = 24, title = "nvidia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nvidia - \ No newline at end of file +export default Nvidia; diff --git a/src/components/Nx.tsx b/src/components/Nx.tsx index f3d73e9ff..4b02c0d9a 100644 --- a/src/components/Nx.tsx +++ b/src/components/Nx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nx = React.forwardRef(function Nx({color = 'currentColor', size = 24, title = "nx", ...others}, ref) { - const Nx = React.forwardRef(function Nx({color = 'currentColor', size = 24, title = "nx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nx - \ No newline at end of file +export default Nx; diff --git a/src/components/Nzxt.tsx b/src/components/Nzxt.tsx index 3aee9867e..02cdbc3d5 100644 --- a/src/components/Nzxt.tsx +++ b/src/components/Nzxt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type NzxtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type NzxtProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Nzxt = React.forwardRef(function Nzxt({color = 'currentColor', size = 24, title = "nzxt", ...others}, ref) { - const Nzxt = React.forwardRef(function Nzxt({color = 'currentColor', size = 24, title = "nzxt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Nzxt - \ No newline at end of file +export default Nzxt; diff --git a/src/components/Observable.tsx b/src/components/Observable.tsx index c2660a945..d96829684 100644 --- a/src/components/Observable.tsx +++ b/src/components/Observable.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ObservableProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ObservableProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Observable = React.forwardRef(function Observable({color = 'currentColor', size = 24, title = "observable", ...others}, ref) { - const Observable = React.forwardRef(function Observable({color = 'currentColor', size = 24, title = "observable", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Observable - \ No newline at end of file +export default Observable; diff --git a/src/components/Obsidian.tsx b/src/components/Obsidian.tsx index 411bb9021..cb6011159 100644 --- a/src/components/Obsidian.tsx +++ b/src/components/Obsidian.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ObsidianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ObsidianProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Obsidian = React.forwardRef(function Obsidian({color = 'currentColor', size = 24, title = "obsidian", ...others}, ref) { - const Obsidian = React.forwardRef(function Obsidian({color = 'currentColor', size = 24, title = "obsidian", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Obsidian - \ No newline at end of file +export default Obsidian; diff --git a/src/components/Obsstudio.tsx b/src/components/Obsstudio.tsx index 905628dc4..c68130d48 100644 --- a/src/components/Obsstudio.tsx +++ b/src/components/Obsstudio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ObsstudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ObsstudioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Obsstudio = React.forwardRef(function Obsstudio({color = 'currentColor', size = 24, title = "obsstudio", ...others}, ref) { - const Obsstudio = React.forwardRef(function Obsstudio({color = 'currentColor', size = 24, title = "obsstudio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Obsstudio - \ No newline at end of file +export default Obsstudio; diff --git a/src/components/Ocaml.tsx b/src/components/Ocaml.tsx index c9084e8b0..51409d375 100644 --- a/src/components/Ocaml.tsx +++ b/src/components/Ocaml.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OcamlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OcamlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ocaml = React.forwardRef(function Ocaml({color = 'currentColor', size = 24, title = "ocaml", ...others}, ref) { - const Ocaml = React.forwardRef(function Ocaml({color = 'currentColor', size = 24, title = "ocaml", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ocaml - \ No newline at end of file +export default Ocaml; diff --git a/src/components/Octanerender.tsx b/src/components/Octanerender.tsx index 12892e114..68a106b67 100644 --- a/src/components/Octanerender.tsx +++ b/src/components/Octanerender.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OctanerenderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OctanerenderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Octanerender = React.forwardRef(function Octanerender({color = 'currentColor', size = 24, title = "octanerender", ...others}, ref) { - const Octanerender = React.forwardRef(function Octanerender({color = 'currentColor', size = 24, title = "octanerender", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Octanerender - \ No newline at end of file +export default Octanerender; diff --git a/src/components/Octave.tsx b/src/components/Octave.tsx index c4d6b0e38..505d9e3b1 100644 --- a/src/components/Octave.tsx +++ b/src/components/Octave.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OctaveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OctaveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Octave = React.forwardRef(function Octave({color = 'currentColor', size = 24, title = "octave", ...others}, ref) { - const Octave = React.forwardRef(function Octave({color = 'currentColor', size = 24, title = "octave", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Octave - \ No newline at end of file +export default Octave; diff --git a/src/components/Octoprint.tsx b/src/components/Octoprint.tsx index f19b8f920..66c8d2eef 100644 --- a/src/components/Octoprint.tsx +++ b/src/components/Octoprint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OctoprintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OctoprintProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Octoprint = React.forwardRef(function Octoprint({color = 'currentColor', size = 24, title = "octoprint", ...others}, ref) { - const Octoprint = React.forwardRef(function Octoprint({color = 'currentColor', size = 24, title = "octoprint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Octoprint - \ No newline at end of file +export default Octoprint; diff --git a/src/components/Octopusdeploy.tsx b/src/components/Octopusdeploy.tsx index c3763f039..a22b51312 100644 --- a/src/components/Octopusdeploy.tsx +++ b/src/components/Octopusdeploy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OctopusdeployProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OctopusdeployProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Octopusdeploy = React.forwardRef(function Octopusdeploy({color = 'currentColor', size = 24, title = "octopusdeploy", ...others}, ref) { - const Octopusdeploy = React.forwardRef(function Octopusdeploy({color = 'currentColor', size = 24, title = "octopusdeploy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Octopusdeploy - \ No newline at end of file +export default Octopusdeploy; diff --git a/src/components/Oculus.tsx b/src/components/Oculus.tsx index 34c2b3aa2..95dafa899 100644 --- a/src/components/Oculus.tsx +++ b/src/components/Oculus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OculusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OculusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Oculus = React.forwardRef(function Oculus({color = 'currentColor', size = 24, title = "oculus", ...others}, ref) { - const Oculus = React.forwardRef(function Oculus({color = 'currentColor', size = 24, title = "oculus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Oculus - \ No newline at end of file +export default Oculus; diff --git a/src/components/Odnoklassniki.tsx b/src/components/Odnoklassniki.tsx index f7b0e548c..4ab0a5e9f 100644 --- a/src/components/Odnoklassniki.tsx +++ b/src/components/Odnoklassniki.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OdnoklassnikiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OdnoklassnikiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Odnoklassniki = React.forwardRef(function Odnoklassniki({color = 'currentColor', size = 24, title = "odnoklassniki", ...others}, ref) { - const Odnoklassniki = React.forwardRef(function Odnoklassniki({color = 'currentColor', size = 24, title = "odnoklassniki", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Odnoklassniki - \ No newline at end of file +export default Odnoklassniki; diff --git a/src/components/Odysee.tsx b/src/components/Odysee.tsx index 20c49d2ff..0c6832219 100644 --- a/src/components/Odysee.tsx +++ b/src/components/Odysee.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OdyseeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OdyseeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Odysee = React.forwardRef(function Odysee({color = 'currentColor', size = 24, title = "odysee", ...others}, ref) { - const Odysee = React.forwardRef(function Odysee({color = 'currentColor', size = 24, title = "odysee", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Odysee - \ No newline at end of file +export default Odysee; diff --git a/src/components/Ohdear.tsx b/src/components/Ohdear.tsx index 5c0d13f43..c3f92ecd1 100644 --- a/src/components/Ohdear.tsx +++ b/src/components/Ohdear.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OhdearProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OhdearProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ohdear = React.forwardRef(function Ohdear({color = 'currentColor', size = 24, title = "ohdear", ...others}, ref) { - const Ohdear = React.forwardRef(function Ohdear({color = 'currentColor', size = 24, title = "ohdear", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ohdear - \ No newline at end of file +export default Ohdear; diff --git a/src/components/Okcupid.tsx b/src/components/Okcupid.tsx index ec0e04599..723b4a55d 100644 --- a/src/components/Okcupid.tsx +++ b/src/components/Okcupid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OkcupidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OkcupidProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Okcupid = React.forwardRef(function Okcupid({color = 'currentColor', size = 24, title = "okcupid", ...others}, ref) { - const Okcupid = React.forwardRef(function Okcupid({color = 'currentColor', size = 24, title = "okcupid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Okcupid - \ No newline at end of file +export default Okcupid; diff --git a/src/components/Okta.tsx b/src/components/Okta.tsx index 738f2ae45..5edaddf94 100644 --- a/src/components/Okta.tsx +++ b/src/components/Okta.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OktaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OktaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Okta = React.forwardRef(function Okta({color = 'currentColor', size = 24, title = "okta", ...others}, ref) { - const Okta = React.forwardRef(function Okta({color = 'currentColor', size = 24, title = "okta", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Okta - \ No newline at end of file +export default Okta; diff --git a/src/components/OnePassword.tsx b/src/components/OnePassword.tsx index cd0990652..238dfad89 100644 --- a/src/components/OnePassword.tsx +++ b/src/components/OnePassword.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OnePasswordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OnePasswordProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const OnePassword = React.forwardRef(function OnePassword({color = 'currentColor', size = 24, title = "1password", ...others}, ref) { - const OnePassword = React.forwardRef(function OnePassword({color = 'currentColor', size = 24, title = "1password", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default OnePassword - \ No newline at end of file +export default OnePassword; diff --git a/src/components/OneThousandOneTracklists.tsx b/src/components/OneThousandOneTracklists.tsx index 1e33086ee..a4f1ea294 100644 --- a/src/components/OneThousandOneTracklists.tsx +++ b/src/components/OneThousandOneTracklists.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OneThousandOneTracklistsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OneThousandOneTracklistsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const OneThousandOneTracklists = React.forwardRef(function OneThousandOneTracklists({color = 'currentColor', size = 24, title = "1001tracklists", ...others}, ref) { - const OneThousandOneTracklists = React.forwardRef(function OneThousandOneTracklists({color = 'currentColor', size = 24, title = "1001tracklists", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default OneThousandOneTracklists - \ No newline at end of file +export default OneThousandOneTracklists; diff --git a/src/components/Oneplus.tsx b/src/components/Oneplus.tsx index a0486760f..30b6718ba 100644 --- a/src/components/Oneplus.tsx +++ b/src/components/Oneplus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OneplusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OneplusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Oneplus = React.forwardRef(function Oneplus({color = 'currentColor', size = 24, title = "oneplus", ...others}, ref) { - const Oneplus = React.forwardRef(function Oneplus({color = 'currentColor', size = 24, title = "oneplus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Oneplus - \ No newline at end of file +export default Oneplus; diff --git a/src/components/Onlyfans.tsx b/src/components/Onlyfans.tsx index 8bb17dafc..1705938a0 100644 --- a/src/components/Onlyfans.tsx +++ b/src/components/Onlyfans.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OnlyfansProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OnlyfansProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Onlyfans = React.forwardRef(function Onlyfans({color = 'currentColor', size = 24, title = "onlyfans", ...others}, ref) { - const Onlyfans = React.forwardRef(function Onlyfans({color = 'currentColor', size = 24, title = "onlyfans", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Onlyfans - \ No newline at end of file +export default Onlyfans; diff --git a/src/components/Onlyoffice.tsx b/src/components/Onlyoffice.tsx index 783864910..bcc950b99 100644 --- a/src/components/Onlyoffice.tsx +++ b/src/components/Onlyoffice.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OnlyofficeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OnlyofficeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Onlyoffice = React.forwardRef(function Onlyoffice({color = 'currentColor', size = 24, title = "onlyoffice", ...others}, ref) { - const Onlyoffice = React.forwardRef(function Onlyoffice({color = 'currentColor', size = 24, title = "onlyoffice", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Onlyoffice - \ No newline at end of file +export default Onlyoffice; diff --git a/src/components/Onnx.tsx b/src/components/Onnx.tsx index 4f3b99fdb..f5770c359 100644 --- a/src/components/Onnx.tsx +++ b/src/components/Onnx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OnnxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OnnxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Onnx = React.forwardRef(function Onnx({color = 'currentColor', size = 24, title = "onnx", ...others}, ref) { - const Onnx = React.forwardRef(function Onnx({color = 'currentColor', size = 24, title = "onnx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Onnx - \ No newline at end of file +export default Onnx; diff --git a/src/components/Onstar.tsx b/src/components/Onstar.tsx index c68ab4822..e5c664195 100644 --- a/src/components/Onstar.tsx +++ b/src/components/Onstar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OnstarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OnstarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Onstar = React.forwardRef(function Onstar({color = 'currentColor', size = 24, title = "onstar", ...others}, ref) { - const Onstar = React.forwardRef(function Onstar({color = 'currentColor', size = 24, title = "onstar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Onstar - \ No newline at end of file +export default Onstar; diff --git a/src/components/Opel.tsx b/src/components/Opel.tsx index e2950b816..84b6faf4b 100644 --- a/src/components/Opel.tsx +++ b/src/components/Opel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opel = React.forwardRef(function Opel({color = 'currentColor', size = 24, title = "opel", ...others}, ref) { - const Opel = React.forwardRef(function Opel({color = 'currentColor', size = 24, title = "opel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opel - \ No newline at end of file +export default Opel; diff --git a/src/components/Openaccess.tsx b/src/components/Openaccess.tsx index 87a0629dd..da0f311dc 100644 --- a/src/components/Openaccess.tsx +++ b/src/components/Openaccess.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenaccessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenaccessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openaccess = React.forwardRef(function Openaccess({color = 'currentColor', size = 24, title = "openaccess", ...others}, ref) { - const Openaccess = React.forwardRef(function Openaccess({color = 'currentColor', size = 24, title = "openaccess", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openaccess - \ No newline at end of file +export default Openaccess; diff --git a/src/components/Openai.tsx b/src/components/Openai.tsx index 0605c4ab6..1e666dc19 100644 --- a/src/components/Openai.tsx +++ b/src/components/Openai.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenaiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openai = React.forwardRef(function Openai({color = 'currentColor', size = 24, title = "openai", ...others}, ref) { - const Openai = React.forwardRef(function Openai({color = 'currentColor', size = 24, title = "openai", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openai - \ No newline at end of file +export default Openai; diff --git a/src/components/Openaigym.tsx b/src/components/Openaigym.tsx index 2bfffd91e..bc5048995 100644 --- a/src/components/Openaigym.tsx +++ b/src/components/Openaigym.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenaigymProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenaigymProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openaigym = React.forwardRef(function Openaigym({color = 'currentColor', size = 24, title = "openaigym", ...others}, ref) { - const Openaigym = React.forwardRef(function Openaigym({color = 'currentColor', size = 24, title = "openaigym", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openaigym - \ No newline at end of file +export default Openaigym; diff --git a/src/components/Openapiinitiative.tsx b/src/components/Openapiinitiative.tsx index 2563b2595..3f7cc031c 100644 --- a/src/components/Openapiinitiative.tsx +++ b/src/components/Openapiinitiative.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenapiinitiativeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenapiinitiativeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openapiinitiative = React.forwardRef(function Openapiinitiative({color = 'currentColor', size = 24, title = "openapiinitiative", ...others}, ref) { - const Openapiinitiative = React.forwardRef(function Openapiinitiative({color = 'currentColor', size = 24, title = "openapiinitiative", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openapiinitiative - \ No newline at end of file +export default Openapiinitiative; diff --git a/src/components/Openbadges.tsx b/src/components/Openbadges.tsx index b87ed3df7..a5af79aaf 100644 --- a/src/components/Openbadges.tsx +++ b/src/components/Openbadges.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenbadgesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenbadgesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openbadges = React.forwardRef(function Openbadges({color = 'currentColor', size = 24, title = "openbadges", ...others}, ref) { - const Openbadges = React.forwardRef(function Openbadges({color = 'currentColor', size = 24, title = "openbadges", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openbadges - \ No newline at end of file +export default Openbadges; diff --git a/src/components/Openbsd.tsx b/src/components/Openbsd.tsx index 82a3a72fc..68b917806 100644 --- a/src/components/Openbsd.tsx +++ b/src/components/Openbsd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenbsdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenbsdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openbsd = React.forwardRef(function Openbsd({color = 'currentColor', size = 24, title = "openbsd", ...others}, ref) { - const Openbsd = React.forwardRef(function Openbsd({color = 'currentColor', size = 24, title = "openbsd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openbsd - \ No newline at end of file +export default Openbsd; diff --git a/src/components/Openbugbounty.tsx b/src/components/Openbugbounty.tsx index 1a006c036..45ef6b02c 100644 --- a/src/components/Openbugbounty.tsx +++ b/src/components/Openbugbounty.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenbugbountyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenbugbountyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openbugbounty = React.forwardRef(function Openbugbounty({color = 'currentColor', size = 24, title = "openbugbounty", ...others}, ref) { - const Openbugbounty = React.forwardRef(function Openbugbounty({color = 'currentColor', size = 24, title = "openbugbounty", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openbugbounty - \ No newline at end of file +export default Openbugbounty; diff --git a/src/components/Opencollective.tsx b/src/components/Opencollective.tsx index b938321c7..41da5677d 100644 --- a/src/components/Opencollective.tsx +++ b/src/components/Opencollective.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpencollectiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpencollectiveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opencollective = React.forwardRef(function Opencollective({color = 'currentColor', size = 24, title = "opencollective", ...others}, ref) { - const Opencollective = React.forwardRef(function Opencollective({color = 'currentColor', size = 24, title = "opencollective", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opencollective - \ No newline at end of file +export default Opencollective; diff --git a/src/components/Opencontainersinitiative.tsx b/src/components/Opencontainersinitiative.tsx index 999084783..2a064e36b 100644 --- a/src/components/Opencontainersinitiative.tsx +++ b/src/components/Opencontainersinitiative.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpencontainersinitiativeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpencontainersinitiativeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opencontainersinitiative = React.forwardRef(function Opencontainersinitiative({color = 'currentColor', size = 24, title = "opencontainersinitiative", ...others}, ref) { - const Opencontainersinitiative = React.forwardRef(function Opencontainersinitiative({color = 'currentColor', size = 24, title = "opencontainersinitiative", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opencontainersinitiative - \ No newline at end of file +export default Opencontainersinitiative; diff --git a/src/components/Opencv.tsx b/src/components/Opencv.tsx index d83f60ce9..c61ef235b 100644 --- a/src/components/Opencv.tsx +++ b/src/components/Opencv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpencvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpencvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opencv = React.forwardRef(function Opencv({color = 'currentColor', size = 24, title = "opencv", ...others}, ref) { - const Opencv = React.forwardRef(function Opencv({color = 'currentColor', size = 24, title = "opencv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opencv - \ No newline at end of file +export default Opencv; diff --git a/src/components/Openfaas.tsx b/src/components/Openfaas.tsx index 207dbac13..da899721d 100644 --- a/src/components/Openfaas.tsx +++ b/src/components/Openfaas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenfaasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenfaasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openfaas = React.forwardRef(function Openfaas({color = 'currentColor', size = 24, title = "openfaas", ...others}, ref) { - const Openfaas = React.forwardRef(function Openfaas({color = 'currentColor', size = 24, title = "openfaas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openfaas - \ No newline at end of file +export default Openfaas; diff --git a/src/components/Opengl.tsx b/src/components/Opengl.tsx index c3934c3d8..dcc7ae7ed 100644 --- a/src/components/Opengl.tsx +++ b/src/components/Opengl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenglProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenglProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opengl = React.forwardRef(function Opengl({color = 'currentColor', size = 24, title = "opengl", ...others}, ref) { - const Opengl = React.forwardRef(function Opengl({color = 'currentColor', size = 24, title = "opengl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opengl - \ No newline at end of file +export default Opengl; diff --git a/src/components/Openid.tsx b/src/components/Openid.tsx index 5adc57e86..e901924bd 100644 --- a/src/components/Openid.tsx +++ b/src/components/Openid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenidProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openid = React.forwardRef(function Openid({color = 'currentColor', size = 24, title = "openid", ...others}, ref) { - const Openid = React.forwardRef(function Openid({color = 'currentColor', size = 24, title = "openid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openid - \ No newline at end of file +export default Openid; diff --git a/src/components/Openjdk.tsx b/src/components/Openjdk.tsx index a1100960a..4c7841679 100644 --- a/src/components/Openjdk.tsx +++ b/src/components/Openjdk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenjdkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenjdkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openjdk = React.forwardRef(function Openjdk({color = 'currentColor', size = 24, title = "openjdk", ...others}, ref) { - const Openjdk = React.forwardRef(function Openjdk({color = 'currentColor', size = 24, title = "openjdk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openjdk - \ No newline at end of file +export default Openjdk; diff --git a/src/components/Openlayers.tsx b/src/components/Openlayers.tsx index b064fa84a..86e199091 100644 --- a/src/components/Openlayers.tsx +++ b/src/components/Openlayers.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenlayersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenlayersProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openlayers = React.forwardRef(function Openlayers({color = 'currentColor', size = 24, title = "openlayers", ...others}, ref) { - const Openlayers = React.forwardRef(function Openlayers({color = 'currentColor', size = 24, title = "openlayers", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openlayers - \ No newline at end of file +export default Openlayers; diff --git a/src/components/Openmined.tsx b/src/components/Openmined.tsx index 91738c4bf..dfa6be03b 100644 --- a/src/components/Openmined.tsx +++ b/src/components/Openmined.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenminedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenminedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openmined = React.forwardRef(function Openmined({color = 'currentColor', size = 24, title = "openmined", ...others}, ref) { - const Openmined = React.forwardRef(function Openmined({color = 'currentColor', size = 24, title = "openmined", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openmined - \ No newline at end of file +export default Openmined; diff --git a/src/components/Opennebula.tsx b/src/components/Opennebula.tsx index 62af88213..3f1888e8c 100644 --- a/src/components/Opennebula.tsx +++ b/src/components/Opennebula.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpennebulaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpennebulaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opennebula = React.forwardRef(function Opennebula({color = 'currentColor', size = 24, title = "opennebula", ...others}, ref) { - const Opennebula = React.forwardRef(function Opennebula({color = 'currentColor', size = 24, title = "opennebula", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opennebula - \ No newline at end of file +export default Opennebula; diff --git a/src/components/Openproject.tsx b/src/components/Openproject.tsx index d424d4ab8..7f3f5093c 100644 --- a/src/components/Openproject.tsx +++ b/src/components/Openproject.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenprojectProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openproject = React.forwardRef(function Openproject({color = 'currentColor', size = 24, title = "openproject", ...others}, ref) { - const Openproject = React.forwardRef(function Openproject({color = 'currentColor', size = 24, title = "openproject", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openproject - \ No newline at end of file +export default Openproject; diff --git a/src/components/Opensea.tsx b/src/components/Opensea.tsx index 507dec16f..d56b3d0c5 100644 --- a/src/components/Opensea.tsx +++ b/src/components/Opensea.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenseaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenseaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opensea = React.forwardRef(function Opensea({color = 'currentColor', size = 24, title = "opensea", ...others}, ref) { - const Opensea = React.forwardRef(function Opensea({color = 'currentColor', size = 24, title = "opensea", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opensea - \ No newline at end of file +export default Opensea; diff --git a/src/components/Opensearch.tsx b/src/components/Opensearch.tsx index 218fa0c4c..6acc4e79a 100644 --- a/src/components/Opensearch.tsx +++ b/src/components/Opensearch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpensearchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpensearchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opensearch = React.forwardRef(function Opensearch({color = 'currentColor', size = 24, title = "opensearch", ...others}, ref) { - const Opensearch = React.forwardRef(function Opensearch({color = 'currentColor', size = 24, title = "opensearch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opensearch - \ No newline at end of file +export default Opensearch; diff --git a/src/components/Opensourceinitiative.tsx b/src/components/Opensourceinitiative.tsx index 0ce4c5f66..9f85c292f 100644 --- a/src/components/Opensourceinitiative.tsx +++ b/src/components/Opensourceinitiative.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpensourceinitiativeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpensourceinitiativeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opensourceinitiative = React.forwardRef(function Opensourceinitiative({color = 'currentColor', size = 24, title = "opensourceinitiative", ...others}, ref) { - const Opensourceinitiative = React.forwardRef(function Opensourceinitiative({color = 'currentColor', size = 24, title = "opensourceinitiative", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opensourceinitiative - \ No newline at end of file +export default Opensourceinitiative; diff --git a/src/components/Openssl.tsx b/src/components/Openssl.tsx index ea2103483..7923d038a 100644 --- a/src/components/Openssl.tsx +++ b/src/components/Openssl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpensslProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpensslProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openssl = React.forwardRef(function Openssl({color = 'currentColor', size = 24, title = "openssl", ...others}, ref) { - const Openssl = React.forwardRef(function Openssl({color = 'currentColor', size = 24, title = "openssl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openssl - \ No newline at end of file +export default Openssl; diff --git a/src/components/Openstack.tsx b/src/components/Openstack.tsx index 1c2e90d5d..e03b7717a 100644 --- a/src/components/Openstack.tsx +++ b/src/components/Openstack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenstackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openstack = React.forwardRef(function Openstack({color = 'currentColor', size = 24, title = "openstack", ...others}, ref) { - const Openstack = React.forwardRef(function Openstack({color = 'currentColor', size = 24, title = "openstack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openstack - \ No newline at end of file +export default Openstack; diff --git a/src/components/Openstreetmap.tsx b/src/components/Openstreetmap.tsx index a639cd428..78f5cc0b4 100644 --- a/src/components/Openstreetmap.tsx +++ b/src/components/Openstreetmap.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenstreetmapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenstreetmapProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openstreetmap = React.forwardRef(function Openstreetmap({color = 'currentColor', size = 24, title = "openstreetmap", ...others}, ref) { - const Openstreetmap = React.forwardRef(function Openstreetmap({color = 'currentColor', size = 24, title = "openstreetmap", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openstreetmap - \ No newline at end of file +export default Openstreetmap; diff --git a/src/components/Opensuse.tsx b/src/components/Opensuse.tsx index 35399e9d3..633a5a386 100644 --- a/src/components/Opensuse.tsx +++ b/src/components/Opensuse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpensuseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpensuseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opensuse = React.forwardRef(function Opensuse({color = 'currentColor', size = 24, title = "opensuse", ...others}, ref) { - const Opensuse = React.forwardRef(function Opensuse({color = 'currentColor', size = 24, title = "opensuse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opensuse - \ No newline at end of file +export default Opensuse; diff --git a/src/components/Opentelemetry.tsx b/src/components/Opentelemetry.tsx index b6579c4ec..9ad97dbd6 100644 --- a/src/components/Opentelemetry.tsx +++ b/src/components/Opentelemetry.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpentelemetryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpentelemetryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opentelemetry = React.forwardRef(function Opentelemetry({color = 'currentColor', size = 24, title = "opentelemetry", ...others}, ref) { - const Opentelemetry = React.forwardRef(function Opentelemetry({color = 'currentColor', size = 24, title = "opentelemetry", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opentelemetry - \ No newline at end of file +export default Opentelemetry; diff --git a/src/components/Openverse.tsx b/src/components/Openverse.tsx index 163d6e126..81b640ce2 100644 --- a/src/components/Openverse.tsx +++ b/src/components/Openverse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenverseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenverseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openverse = React.forwardRef(function Openverse({color = 'currentColor', size = 24, title = "openverse", ...others}, ref) { - const Openverse = React.forwardRef(function Openverse({color = 'currentColor', size = 24, title = "openverse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openverse - \ No newline at end of file +export default Openverse; diff --git a/src/components/Openvpn.tsx b/src/components/Openvpn.tsx index 838a7cce1..4d4601c08 100644 --- a/src/components/Openvpn.tsx +++ b/src/components/Openvpn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenvpnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenvpnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openvpn = React.forwardRef(function Openvpn({color = 'currentColor', size = 24, title = "openvpn", ...others}, ref) { - const Openvpn = React.forwardRef(function Openvpn({color = 'currentColor', size = 24, title = "openvpn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openvpn - \ No newline at end of file +export default Openvpn; diff --git a/src/components/Openwrt.tsx b/src/components/Openwrt.tsx index 712512d21..b44829343 100644 --- a/src/components/Openwrt.tsx +++ b/src/components/Openwrt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenwrtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenwrtProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openwrt = React.forwardRef(function Openwrt({color = 'currentColor', size = 24, title = "openwrt", ...others}, ref) { - const Openwrt = React.forwardRef(function Openwrt({color = 'currentColor', size = 24, title = "openwrt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openwrt - \ No newline at end of file +export default Openwrt; diff --git a/src/components/Openzeppelin.tsx b/src/components/Openzeppelin.tsx index abd36ba39..a6c1b966f 100644 --- a/src/components/Openzeppelin.tsx +++ b/src/components/Openzeppelin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenzeppelinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenzeppelinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openzeppelin = React.forwardRef(function Openzeppelin({color = 'currentColor', size = 24, title = "openzeppelin", ...others}, ref) { - const Openzeppelin = React.forwardRef(function Openzeppelin({color = 'currentColor', size = 24, title = "openzeppelin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openzeppelin - \ No newline at end of file +export default Openzeppelin; diff --git a/src/components/Openzfs.tsx b/src/components/Openzfs.tsx index 36e053393..054cd0da6 100644 --- a/src/components/Openzfs.tsx +++ b/src/components/Openzfs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpenzfsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpenzfsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Openzfs = React.forwardRef(function Openzfs({color = 'currentColor', size = 24, title = "openzfs", ...others}, ref) { - const Openzfs = React.forwardRef(function Openzfs({color = 'currentColor', size = 24, title = "openzfs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Openzfs - \ No newline at end of file +export default Openzfs; diff --git a/src/components/Opera.tsx b/src/components/Opera.tsx index f4c32e815..d39252617 100644 --- a/src/components/Opera.tsx +++ b/src/components/Opera.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OperaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OperaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opera = React.forwardRef(function Opera({color = 'currentColor', size = 24, title = "opera", ...others}, ref) { - const Opera = React.forwardRef(function Opera({color = 'currentColor', size = 24, title = "opera", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opera - \ No newline at end of file +export default Opera; diff --git a/src/components/Opnsense.tsx b/src/components/Opnsense.tsx index c79782a3a..3f045674d 100644 --- a/src/components/Opnsense.tsx +++ b/src/components/Opnsense.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpnsenseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpnsenseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opnsense = React.forwardRef(function Opnsense({color = 'currentColor', size = 24, title = "opnsense", ...others}, ref) { - const Opnsense = React.forwardRef(function Opnsense({color = 'currentColor', size = 24, title = "opnsense", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opnsense - \ No newline at end of file +export default Opnsense; diff --git a/src/components/Opsgenie.tsx b/src/components/Opsgenie.tsx index 8e8b469bd..c521db175 100644 --- a/src/components/Opsgenie.tsx +++ b/src/components/Opsgenie.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpsgenieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpsgenieProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opsgenie = React.forwardRef(function Opsgenie({color = 'currentColor', size = 24, title = "opsgenie", ...others}, ref) { - const Opsgenie = React.forwardRef(function Opsgenie({color = 'currentColor', size = 24, title = "opsgenie", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opsgenie - \ No newline at end of file +export default Opsgenie; diff --git a/src/components/Opslevel.tsx b/src/components/Opslevel.tsx index a1f0f8018..80f4402fa 100644 --- a/src/components/Opslevel.tsx +++ b/src/components/Opslevel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OpslevelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OpslevelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Opslevel = React.forwardRef(function Opslevel({color = 'currentColor', size = 24, title = "opslevel", ...others}, ref) { - const Opslevel = React.forwardRef(function Opslevel({color = 'currentColor', size = 24, title = "opslevel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Opslevel - \ No newline at end of file +export default Opslevel; diff --git a/src/components/Oracle.tsx b/src/components/Oracle.tsx index 705117142..c9f97d9bd 100644 --- a/src/components/Oracle.tsx +++ b/src/components/Oracle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OracleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OracleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Oracle = React.forwardRef(function Oracle({color = 'currentColor', size = 24, title = "oracle", ...others}, ref) { - const Oracle = React.forwardRef(function Oracle({color = 'currentColor', size = 24, title = "oracle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Oracle - \ No newline at end of file +export default Oracle; diff --git a/src/components/Orcid.tsx b/src/components/Orcid.tsx index cea7334ae..0e7afa20d 100644 --- a/src/components/Orcid.tsx +++ b/src/components/Orcid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OrcidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OrcidProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Orcid = React.forwardRef(function Orcid({color = 'currentColor', size = 24, title = "orcid", ...others}, ref) { - const Orcid = React.forwardRef(function Orcid({color = 'currentColor', size = 24, title = "orcid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Orcid - \ No newline at end of file +export default Orcid; diff --git a/src/components/Oreilly.tsx b/src/components/Oreilly.tsx index e73fa7b1a..1db937c42 100644 --- a/src/components/Oreilly.tsx +++ b/src/components/Oreilly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OreillyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OreillyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Oreilly = React.forwardRef(function Oreilly({color = 'currentColor', size = 24, title = "oreilly", ...others}, ref) { - const Oreilly = React.forwardRef(function Oreilly({color = 'currentColor', size = 24, title = "oreilly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Oreilly - \ No newline at end of file +export default Oreilly; diff --git a/src/components/Org.tsx b/src/components/Org.tsx index ea0dcb9cb..fb8bd75a6 100644 --- a/src/components/Org.tsx +++ b/src/components/Org.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OrgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OrgProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Org = React.forwardRef(function Org({color = 'currentColor', size = 24, title = "org", ...others}, ref) { - const Org = React.forwardRef(function Org({color = 'currentColor', size = 24, title = "org", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Org - \ No newline at end of file +export default Org; diff --git a/src/components/Origin.tsx b/src/components/Origin.tsx index 8074478a0..372a393ea 100644 --- a/src/components/Origin.tsx +++ b/src/components/Origin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OriginProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OriginProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Origin = React.forwardRef(function Origin({color = 'currentColor', size = 24, title = "origin", ...others}, ref) { - const Origin = React.forwardRef(function Origin({color = 'currentColor', size = 24, title = "origin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Origin - \ No newline at end of file +export default Origin; diff --git a/src/components/Osano.tsx b/src/components/Osano.tsx index 35213798f..9cd9e4aa8 100644 --- a/src/components/Osano.tsx +++ b/src/components/Osano.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OsanoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OsanoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Osano = React.forwardRef(function Osano({color = 'currentColor', size = 24, title = "osano", ...others}, ref) { - const Osano = React.forwardRef(function Osano({color = 'currentColor', size = 24, title = "osano", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Osano - \ No newline at end of file +export default Osano; diff --git a/src/components/Oshkosh.tsx b/src/components/Oshkosh.tsx index e86c783e8..55f1af9bf 100644 --- a/src/components/Oshkosh.tsx +++ b/src/components/Oshkosh.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OshkoshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OshkoshProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Oshkosh = React.forwardRef(function Oshkosh({color = 'currentColor', size = 24, title = "oshkosh", ...others}, ref) { - const Oshkosh = React.forwardRef(function Oshkosh({color = 'currentColor', size = 24, title = "oshkosh", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Oshkosh - \ No newline at end of file +export default Oshkosh; diff --git a/src/components/Osmc.tsx b/src/components/Osmc.tsx index 49301a98a..fc3a6a666 100644 --- a/src/components/Osmc.tsx +++ b/src/components/Osmc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OsmcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OsmcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Osmc = React.forwardRef(function Osmc({color = 'currentColor', size = 24, title = "osmc", ...others}, ref) { - const Osmc = React.forwardRef(function Osmc({color = 'currentColor', size = 24, title = "osmc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Osmc - \ No newline at end of file +export default Osmc; diff --git a/src/components/Osu.tsx b/src/components/Osu.tsx index 668290986..7fb21b627 100644 --- a/src/components/Osu.tsx +++ b/src/components/Osu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OsuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OsuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Osu = React.forwardRef(function Osu({color = 'currentColor', size = 24, title = "osu", ...others}, ref) { - const Osu = React.forwardRef(function Osu({color = 'currentColor', size = 24, title = "osu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Osu - \ No newline at end of file +export default Osu; diff --git a/src/components/Otto.tsx b/src/components/Otto.tsx index f52c2c833..1d891666e 100644 --- a/src/components/Otto.tsx +++ b/src/components/Otto.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OttoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OttoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Otto = React.forwardRef(function Otto({color = 'currentColor', size = 24, title = "otto", ...others}, ref) { - const Otto = React.forwardRef(function Otto({color = 'currentColor', size = 24, title = "otto", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Otto - \ No newline at end of file +export default Otto; diff --git a/src/components/Overcast.tsx b/src/components/Overcast.tsx index 9136837df..ad36e13e8 100644 --- a/src/components/Overcast.tsx +++ b/src/components/Overcast.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OvercastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OvercastProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Overcast = React.forwardRef(function Overcast({color = 'currentColor', size = 24, title = "overcast", ...others}, ref) { - const Overcast = React.forwardRef(function Overcast({color = 'currentColor', size = 24, title = "overcast", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Overcast - \ No newline at end of file +export default Overcast; diff --git a/src/components/Overleaf.tsx b/src/components/Overleaf.tsx index 24f9ce085..d5e204089 100644 --- a/src/components/Overleaf.tsx +++ b/src/components/Overleaf.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OverleafProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OverleafProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Overleaf = React.forwardRef(function Overleaf({color = 'currentColor', size = 24, title = "overleaf", ...others}, ref) { - const Overleaf = React.forwardRef(function Overleaf({color = 'currentColor', size = 24, title = "overleaf", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Overleaf - \ No newline at end of file +export default Overleaf; diff --git a/src/components/Ovh.tsx b/src/components/Ovh.tsx index e0a63bb22..6afcdd540 100644 --- a/src/components/Ovh.tsx +++ b/src/components/Ovh.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OvhProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OvhProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ovh = React.forwardRef(function Ovh({color = 'currentColor', size = 24, title = "ovh", ...others}, ref) { - const Ovh = React.forwardRef(function Ovh({color = 'currentColor', size = 24, title = "ovh", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ovh - \ No newline at end of file +export default Ovh; diff --git a/src/components/Owasp.tsx b/src/components/Owasp.tsx index 9d1692774..48620e878 100644 --- a/src/components/Owasp.tsx +++ b/src/components/Owasp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OwaspProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OwaspProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Owasp = React.forwardRef(function Owasp({color = 'currentColor', size = 24, title = "owasp", ...others}, ref) { - const Owasp = React.forwardRef(function Owasp({color = 'currentColor', size = 24, title = "owasp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Owasp - \ No newline at end of file +export default Owasp; diff --git a/src/components/Oxygen.tsx b/src/components/Oxygen.tsx index ebd01cabb..1553cef8c 100644 --- a/src/components/Oxygen.tsx +++ b/src/components/Oxygen.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OxygenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OxygenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Oxygen = React.forwardRef(function Oxygen({color = 'currentColor', size = 24, title = "oxygen", ...others}, ref) { - const Oxygen = React.forwardRef(function Oxygen({color = 'currentColor', size = 24, title = "oxygen", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Oxygen - \ No newline at end of file +export default Oxygen; diff --git a/src/components/Oyo.tsx b/src/components/Oyo.tsx index 6e9d8b21d..77502564e 100644 --- a/src/components/Oyo.tsx +++ b/src/components/Oyo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type OyoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type OyoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Oyo = React.forwardRef(function Oyo({color = 'currentColor', size = 24, title = "oyo", ...others}, ref) { - const Oyo = React.forwardRef(function Oyo({color = 'currentColor', size = 24, title = "oyo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Oyo - \ No newline at end of file +export default Oyo; diff --git a/src/components/P5dotjs.tsx b/src/components/P5dotjs.tsx index c745139b9..a07bc465f 100644 --- a/src/components/P5dotjs.tsx +++ b/src/components/P5dotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type P5dotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type P5dotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const P5dotjs = React.forwardRef(function P5dotjs({color = 'currentColor', size = 24, title = "p5dotjs", ...others}, ref) { - const P5dotjs = React.forwardRef(function P5dotjs({color = 'currentColor', size = 24, title = "p5dotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default P5dotjs - \ No newline at end of file +export default P5dotjs; diff --git a/src/components/Packagist.tsx b/src/components/Packagist.tsx index 157cb6433..af582f36e 100644 --- a/src/components/Packagist.tsx +++ b/src/components/Packagist.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PackagistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PackagistProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Packagist = React.forwardRef(function Packagist({color = 'currentColor', size = 24, title = "packagist", ...others}, ref) { - const Packagist = React.forwardRef(function Packagist({color = 'currentColor', size = 24, title = "packagist", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Packagist - \ No newline at end of file +export default Packagist; diff --git a/src/components/Packer.tsx b/src/components/Packer.tsx index fc16525f5..8c7d40077 100644 --- a/src/components/Packer.tsx +++ b/src/components/Packer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PackerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PackerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Packer = React.forwardRef(function Packer({color = 'currentColor', size = 24, title = "packer", ...others}, ref) { - const Packer = React.forwardRef(function Packer({color = 'currentColor', size = 24, title = "packer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Packer - \ No newline at end of file +export default Packer; diff --git a/src/components/Paddypower.tsx b/src/components/Paddypower.tsx index 582368402..187961eb3 100644 --- a/src/components/Paddypower.tsx +++ b/src/components/Paddypower.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PaddypowerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PaddypowerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Paddypower = React.forwardRef(function Paddypower({color = 'currentColor', size = 24, title = "paddypower", ...others}, ref) { - const Paddypower = React.forwardRef(function Paddypower({color = 'currentColor', size = 24, title = "paddypower", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Paddypower - \ No newline at end of file +export default Paddypower; diff --git a/src/components/Pagekit.tsx b/src/components/Pagekit.tsx index d628381c2..523691e0a 100644 --- a/src/components/Pagekit.tsx +++ b/src/components/Pagekit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PagekitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PagekitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pagekit = React.forwardRef(function Pagekit({color = 'currentColor', size = 24, title = "pagekit", ...others}, ref) { - const Pagekit = React.forwardRef(function Pagekit({color = 'currentColor', size = 24, title = "pagekit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pagekit - \ No newline at end of file +export default Pagekit; diff --git a/src/components/Pagerduty.tsx b/src/components/Pagerduty.tsx index ed0edf890..36ba5901a 100644 --- a/src/components/Pagerduty.tsx +++ b/src/components/Pagerduty.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PagerdutyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PagerdutyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pagerduty = React.forwardRef(function Pagerduty({color = 'currentColor', size = 24, title = "pagerduty", ...others}, ref) { - const Pagerduty = React.forwardRef(function Pagerduty({color = 'currentColor', size = 24, title = "pagerduty", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pagerduty - \ No newline at end of file +export default Pagerduty; diff --git a/src/components/Pagespeedinsights.tsx b/src/components/Pagespeedinsights.tsx index 3e7454718..082f1aca7 100644 --- a/src/components/Pagespeedinsights.tsx +++ b/src/components/Pagespeedinsights.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PagespeedinsightsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PagespeedinsightsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pagespeedinsights = React.forwardRef(function Pagespeedinsights({color = 'currentColor', size = 24, title = "pagespeedinsights", ...others}, ref) { - const Pagespeedinsights = React.forwardRef(function Pagespeedinsights({color = 'currentColor', size = 24, title = "pagespeedinsights", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pagespeedinsights - \ No newline at end of file +export default Pagespeedinsights; diff --git a/src/components/Pagseguro.tsx b/src/components/Pagseguro.tsx index bc0c8cba8..fb3f2eb39 100644 --- a/src/components/Pagseguro.tsx +++ b/src/components/Pagseguro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PagseguroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PagseguroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pagseguro = React.forwardRef(function Pagseguro({color = 'currentColor', size = 24, title = "pagseguro", ...others}, ref) { - const Pagseguro = React.forwardRef(function Pagseguro({color = 'currentColor', size = 24, title = "pagseguro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pagseguro - \ No newline at end of file +export default Pagseguro; diff --git a/src/components/Palantir.tsx b/src/components/Palantir.tsx index d593f701a..71d49f556 100644 --- a/src/components/Palantir.tsx +++ b/src/components/Palantir.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PalantirProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PalantirProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Palantir = React.forwardRef(function Palantir({color = 'currentColor', size = 24, title = "palantir", ...others}, ref) { - const Palantir = React.forwardRef(function Palantir({color = 'currentColor', size = 24, title = "palantir", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Palantir - \ No newline at end of file +export default Palantir; diff --git a/src/components/Paloaltosoftware.tsx b/src/components/Paloaltosoftware.tsx index c20d50c7c..bf2231196 100644 --- a/src/components/Paloaltosoftware.tsx +++ b/src/components/Paloaltosoftware.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PaloaltosoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PaloaltosoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Paloaltosoftware = React.forwardRef(function Paloaltosoftware({color = 'currentColor', size = 24, title = "paloaltosoftware", ...others}, ref) { - const Paloaltosoftware = React.forwardRef(function Paloaltosoftware({color = 'currentColor', size = 24, title = "paloaltosoftware", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Paloaltosoftware - \ No newline at end of file +export default Paloaltosoftware; diff --git a/src/components/Pandas.tsx b/src/components/Pandas.tsx index 39cf2454f..4a8bd6540 100644 --- a/src/components/Pandas.tsx +++ b/src/components/Pandas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PandasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PandasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pandas = React.forwardRef(function Pandas({color = 'currentColor', size = 24, title = "pandas", ...others}, ref) { - const Pandas = React.forwardRef(function Pandas({color = 'currentColor', size = 24, title = "pandas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pandas - \ No newline at end of file +export default Pandas; diff --git a/src/components/Pandora.tsx b/src/components/Pandora.tsx index 1e311e6fe..99be2d362 100644 --- a/src/components/Pandora.tsx +++ b/src/components/Pandora.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PandoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PandoraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pandora = React.forwardRef(function Pandora({color = 'currentColor', size = 24, title = "pandora", ...others}, ref) { - const Pandora = React.forwardRef(function Pandora({color = 'currentColor', size = 24, title = "pandora", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pandora - \ No newline at end of file +export default Pandora; diff --git a/src/components/Pantheon.tsx b/src/components/Pantheon.tsx index 958978bf0..200c78bc6 100644 --- a/src/components/Pantheon.tsx +++ b/src/components/Pantheon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PantheonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PantheonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pantheon = React.forwardRef(function Pantheon({color = 'currentColor', size = 24, title = "pantheon", ...others}, ref) { - const Pantheon = React.forwardRef(function Pantheon({color = 'currentColor', size = 24, title = "pantheon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pantheon - \ No newline at end of file +export default Pantheon; diff --git a/src/components/Paperspace.tsx b/src/components/Paperspace.tsx index d174aef0c..6bbc4132f 100644 --- a/src/components/Paperspace.tsx +++ b/src/components/Paperspace.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PaperspaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PaperspaceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Paperspace = React.forwardRef(function Paperspace({color = 'currentColor', size = 24, title = "paperspace", ...others}, ref) { - const Paperspace = React.forwardRef(function Paperspace({color = 'currentColor', size = 24, title = "paperspace", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Paperspace - \ No newline at end of file +export default Paperspace; diff --git a/src/components/Paritysubstrate.tsx b/src/components/Paritysubstrate.tsx index b333e8142..4f880e5b2 100644 --- a/src/components/Paritysubstrate.tsx +++ b/src/components/Paritysubstrate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ParitysubstrateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ParitysubstrateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Paritysubstrate = React.forwardRef(function Paritysubstrate({color = 'currentColor', size = 24, title = "paritysubstrate", ...others}, ref) { - const Paritysubstrate = React.forwardRef(function Paritysubstrate({color = 'currentColor', size = 24, title = "paritysubstrate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Paritysubstrate - \ No newline at end of file +export default Paritysubstrate; diff --git a/src/components/Parsedotly.tsx b/src/components/Parsedotly.tsx index 9b53c3080..7df473f45 100644 --- a/src/components/Parsedotly.tsx +++ b/src/components/Parsedotly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ParsedotlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ParsedotlyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Parsedotly = React.forwardRef(function Parsedotly({color = 'currentColor', size = 24, title = "parsedotly", ...others}, ref) { - const Parsedotly = React.forwardRef(function Parsedotly({color = 'currentColor', size = 24, title = "parsedotly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Parsedotly - \ No newline at end of file +export default Parsedotly; diff --git a/src/components/Passport.tsx b/src/components/Passport.tsx index ff821f4a6..898997736 100644 --- a/src/components/Passport.tsx +++ b/src/components/Passport.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PassportProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PassportProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Passport = React.forwardRef(function Passport({color = 'currentColor', size = 24, title = "passport", ...others}, ref) { - const Passport = React.forwardRef(function Passport({color = 'currentColor', size = 24, title = "passport", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Passport - \ No newline at end of file +export default Passport; diff --git a/src/components/Pastebin.tsx b/src/components/Pastebin.tsx index bd915621d..420daac8b 100644 --- a/src/components/Pastebin.tsx +++ b/src/components/Pastebin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PastebinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PastebinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pastebin = React.forwardRef(function Pastebin({color = 'currentColor', size = 24, title = "pastebin", ...others}, ref) { - const Pastebin = React.forwardRef(function Pastebin({color = 'currentColor', size = 24, title = "pastebin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pastebin - \ No newline at end of file +export default Pastebin; diff --git a/src/components/Patreon.tsx b/src/components/Patreon.tsx index 269b1c589..963ebc5d4 100644 --- a/src/components/Patreon.tsx +++ b/src/components/Patreon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PatreonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PatreonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Patreon = React.forwardRef(function Patreon({color = 'currentColor', size = 24, title = "patreon", ...others}, ref) { - const Patreon = React.forwardRef(function Patreon({color = 'currentColor', size = 24, title = "patreon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Patreon - \ No newline at end of file +export default Patreon; diff --git a/src/components/Payoneer.tsx b/src/components/Payoneer.tsx index c09affd62..63c71c613 100644 --- a/src/components/Payoneer.tsx +++ b/src/components/Payoneer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PayoneerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PayoneerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Payoneer = React.forwardRef(function Payoneer({color = 'currentColor', size = 24, title = "payoneer", ...others}, ref) { - const Payoneer = React.forwardRef(function Payoneer({color = 'currentColor', size = 24, title = "payoneer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Payoneer - \ No newline at end of file +export default Payoneer; diff --git a/src/components/Paypal.tsx b/src/components/Paypal.tsx index 05237b9d4..5b0acabdc 100644 --- a/src/components/Paypal.tsx +++ b/src/components/Paypal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PaypalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PaypalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Paypal = React.forwardRef(function Paypal({color = 'currentColor', size = 24, title = "paypal", ...others}, ref) { - const Paypal = React.forwardRef(function Paypal({color = 'currentColor', size = 24, title = "paypal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Paypal - \ No newline at end of file +export default Paypal; diff --git a/src/components/Paytm.tsx b/src/components/Paytm.tsx index 0254bff26..d2742dcdc 100644 --- a/src/components/Paytm.tsx +++ b/src/components/Paytm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PaytmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PaytmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Paytm = React.forwardRef(function Paytm({color = 'currentColor', size = 24, title = "paytm", ...others}, ref) { - const Paytm = React.forwardRef(function Paytm({color = 'currentColor', size = 24, title = "paytm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Paytm - \ No newline at end of file +export default Paytm; diff --git a/src/components/Pcgamingwiki.tsx b/src/components/Pcgamingwiki.tsx index 9cb9f999e..b3dc73519 100644 --- a/src/components/Pcgamingwiki.tsx +++ b/src/components/Pcgamingwiki.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PcgamingwikiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PcgamingwikiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pcgamingwiki = React.forwardRef(function Pcgamingwiki({color = 'currentColor', size = 24, title = "pcgamingwiki", ...others}, ref) { - const Pcgamingwiki = React.forwardRef(function Pcgamingwiki({color = 'currentColor', size = 24, title = "pcgamingwiki", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pcgamingwiki - \ No newline at end of file +export default Pcgamingwiki; diff --git a/src/components/Peakdesign.tsx b/src/components/Peakdesign.tsx index 1e9a01221..8fc5088dd 100644 --- a/src/components/Peakdesign.tsx +++ b/src/components/Peakdesign.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PeakdesignProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PeakdesignProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Peakdesign = React.forwardRef(function Peakdesign({color = 'currentColor', size = 24, title = "peakdesign", ...others}, ref) { - const Peakdesign = React.forwardRef(function Peakdesign({color = 'currentColor', size = 24, title = "peakdesign", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Peakdesign - \ No newline at end of file +export default Peakdesign; diff --git a/src/components/Peertube.tsx b/src/components/Peertube.tsx index c0f52e84a..c38f19336 100644 --- a/src/components/Peertube.tsx +++ b/src/components/Peertube.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PeertubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PeertubeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Peertube = React.forwardRef(function Peertube({color = 'currentColor', size = 24, title = "peertube", ...others}, ref) { - const Peertube = React.forwardRef(function Peertube({color = 'currentColor', size = 24, title = "peertube", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Peertube - \ No newline at end of file +export default Peertube; diff --git a/src/components/Pegasusairlines.tsx b/src/components/Pegasusairlines.tsx index a3738cef8..d26fa9083 100644 --- a/src/components/Pegasusairlines.tsx +++ b/src/components/Pegasusairlines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PegasusairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PegasusairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pegasusairlines = React.forwardRef(function Pegasusairlines({color = 'currentColor', size = 24, title = "pegasusairlines", ...others}, ref) { - const Pegasusairlines = React.forwardRef(function Pegasusairlines({color = 'currentColor', size = 24, title = "pegasusairlines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pegasusairlines - \ No newline at end of file +export default Pegasusairlines; diff --git a/src/components/Pelican.tsx b/src/components/Pelican.tsx index fd1bb77d9..8703e4ccc 100644 --- a/src/components/Pelican.tsx +++ b/src/components/Pelican.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PelicanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PelicanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pelican = React.forwardRef(function Pelican({color = 'currentColor', size = 24, title = "pelican", ...others}, ref) { - const Pelican = React.forwardRef(function Pelican({color = 'currentColor', size = 24, title = "pelican", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pelican - \ No newline at end of file +export default Pelican; diff --git a/src/components/Peloton.tsx b/src/components/Peloton.tsx index 14186dab5..9ad6a647a 100644 --- a/src/components/Peloton.tsx +++ b/src/components/Peloton.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PelotonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PelotonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Peloton = React.forwardRef(function Peloton({color = 'currentColor', size = 24, title = "peloton", ...others}, ref) { - const Peloton = React.forwardRef(function Peloton({color = 'currentColor', size = 24, title = "peloton", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Peloton - \ No newline at end of file +export default Peloton; diff --git a/src/components/Penny.tsx b/src/components/Penny.tsx index bb23b2270..665d3811d 100644 --- a/src/components/Penny.tsx +++ b/src/components/Penny.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PennyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PennyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Penny = React.forwardRef(function Penny({color = 'currentColor', size = 24, title = "penny", ...others}, ref) { - const Penny = React.forwardRef(function Penny({color = 'currentColor', size = 24, title = "penny", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Penny - \ No newline at end of file +export default Penny; diff --git a/src/components/Pepsi.tsx b/src/components/Pepsi.tsx index 9b2b0889f..bf5fc6ddd 100644 --- a/src/components/Pepsi.tsx +++ b/src/components/Pepsi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PepsiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PepsiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pepsi = React.forwardRef(function Pepsi({color = 'currentColor', size = 24, title = "pepsi", ...others}, ref) { - const Pepsi = React.forwardRef(function Pepsi({color = 'currentColor', size = 24, title = "pepsi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pepsi - \ No newline at end of file +export default Pepsi; diff --git a/src/components/Percy.tsx b/src/components/Percy.tsx index fc8459d8b..fb70bb222 100644 --- a/src/components/Percy.tsx +++ b/src/components/Percy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PercyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PercyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Percy = React.forwardRef(function Percy({color = 'currentColor', size = 24, title = "percy", ...others}, ref) { - const Percy = React.forwardRef(function Percy({color = 'currentColor', size = 24, title = "percy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Percy - \ No newline at end of file +export default Percy; diff --git a/src/components/Perforce.tsx b/src/components/Perforce.tsx index 4a6cf3e16..2f3645b44 100644 --- a/src/components/Perforce.tsx +++ b/src/components/Perforce.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PerforceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PerforceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Perforce = React.forwardRef(function Perforce({color = 'currentColor', size = 24, title = "perforce", ...others}, ref) { - const Perforce = React.forwardRef(function Perforce({color = 'currentColor', size = 24, title = "perforce", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Perforce - \ No newline at end of file +export default Perforce; diff --git a/src/components/Perl.tsx b/src/components/Perl.tsx index a98c0d231..45b6269e2 100644 --- a/src/components/Perl.tsx +++ b/src/components/Perl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PerlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PerlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Perl = React.forwardRef(function Perl({color = 'currentColor', size = 24, title = "perl", ...others}, ref) { - const Perl = React.forwardRef(function Perl({color = 'currentColor', size = 24, title = "perl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Perl - \ No newline at end of file +export default Perl; diff --git a/src/components/Personio.tsx b/src/components/Personio.tsx index fde701069..13de1ff0b 100644 --- a/src/components/Personio.tsx +++ b/src/components/Personio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PersonioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PersonioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Personio = React.forwardRef(function Personio({color = 'currentColor', size = 24, title = "personio", ...others}, ref) { - const Personio = React.forwardRef(function Personio({color = 'currentColor', size = 24, title = "personio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Personio - \ No newline at end of file +export default Personio; diff --git a/src/components/Petsathome.tsx b/src/components/Petsathome.tsx index 168aa1c15..d6bb7a10d 100644 --- a/src/components/Petsathome.tsx +++ b/src/components/Petsathome.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PetsathomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PetsathomeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Petsathome = React.forwardRef(function Petsathome({color = 'currentColor', size = 24, title = "petsathome", ...others}, ref) { - const Petsathome = React.forwardRef(function Petsathome({color = 'currentColor', size = 24, title = "petsathome", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Petsathome - \ No newline at end of file +export default Petsathome; diff --git a/src/components/Peugeot.tsx b/src/components/Peugeot.tsx index fe6618104..cacb93088 100644 --- a/src/components/Peugeot.tsx +++ b/src/components/Peugeot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PeugeotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PeugeotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Peugeot = React.forwardRef(function Peugeot({color = 'currentColor', size = 24, title = "peugeot", ...others}, ref) { - const Peugeot = React.forwardRef(function Peugeot({color = 'currentColor', size = 24, title = "peugeot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Peugeot - \ No newline at end of file +export default Peugeot; diff --git a/src/components/Pexels.tsx b/src/components/Pexels.tsx index 4d36fdbd6..2dd09be3b 100644 --- a/src/components/Pexels.tsx +++ b/src/components/Pexels.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PexelsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PexelsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pexels = React.forwardRef(function Pexels({color = 'currentColor', size = 24, title = "pexels", ...others}, ref) { - const Pexels = React.forwardRef(function Pexels({color = 'currentColor', size = 24, title = "pexels", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pexels - \ No newline at end of file +export default Pexels; diff --git a/src/components/Pfsense.tsx b/src/components/Pfsense.tsx index ef0ec7556..4fc1af2a8 100644 --- a/src/components/Pfsense.tsx +++ b/src/components/Pfsense.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PfsenseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PfsenseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pfsense = React.forwardRef(function Pfsense({color = 'currentColor', size = 24, title = "pfsense", ...others}, ref) { - const Pfsense = React.forwardRef(function Pfsense({color = 'currentColor', size = 24, title = "pfsense", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pfsense - \ No newline at end of file +export default Pfsense; diff --git a/src/components/Phabricator.tsx b/src/components/Phabricator.tsx index 9fd45b234..f15747325 100644 --- a/src/components/Phabricator.tsx +++ b/src/components/Phabricator.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PhabricatorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PhabricatorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Phabricator = React.forwardRef(function Phabricator({color = 'currentColor', size = 24, title = "phabricator", ...others}, ref) { - const Phabricator = React.forwardRef(function Phabricator({color = 'currentColor', size = 24, title = "phabricator", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Phabricator - \ No newline at end of file +export default Phabricator; diff --git a/src/components/Philipshue.tsx b/src/components/Philipshue.tsx index 461713289..a9a43df32 100644 --- a/src/components/Philipshue.tsx +++ b/src/components/Philipshue.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PhilipshueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PhilipshueProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Philipshue = React.forwardRef(function Philipshue({color = 'currentColor', size = 24, title = "philipshue", ...others}, ref) { - const Philipshue = React.forwardRef(function Philipshue({color = 'currentColor', size = 24, title = "philipshue", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Philipshue - \ No newline at end of file +export default Philipshue; diff --git a/src/components/Phonepe.tsx b/src/components/Phonepe.tsx index 4431614c5..2d03f75bd 100644 --- a/src/components/Phonepe.tsx +++ b/src/components/Phonepe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PhonepeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PhonepeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Phonepe = React.forwardRef(function Phonepe({color = 'currentColor', size = 24, title = "phonepe", ...others}, ref) { - const Phonepe = React.forwardRef(function Phonepe({color = 'currentColor', size = 24, title = "phonepe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Phonepe - \ No newline at end of file +export default Phonepe; diff --git a/src/components/Photobucket.tsx b/src/components/Photobucket.tsx index 08a3452d9..ea480f140 100644 --- a/src/components/Photobucket.tsx +++ b/src/components/Photobucket.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PhotobucketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PhotobucketProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Photobucket = React.forwardRef(function Photobucket({color = 'currentColor', size = 24, title = "photobucket", ...others}, ref) { - const Photobucket = React.forwardRef(function Photobucket({color = 'currentColor', size = 24, title = "photobucket", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Photobucket - \ No newline at end of file +export default Photobucket; diff --git a/src/components/Photocrowd.tsx b/src/components/Photocrowd.tsx index 1f1f76492..54a1341a3 100644 --- a/src/components/Photocrowd.tsx +++ b/src/components/Photocrowd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PhotocrowdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PhotocrowdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Photocrowd = React.forwardRef(function Photocrowd({color = 'currentColor', size = 24, title = "photocrowd", ...others}, ref) { - const Photocrowd = React.forwardRef(function Photocrowd({color = 'currentColor', size = 24, title = "photocrowd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Photocrowd - \ No newline at end of file +export default Photocrowd; diff --git a/src/components/Photopea.tsx b/src/components/Photopea.tsx index 2b255d10b..c548082e3 100644 --- a/src/components/Photopea.tsx +++ b/src/components/Photopea.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PhotopeaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PhotopeaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Photopea = React.forwardRef(function Photopea({color = 'currentColor', size = 24, title = "photopea", ...others}, ref) { - const Photopea = React.forwardRef(function Photopea({color = 'currentColor', size = 24, title = "photopea", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Photopea - \ No newline at end of file +export default Photopea; diff --git a/src/components/Php.tsx b/src/components/Php.tsx index cfed6a159..0523a6a69 100644 --- a/src/components/Php.tsx +++ b/src/components/Php.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PhpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PhpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Php = React.forwardRef(function Php({color = 'currentColor', size = 24, title = "php", ...others}, ref) { - const Php = React.forwardRef(function Php({color = 'currentColor', size = 24, title = "php", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Php - \ No newline at end of file +export default Php; diff --git a/src/components/Phpmyadmin.tsx b/src/components/Phpmyadmin.tsx index 764fb97b7..e4105988f 100644 --- a/src/components/Phpmyadmin.tsx +++ b/src/components/Phpmyadmin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PhpmyadminProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PhpmyadminProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Phpmyadmin = React.forwardRef(function Phpmyadmin({color = 'currentColor', size = 24, title = "phpmyadmin", ...others}, ref) { - const Phpmyadmin = React.forwardRef(function Phpmyadmin({color = 'currentColor', size = 24, title = "phpmyadmin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Phpmyadmin - \ No newline at end of file +export default Phpmyadmin; diff --git a/src/components/Phpstorm.tsx b/src/components/Phpstorm.tsx index 3296bc738..5c6a30039 100644 --- a/src/components/Phpstorm.tsx +++ b/src/components/Phpstorm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PhpstormProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PhpstormProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Phpstorm = React.forwardRef(function Phpstorm({color = 'currentColor', size = 24, title = "phpstorm", ...others}, ref) { - const Phpstorm = React.forwardRef(function Phpstorm({color = 'currentColor', size = 24, title = "phpstorm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Phpstorm - \ No newline at end of file +export default Phpstorm; diff --git a/src/components/Picardsurgeles.tsx b/src/components/Picardsurgeles.tsx index f59486127..113dfdf67 100644 --- a/src/components/Picardsurgeles.tsx +++ b/src/components/Picardsurgeles.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PicardsurgelesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PicardsurgelesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Picardsurgeles = React.forwardRef(function Picardsurgeles({color = 'currentColor', size = 24, title = "picardsurgeles", ...others}, ref) { - const Picardsurgeles = React.forwardRef(function Picardsurgeles({color = 'currentColor', size = 24, title = "picardsurgeles", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Picardsurgeles - \ No newline at end of file +export default Picardsurgeles; diff --git a/src/components/Picartodottv.tsx b/src/components/Picartodottv.tsx index 713fe0421..1386e2a52 100644 --- a/src/components/Picartodottv.tsx +++ b/src/components/Picartodottv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PicartodottvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PicartodottvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Picartodottv = React.forwardRef(function Picartodottv({color = 'currentColor', size = 24, title = "picartodottv", ...others}, ref) { - const Picartodottv = React.forwardRef(function Picartodottv({color = 'currentColor', size = 24, title = "picartodottv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Picartodottv - \ No newline at end of file +export default Picartodottv; diff --git a/src/components/Picnic.tsx b/src/components/Picnic.tsx index d597b1d4b..7c325241d 100644 --- a/src/components/Picnic.tsx +++ b/src/components/Picnic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PicnicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PicnicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Picnic = React.forwardRef(function Picnic({color = 'currentColor', size = 24, title = "picnic", ...others}, ref) { - const Picnic = React.forwardRef(function Picnic({color = 'currentColor', size = 24, title = "picnic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Picnic - \ No newline at end of file +export default Picnic; diff --git a/src/components/Picpay.tsx b/src/components/Picpay.tsx index faf9f632a..c73db48cd 100644 --- a/src/components/Picpay.tsx +++ b/src/components/Picpay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PicpayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PicpayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Picpay = React.forwardRef(function Picpay({color = 'currentColor', size = 24, title = "picpay", ...others}, ref) { - const Picpay = React.forwardRef(function Picpay({color = 'currentColor', size = 24, title = "picpay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Picpay - \ No newline at end of file +export default Picpay; diff --git a/src/components/Pihole.tsx b/src/components/Pihole.tsx index 11ad96b27..3106f0372 100644 --- a/src/components/Pihole.tsx +++ b/src/components/Pihole.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PiholeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PiholeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pihole = React.forwardRef(function Pihole({color = 'currentColor', size = 24, title = "pihole", ...others}, ref) { - const Pihole = React.forwardRef(function Pihole({color = 'currentColor', size = 24, title = "pihole", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pihole - \ No newline at end of file +export default Pihole; diff --git a/src/components/Pimcore.tsx b/src/components/Pimcore.tsx index d1ce5b87e..f03ff4e5e 100644 --- a/src/components/Pimcore.tsx +++ b/src/components/Pimcore.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PimcoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PimcoreProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pimcore = React.forwardRef(function Pimcore({color = 'currentColor', size = 24, title = "pimcore", ...others}, ref) { - const Pimcore = React.forwardRef(function Pimcore({color = 'currentColor', size = 24, title = "pimcore", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pimcore - \ No newline at end of file +export default Pimcore; diff --git a/src/components/Pinboard.tsx b/src/components/Pinboard.tsx index 70336bd1c..bd3a41935 100644 --- a/src/components/Pinboard.tsx +++ b/src/components/Pinboard.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PinboardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PinboardProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pinboard = React.forwardRef(function Pinboard({color = 'currentColor', size = 24, title = "pinboard", ...others}, ref) { - const Pinboard = React.forwardRef(function Pinboard({color = 'currentColor', size = 24, title = "pinboard", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pinboard - \ No newline at end of file +export default Pinboard; diff --git a/src/components/Pingdom.tsx b/src/components/Pingdom.tsx index 1e0e09c8d..23b3d9008 100644 --- a/src/components/Pingdom.tsx +++ b/src/components/Pingdom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PingdomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PingdomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pingdom = React.forwardRef(function Pingdom({color = 'currentColor', size = 24, title = "pingdom", ...others}, ref) { - const Pingdom = React.forwardRef(function Pingdom({color = 'currentColor', size = 24, title = "pingdom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pingdom - \ No newline at end of file +export default Pingdom; diff --git a/src/components/Pinterest.tsx b/src/components/Pinterest.tsx index 4ef5c944c..39e03b59f 100644 --- a/src/components/Pinterest.tsx +++ b/src/components/Pinterest.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PinterestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PinterestProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pinterest = React.forwardRef(function Pinterest({color = 'currentColor', size = 24, title = "pinterest", ...others}, ref) { - const Pinterest = React.forwardRef(function Pinterest({color = 'currentColor', size = 24, title = "pinterest", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pinterest - \ No newline at end of file +export default Pinterest; diff --git a/src/components/Pioneerdj.tsx b/src/components/Pioneerdj.tsx index 9b9c82371..07222c09a 100644 --- a/src/components/Pioneerdj.tsx +++ b/src/components/Pioneerdj.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PioneerdjProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PioneerdjProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pioneerdj = React.forwardRef(function Pioneerdj({color = 'currentColor', size = 24, title = "pioneerdj", ...others}, ref) { - const Pioneerdj = React.forwardRef(function Pioneerdj({color = 'currentColor', size = 24, title = "pioneerdj", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pioneerdj - \ No newline at end of file +export default Pioneerdj; diff --git a/src/components/Pivotaltracker.tsx b/src/components/Pivotaltracker.tsx index 35b945f18..63292b7a2 100644 --- a/src/components/Pivotaltracker.tsx +++ b/src/components/Pivotaltracker.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PivotaltrackerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PivotaltrackerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pivotaltracker = React.forwardRef(function Pivotaltracker({color = 'currentColor', size = 24, title = "pivotaltracker", ...others}, ref) { - const Pivotaltracker = React.forwardRef(function Pivotaltracker({color = 'currentColor', size = 24, title = "pivotaltracker", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pivotaltracker - \ No newline at end of file +export default Pivotaltracker; diff --git a/src/components/Piwigo.tsx b/src/components/Piwigo.tsx index 5b6a9528e..21790fb58 100644 --- a/src/components/Piwigo.tsx +++ b/src/components/Piwigo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PiwigoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PiwigoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Piwigo = React.forwardRef(function Piwigo({color = 'currentColor', size = 24, title = "piwigo", ...others}, ref) { - const Piwigo = React.forwardRef(function Piwigo({color = 'currentColor', size = 24, title = "piwigo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Piwigo - \ No newline at end of file +export default Piwigo; diff --git a/src/components/Pix.tsx b/src/components/Pix.tsx index 864450c56..61bba895d 100644 --- a/src/components/Pix.tsx +++ b/src/components/Pix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pix = React.forwardRef(function Pix({color = 'currentColor', size = 24, title = "pix", ...others}, ref) { - const Pix = React.forwardRef(function Pix({color = 'currentColor', size = 24, title = "pix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pix - \ No newline at end of file +export default Pix; diff --git a/src/components/Pixabay.tsx b/src/components/Pixabay.tsx index 86d202962..9dd65a1eb 100644 --- a/src/components/Pixabay.tsx +++ b/src/components/Pixabay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PixabayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PixabayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pixabay = React.forwardRef(function Pixabay({color = 'currentColor', size = 24, title = "pixabay", ...others}, ref) { - const Pixabay = React.forwardRef(function Pixabay({color = 'currentColor', size = 24, title = "pixabay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pixabay - \ No newline at end of file +export default Pixabay; diff --git a/src/components/Pixiv.tsx b/src/components/Pixiv.tsx index b3b3b2829..02a7a7577 100644 --- a/src/components/Pixiv.tsx +++ b/src/components/Pixiv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PixivProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PixivProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pixiv = React.forwardRef(function Pixiv({color = 'currentColor', size = 24, title = "pixiv", ...others}, ref) { - const Pixiv = React.forwardRef(function Pixiv({color = 'currentColor', size = 24, title = "pixiv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pixiv - \ No newline at end of file +export default Pixiv; diff --git a/src/components/Pkgsrc.tsx b/src/components/Pkgsrc.tsx index b2af9713c..893bbe191 100644 --- a/src/components/Pkgsrc.tsx +++ b/src/components/Pkgsrc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PkgsrcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PkgsrcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pkgsrc = React.forwardRef(function Pkgsrc({color = 'currentColor', size = 24, title = "pkgsrc", ...others}, ref) { - const Pkgsrc = React.forwardRef(function Pkgsrc({color = 'currentColor', size = 24, title = "pkgsrc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pkgsrc - \ No newline at end of file +export default Pkgsrc; diff --git a/src/components/Planet.tsx b/src/components/Planet.tsx index 056c357ad..aa4b5d8ed 100644 --- a/src/components/Planet.tsx +++ b/src/components/Planet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlanetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlanetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Planet = React.forwardRef(function Planet({color = 'currentColor', size = 24, title = "planet", ...others}, ref) { - const Planet = React.forwardRef(function Planet({color = 'currentColor', size = 24, title = "planet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Planet - \ No newline at end of file +export default Planet; diff --git a/src/components/Planetscale.tsx b/src/components/Planetscale.tsx index 57da66c69..39db17590 100644 --- a/src/components/Planetscale.tsx +++ b/src/components/Planetscale.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlanetscaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlanetscaleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Planetscale = React.forwardRef(function Planetscale({color = 'currentColor', size = 24, title = "planetscale", ...others}, ref) { - const Planetscale = React.forwardRef(function Planetscale({color = 'currentColor', size = 24, title = "planetscale", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Planetscale - \ No newline at end of file +export default Planetscale; diff --git a/src/components/Plangrid.tsx b/src/components/Plangrid.tsx index aa0131d42..93700c044 100644 --- a/src/components/Plangrid.tsx +++ b/src/components/Plangrid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlangridProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlangridProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Plangrid = React.forwardRef(function Plangrid({color = 'currentColor', size = 24, title = "plangrid", ...others}, ref) { - const Plangrid = React.forwardRef(function Plangrid({color = 'currentColor', size = 24, title = "plangrid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Plangrid - \ No newline at end of file +export default Plangrid; diff --git a/src/components/Platformdotsh.tsx b/src/components/Platformdotsh.tsx index e2b5761e3..8c7aa1b67 100644 --- a/src/components/Platformdotsh.tsx +++ b/src/components/Platformdotsh.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlatformdotshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlatformdotshProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Platformdotsh = React.forwardRef(function Platformdotsh({color = 'currentColor', size = 24, title = "platformdotsh", ...others}, ref) { - const Platformdotsh = React.forwardRef(function Platformdotsh({color = 'currentColor', size = 24, title = "platformdotsh", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Platformdotsh - \ No newline at end of file +export default Platformdotsh; diff --git a/src/components/Platzi.tsx b/src/components/Platzi.tsx index db6230d9c..aa8179f0a 100644 --- a/src/components/Platzi.tsx +++ b/src/components/Platzi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlatziProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlatziProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Platzi = React.forwardRef(function Platzi({color = 'currentColor', size = 24, title = "platzi", ...others}, ref) { - const Platzi = React.forwardRef(function Platzi({color = 'currentColor', size = 24, title = "platzi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Platzi - \ No newline at end of file +export default Platzi; diff --git a/src/components/Plausibleanalytics.tsx b/src/components/Plausibleanalytics.tsx index 178d7646b..91edf6e2a 100644 --- a/src/components/Plausibleanalytics.tsx +++ b/src/components/Plausibleanalytics.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlausibleanalyticsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlausibleanalyticsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Plausibleanalytics = React.forwardRef(function Plausibleanalytics({color = 'currentColor', size = 24, title = "plausibleanalytics", ...others}, ref) { - const Plausibleanalytics = React.forwardRef(function Plausibleanalytics({color = 'currentColor', size = 24, title = "plausibleanalytics", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Plausibleanalytics - \ No newline at end of file +export default Plausibleanalytics; diff --git a/src/components/Playcanvas.tsx b/src/components/Playcanvas.tsx index a3f792ea8..bbc50697e 100644 --- a/src/components/Playcanvas.tsx +++ b/src/components/Playcanvas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlaycanvasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlaycanvasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Playcanvas = React.forwardRef(function Playcanvas({color = 'currentColor', size = 24, title = "playcanvas", ...others}, ref) { - const Playcanvas = React.forwardRef(function Playcanvas({color = 'currentColor', size = 24, title = "playcanvas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Playcanvas - \ No newline at end of file +export default Playcanvas; diff --git a/src/components/Playerdotme.tsx b/src/components/Playerdotme.tsx index 9524096e7..5eec09f2c 100644 --- a/src/components/Playerdotme.tsx +++ b/src/components/Playerdotme.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlayerdotmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlayerdotmeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Playerdotme = React.forwardRef(function Playerdotme({color = 'currentColor', size = 24, title = "playerdotme", ...others}, ref) { - const Playerdotme = React.forwardRef(function Playerdotme({color = 'currentColor', size = 24, title = "playerdotme", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Playerdotme - \ No newline at end of file +export default Playerdotme; diff --git a/src/components/Playerfm.tsx b/src/components/Playerfm.tsx index 2f3b196e7..b437b7a1d 100644 --- a/src/components/Playerfm.tsx +++ b/src/components/Playerfm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlayerfmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlayerfmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Playerfm = React.forwardRef(function Playerfm({color = 'currentColor', size = 24, title = "playerfm", ...others}, ref) { - const Playerfm = React.forwardRef(function Playerfm({color = 'currentColor', size = 24, title = "playerfm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Playerfm - \ No newline at end of file +export default Playerfm; diff --git a/src/components/Playstation.tsx b/src/components/Playstation.tsx index 920932c02..93a83fa12 100644 --- a/src/components/Playstation.tsx +++ b/src/components/Playstation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlaystationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlaystationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Playstation = React.forwardRef(function Playstation({color = 'currentColor', size = 24, title = "playstation", ...others}, ref) { - const Playstation = React.forwardRef(function Playstation({color = 'currentColor', size = 24, title = "playstation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Playstation - \ No newline at end of file +export default Playstation; diff --git a/src/components/Playstation5.tsx b/src/components/Playstation5.tsx index 9949626c3..aadb2dffa 100644 --- a/src/components/Playstation5.tsx +++ b/src/components/Playstation5.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Playstation5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Playstation5Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Playstation5 = React.forwardRef(function Playstation5({color = 'currentColor', size = 24, title = "playstation5", ...others}, ref) { - const Playstation5 = React.forwardRef(function Playstation5({color = 'currentColor', size = 24, title = "playstation5", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Playstation5 - \ No newline at end of file +export default Playstation5; diff --git a/src/components/PlaystationFour.tsx b/src/components/PlaystationFour.tsx index c565d6b97..960fb5b0b 100644 --- a/src/components/PlaystationFour.tsx +++ b/src/components/PlaystationFour.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlaystationFourProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlaystationFourProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const PlaystationFour = React.forwardRef(function PlaystationFour({color = 'currentColor', size = 24, title = "playstation4", ...others}, ref) { - const PlaystationFour = React.forwardRef(function PlaystationFour({color = 'currentColor', size = 24, title = "playstation4", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default PlaystationFour - \ No newline at end of file +export default PlaystationFour; diff --git a/src/components/PlaystationThree.tsx b/src/components/PlaystationThree.tsx index ace2956d2..0ac59690c 100644 --- a/src/components/PlaystationThree.tsx +++ b/src/components/PlaystationThree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlaystationThreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlaystationThreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const PlaystationThree = React.forwardRef(function PlaystationThree({color = 'currentColor', size = 24, title = "playstation3", ...others}, ref) { - const PlaystationThree = React.forwardRef(function PlaystationThree({color = 'currentColor', size = 24, title = "playstation3", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default PlaystationThree - \ No newline at end of file +export default PlaystationThree; diff --git a/src/components/PlaystationTwo.tsx b/src/components/PlaystationTwo.tsx index 5a4838249..e6559cdff 100644 --- a/src/components/PlaystationTwo.tsx +++ b/src/components/PlaystationTwo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlaystationTwoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlaystationTwoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const PlaystationTwo = React.forwardRef(function PlaystationTwo({color = 'currentColor', size = 24, title = "playstation2", ...others}, ref) { - const PlaystationTwo = React.forwardRef(function PlaystationTwo({color = 'currentColor', size = 24, title = "playstation2", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default PlaystationTwo - \ No newline at end of file +export default PlaystationTwo; diff --git a/src/components/Playstationvita.tsx b/src/components/Playstationvita.tsx index 6125877ea..84a708c62 100644 --- a/src/components/Playstationvita.tsx +++ b/src/components/Playstationvita.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlaystationvitaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlaystationvitaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Playstationvita = React.forwardRef(function Playstationvita({color = 'currentColor', size = 24, title = "playstationvita", ...others}, ref) { - const Playstationvita = React.forwardRef(function Playstationvita({color = 'currentColor', size = 24, title = "playstationvita", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Playstationvita - \ No newline at end of file +export default Playstationvita; diff --git a/src/components/Playwright.tsx b/src/components/Playwright.tsx index 8965308ab..ec1f8863c 100644 --- a/src/components/Playwright.tsx +++ b/src/components/Playwright.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlaywrightProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlaywrightProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Playwright = React.forwardRef(function Playwright({color = 'currentColor', size = 24, title = "playwright", ...others}, ref) { - const Playwright = React.forwardRef(function Playwright({color = 'currentColor', size = 24, title = "playwright", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Playwright - \ No newline at end of file +export default Playwright; diff --git a/src/components/Pleroma.tsx b/src/components/Pleroma.tsx index 9866229ec..26c3d42e6 100644 --- a/src/components/Pleroma.tsx +++ b/src/components/Pleroma.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PleromaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PleromaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pleroma = React.forwardRef(function Pleroma({color = 'currentColor', size = 24, title = "pleroma", ...others}, ref) { - const Pleroma = React.forwardRef(function Pleroma({color = 'currentColor', size = 24, title = "pleroma", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pleroma - \ No newline at end of file +export default Pleroma; diff --git a/src/components/Plesk.tsx b/src/components/Plesk.tsx index 49a3c6b46..49a56b4ff 100644 --- a/src/components/Plesk.tsx +++ b/src/components/Plesk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PleskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PleskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Plesk = React.forwardRef(function Plesk({color = 'currentColor', size = 24, title = "plesk", ...others}, ref) { - const Plesk = React.forwardRef(function Plesk({color = 'currentColor', size = 24, title = "plesk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Plesk - \ No newline at end of file +export default Plesk; diff --git a/src/components/Plex.tsx b/src/components/Plex.tsx index 57c851667..9caf3c2dd 100644 --- a/src/components/Plex.tsx +++ b/src/components/Plex.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlexProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Plex = React.forwardRef(function Plex({color = 'currentColor', size = 24, title = "plex", ...others}, ref) { - const Plex = React.forwardRef(function Plex({color = 'currentColor', size = 24, title = "plex", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Plex - \ No newline at end of file +export default Plex; diff --git a/src/components/Plotly.tsx b/src/components/Plotly.tsx index cdad8cab2..a7783be5e 100644 --- a/src/components/Plotly.tsx +++ b/src/components/Plotly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlotlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlotlyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Plotly = React.forwardRef(function Plotly({color = 'currentColor', size = 24, title = "plotly", ...others}, ref) { - const Plotly = React.forwardRef(function Plotly({color = 'currentColor', size = 24, title = "plotly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Plotly - \ No newline at end of file +export default Plotly; diff --git a/src/components/Pluralsight.tsx b/src/components/Pluralsight.tsx index 1bcd228c6..47d81cea5 100644 --- a/src/components/Pluralsight.tsx +++ b/src/components/Pluralsight.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PluralsightProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PluralsightProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pluralsight = React.forwardRef(function Pluralsight({color = 'currentColor', size = 24, title = "pluralsight", ...others}, ref) { - const Pluralsight = React.forwardRef(function Pluralsight({color = 'currentColor', size = 24, title = "pluralsight", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pluralsight - \ No newline at end of file +export default Pluralsight; diff --git a/src/components/Plurk.tsx b/src/components/Plurk.tsx index 11f455bc8..1f55c8222 100644 --- a/src/components/Plurk.tsx +++ b/src/components/Plurk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PlurkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PlurkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Plurk = React.forwardRef(function Plurk({color = 'currentColor', size = 24, title = "plurk", ...others}, ref) { - const Plurk = React.forwardRef(function Plurk({color = 'currentColor', size = 24, title = "plurk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Plurk - \ No newline at end of file +export default Plurk; diff --git a/src/components/Pluscodes.tsx b/src/components/Pluscodes.tsx index c27682f86..08f68d2b9 100644 --- a/src/components/Pluscodes.tsx +++ b/src/components/Pluscodes.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PluscodesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PluscodesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pluscodes = React.forwardRef(function Pluscodes({color = 'currentColor', size = 24, title = "pluscodes", ...others}, ref) { - const Pluscodes = React.forwardRef(function Pluscodes({color = 'currentColor', size = 24, title = "pluscodes", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pluscodes - \ No newline at end of file +export default Pluscodes; diff --git a/src/components/PmTwo.tsx b/src/components/PmTwo.tsx index 257b6b618..d378ae3ed 100644 --- a/src/components/PmTwo.tsx +++ b/src/components/PmTwo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PmTwoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PmTwoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const PmTwo = React.forwardRef(function PmTwo({color = 'currentColor', size = 24, title = "pm2", ...others}, ref) { - const PmTwo = React.forwardRef(function PmTwo({color = 'currentColor', size = 24, title = "pm2", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default PmTwo - \ No newline at end of file +export default PmTwo; diff --git a/src/components/Pnpm.tsx b/src/components/Pnpm.tsx index 3d382477f..757595d2b 100644 --- a/src/components/Pnpm.tsx +++ b/src/components/Pnpm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PnpmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PnpmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pnpm = React.forwardRef(function Pnpm({color = 'currentColor', size = 24, title = "pnpm", ...others}, ref) { - const Pnpm = React.forwardRef(function Pnpm({color = 'currentColor', size = 24, title = "pnpm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pnpm - \ No newline at end of file +export default Pnpm; diff --git a/src/components/Pocket.tsx b/src/components/Pocket.tsx index 0ecd18a6d..0afd847b2 100644 --- a/src/components/Pocket.tsx +++ b/src/components/Pocket.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PocketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PocketProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pocket = React.forwardRef(function Pocket({color = 'currentColor', size = 24, title = "pocket", ...others}, ref) { - const Pocket = React.forwardRef(function Pocket({color = 'currentColor', size = 24, title = "pocket", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pocket - \ No newline at end of file +export default Pocket; diff --git a/src/components/Pocketbase.tsx b/src/components/Pocketbase.tsx index 80a507199..dcf88da20 100644 --- a/src/components/Pocketbase.tsx +++ b/src/components/Pocketbase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PocketbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PocketbaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pocketbase = React.forwardRef(function Pocketbase({color = 'currentColor', size = 24, title = "pocketbase", ...others}, ref) { - const Pocketbase = React.forwardRef(function Pocketbase({color = 'currentColor', size = 24, title = "pocketbase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pocketbase - \ No newline at end of file +export default Pocketbase; diff --git a/src/components/Pocketcasts.tsx b/src/components/Pocketcasts.tsx index 92707261f..1a381738d 100644 --- a/src/components/Pocketcasts.tsx +++ b/src/components/Pocketcasts.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PocketcastsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PocketcastsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pocketcasts = React.forwardRef(function Pocketcasts({color = 'currentColor', size = 24, title = "pocketcasts", ...others}, ref) { - const Pocketcasts = React.forwardRef(function Pocketcasts({color = 'currentColor', size = 24, title = "pocketcasts", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pocketcasts - \ No newline at end of file +export default Pocketcasts; diff --git a/src/components/Podcastaddict.tsx b/src/components/Podcastaddict.tsx index aea4bd35d..1bb12801b 100644 --- a/src/components/Podcastaddict.tsx +++ b/src/components/Podcastaddict.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PodcastaddictProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PodcastaddictProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Podcastaddict = React.forwardRef(function Podcastaddict({color = 'currentColor', size = 24, title = "podcastaddict", ...others}, ref) { - const Podcastaddict = React.forwardRef(function Podcastaddict({color = 'currentColor', size = 24, title = "podcastaddict", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Podcastaddict - \ No newline at end of file +export default Podcastaddict; diff --git a/src/components/Podman.tsx b/src/components/Podman.tsx index 216a2d2b1..05c8be135 100644 --- a/src/components/Podman.tsx +++ b/src/components/Podman.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PodmanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PodmanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Podman = React.forwardRef(function Podman({color = 'currentColor', size = 24, title = "podman", ...others}, ref) { - const Podman = React.forwardRef(function Podman({color = 'currentColor', size = 24, title = "podman", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Podman - \ No newline at end of file +export default Podman; diff --git a/src/components/Poetry.tsx b/src/components/Poetry.tsx index 7f5ab5558..05802eb98 100644 --- a/src/components/Poetry.tsx +++ b/src/components/Poetry.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PoetryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PoetryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Poetry = React.forwardRef(function Poetry({color = 'currentColor', size = 24, title = "poetry", ...others}, ref) { - const Poetry = React.forwardRef(function Poetry({color = 'currentColor', size = 24, title = "poetry", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Poetry - \ No newline at end of file +export default Poetry; diff --git a/src/components/Pointy.tsx b/src/components/Pointy.tsx index a4d7a96be..1ac293c4d 100644 --- a/src/components/Pointy.tsx +++ b/src/components/Pointy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PointyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PointyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pointy = React.forwardRef(function Pointy({color = 'currentColor', size = 24, title = "pointy", ...others}, ref) { - const Pointy = React.forwardRef(function Pointy({color = 'currentColor', size = 24, title = "pointy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pointy - \ No newline at end of file +export default Pointy; diff --git a/src/components/Pokemon.tsx b/src/components/Pokemon.tsx index 18f68e7eb..8ee91f0ff 100644 --- a/src/components/Pokemon.tsx +++ b/src/components/Pokemon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PokemonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PokemonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pokemon = React.forwardRef(function Pokemon({color = 'currentColor', size = 24, title = "pokemon", ...others}, ref) { - const Pokemon = React.forwardRef(function Pokemon({color = 'currentColor', size = 24, title = "pokemon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pokemon - \ No newline at end of file +export default Pokemon; diff --git a/src/components/Polkadot.tsx b/src/components/Polkadot.tsx index 9bf4fa8f2..6c02e150f 100644 --- a/src/components/Polkadot.tsx +++ b/src/components/Polkadot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PolkadotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PolkadotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Polkadot = React.forwardRef(function Polkadot({color = 'currentColor', size = 24, title = "polkadot", ...others}, ref) { - const Polkadot = React.forwardRef(function Polkadot({color = 'currentColor', size = 24, title = "polkadot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Polkadot - \ No newline at end of file +export default Polkadot; diff --git a/src/components/Poly.tsx b/src/components/Poly.tsx index 3277563b1..e08e64895 100644 --- a/src/components/Poly.tsx +++ b/src/components/Poly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PolyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PolyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Poly = React.forwardRef(function Poly({color = 'currentColor', size = 24, title = "poly", ...others}, ref) { - const Poly = React.forwardRef(function Poly({color = 'currentColor', size = 24, title = "poly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Poly - \ No newline at end of file +export default Poly; diff --git a/src/components/Polymerproject.tsx b/src/components/Polymerproject.tsx index a00a84db0..789296709 100644 --- a/src/components/Polymerproject.tsx +++ b/src/components/Polymerproject.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PolymerprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PolymerprojectProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Polymerproject = React.forwardRef(function Polymerproject({color = 'currentColor', size = 24, title = "polymerproject", ...others}, ref) { - const Polymerproject = React.forwardRef(function Polymerproject({color = 'currentColor', size = 24, title = "polymerproject", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Polymerproject - \ No newline at end of file +export default Polymerproject; diff --git a/src/components/Polywork.tsx b/src/components/Polywork.tsx index d1eb0809e..28d3ce729 100644 --- a/src/components/Polywork.tsx +++ b/src/components/Polywork.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PolyworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PolyworkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Polywork = React.forwardRef(function Polywork({color = 'currentColor', size = 24, title = "polywork", ...others}, ref) { - const Polywork = React.forwardRef(function Polywork({color = 'currentColor', size = 24, title = "polywork", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Polywork - \ No newline at end of file +export default Polywork; diff --git a/src/components/Popos.tsx b/src/components/Popos.tsx index bc17529d9..7ed599a56 100644 --- a/src/components/Popos.tsx +++ b/src/components/Popos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PoposProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PoposProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Popos = React.forwardRef(function Popos({color = 'currentColor', size = 24, title = "popos", ...others}, ref) { - const Popos = React.forwardRef(function Popos({color = 'currentColor', size = 24, title = "popos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Popos - \ No newline at end of file +export default Popos; diff --git a/src/components/Porsche.tsx b/src/components/Porsche.tsx index 9cb999da0..b7b251244 100644 --- a/src/components/Porsche.tsx +++ b/src/components/Porsche.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PorscheProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PorscheProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Porsche = React.forwardRef(function Porsche({color = 'currentColor', size = 24, title = "porsche", ...others}, ref) { - const Porsche = React.forwardRef(function Porsche({color = 'currentColor', size = 24, title = "porsche", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Porsche - \ No newline at end of file +export default Porsche; diff --git a/src/components/Portainer.tsx b/src/components/Portainer.tsx index 745247dcc..8d7edff7b 100644 --- a/src/components/Portainer.tsx +++ b/src/components/Portainer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PortainerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PortainerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Portainer = React.forwardRef(function Portainer({color = 'currentColor', size = 24, title = "portainer", ...others}, ref) { - const Portainer = React.forwardRef(function Portainer({color = 'currentColor', size = 24, title = "portainer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Portainer - \ No newline at end of file +export default Portainer; diff --git a/src/components/Postcss.tsx b/src/components/Postcss.tsx index d393eda61..275b5881a 100644 --- a/src/components/Postcss.tsx +++ b/src/components/Postcss.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PostcssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PostcssProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Postcss = React.forwardRef(function Postcss({color = 'currentColor', size = 24, title = "postcss", ...others}, ref) { - const Postcss = React.forwardRef(function Postcss({color = 'currentColor', size = 24, title = "postcss", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Postcss - \ No newline at end of file +export default Postcss; diff --git a/src/components/Postgresql.tsx b/src/components/Postgresql.tsx index fb44a9d79..e4a3b778b 100644 --- a/src/components/Postgresql.tsx +++ b/src/components/Postgresql.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PostgresqlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PostgresqlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Postgresql = React.forwardRef(function Postgresql({color = 'currentColor', size = 24, title = "postgresql", ...others}, ref) { - const Postgresql = React.forwardRef(function Postgresql({color = 'currentColor', size = 24, title = "postgresql", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Postgresql - \ No newline at end of file +export default Postgresql; diff --git a/src/components/Postman.tsx b/src/components/Postman.tsx index 339cdafab..9698d839b 100644 --- a/src/components/Postman.tsx +++ b/src/components/Postman.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PostmanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PostmanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Postman = React.forwardRef(function Postman({color = 'currentColor', size = 24, title = "postman", ...others}, ref) { - const Postman = React.forwardRef(function Postman({color = 'currentColor', size = 24, title = "postman", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Postman - \ No newline at end of file +export default Postman; diff --git a/src/components/Postmates.tsx b/src/components/Postmates.tsx index e1b42ba15..a4c6b5a8a 100644 --- a/src/components/Postmates.tsx +++ b/src/components/Postmates.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PostmatesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PostmatesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Postmates = React.forwardRef(function Postmates({color = 'currentColor', size = 24, title = "postmates", ...others}, ref) { - const Postmates = React.forwardRef(function Postmates({color = 'currentColor', size = 24, title = "postmates", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Postmates - \ No newline at end of file +export default Postmates; diff --git a/src/components/Powerapps.tsx b/src/components/Powerapps.tsx index 61afea96e..fac572971 100644 --- a/src/components/Powerapps.tsx +++ b/src/components/Powerapps.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PowerappsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PowerappsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Powerapps = React.forwardRef(function Powerapps({color = 'currentColor', size = 24, title = "powerapps", ...others}, ref) { - const Powerapps = React.forwardRef(function Powerapps({color = 'currentColor', size = 24, title = "powerapps", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Powerapps - \ No newline at end of file +export default Powerapps; diff --git a/src/components/Powerautomate.tsx b/src/components/Powerautomate.tsx index cc302aa74..e3cb696d7 100644 --- a/src/components/Powerautomate.tsx +++ b/src/components/Powerautomate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PowerautomateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PowerautomateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Powerautomate = React.forwardRef(function Powerautomate({color = 'currentColor', size = 24, title = "powerautomate", ...others}, ref) { - const Powerautomate = React.forwardRef(function Powerautomate({color = 'currentColor', size = 24, title = "powerautomate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Powerautomate - \ No newline at end of file +export default Powerautomate; diff --git a/src/components/Powerbi.tsx b/src/components/Powerbi.tsx index 0976f1345..5666b7219 100644 --- a/src/components/Powerbi.tsx +++ b/src/components/Powerbi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PowerbiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PowerbiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Powerbi = React.forwardRef(function Powerbi({color = 'currentColor', size = 24, title = "powerbi", ...others}, ref) { - const Powerbi = React.forwardRef(function Powerbi({color = 'currentColor', size = 24, title = "powerbi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Powerbi - \ No newline at end of file +export default Powerbi; diff --git a/src/components/Powerfx.tsx b/src/components/Powerfx.tsx new file mode 100644 index 000000000..8eafd6122 --- /dev/null +++ b/src/components/Powerfx.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type PowerfxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Powerfx = React.forwardRef(function Powerfx({color = 'currentColor', size = 24, title = "powerfx", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Powerfx; diff --git a/src/components/Powerpages.tsx b/src/components/Powerpages.tsx new file mode 100644 index 000000000..70aa9b0cc --- /dev/null +++ b/src/components/Powerpages.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type PowerpagesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Powerpages = React.forwardRef(function Powerpages({color = 'currentColor', size = 24, title = "powerpages", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Powerpages; diff --git a/src/components/Powers.tsx b/src/components/Powers.tsx index 7296f0e2a..7cdcb9bf4 100644 --- a/src/components/Powers.tsx +++ b/src/components/Powers.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PowersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PowersProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Powers = React.forwardRef(function Powers({color = 'currentColor', size = 24, title = "powers", ...others}, ref) { - const Powers = React.forwardRef(function Powers({color = 'currentColor', size = 24, title = "powers", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Powers - \ No newline at end of file +export default Powers; diff --git a/src/components/Powershell.tsx b/src/components/Powershell.tsx index d9d3aac4a..8eb1aefb3 100644 --- a/src/components/Powershell.tsx +++ b/src/components/Powershell.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PowershellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PowershellProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Powershell = React.forwardRef(function Powershell({color = 'currentColor', size = 24, title = "powershell", ...others}, ref) { - const Powershell = React.forwardRef(function Powershell({color = 'currentColor', size = 24, title = "powershell", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Powershell - \ No newline at end of file +export default Powershell; diff --git a/src/components/Powervirtualagents.tsx b/src/components/Powervirtualagents.tsx index a9116a447..f5ce2197f 100644 --- a/src/components/Powervirtualagents.tsx +++ b/src/components/Powervirtualagents.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PowervirtualagentsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PowervirtualagentsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Powervirtualagents = React.forwardRef(function Powervirtualagents({color = 'currentColor', size = 24, title = "powervirtualagents", ...others}, ref) { - const Powervirtualagents = React.forwardRef(function Powervirtualagents({color = 'currentColor', size = 24, title = "powervirtualagents", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Powervirtualagents - \ No newline at end of file +export default Powervirtualagents; diff --git a/src/components/Prdotco.tsx b/src/components/Prdotco.tsx index be14c0036..32f63eddd 100644 --- a/src/components/Prdotco.tsx +++ b/src/components/Prdotco.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrdotcoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrdotcoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Prdotco = React.forwardRef(function Prdotco({color = 'currentColor', size = 24, title = "prdotco", ...others}, ref) { - const Prdotco = React.forwardRef(function Prdotco({color = 'currentColor', size = 24, title = "prdotco", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Prdotco - \ No newline at end of file +export default Prdotco; diff --git a/src/components/Preact.tsx b/src/components/Preact.tsx index 1e2a8f285..7bfe2282f 100644 --- a/src/components/Preact.tsx +++ b/src/components/Preact.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PreactProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PreactProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Preact = React.forwardRef(function Preact({color = 'currentColor', size = 24, title = "preact", ...others}, ref) { - const Preact = React.forwardRef(function Preact({color = 'currentColor', size = 24, title = "preact", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Preact - \ No newline at end of file +export default Preact; diff --git a/src/components/Precommit.tsx b/src/components/Precommit.tsx index 4efe16ce8..a4f5184c4 100644 --- a/src/components/Precommit.tsx +++ b/src/components/Precommit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrecommitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrecommitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Precommit = React.forwardRef(function Precommit({color = 'currentColor', size = 24, title = "precommit", ...others}, ref) { - const Precommit = React.forwardRef(function Precommit({color = 'currentColor', size = 24, title = "precommit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Precommit - \ No newline at end of file +export default Precommit; diff --git a/src/components/Premierleague.tsx b/src/components/Premierleague.tsx index a595dc976..d4da7c9f5 100644 --- a/src/components/Premierleague.tsx +++ b/src/components/Premierleague.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PremierleagueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PremierleagueProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Premierleague = React.forwardRef(function Premierleague({color = 'currentColor', size = 24, title = "premierleague", ...others}, ref) { - const Premierleague = React.forwardRef(function Premierleague({color = 'currentColor', size = 24, title = "premierleague", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Premierleague - \ No newline at end of file +export default Premierleague; diff --git a/src/components/Prestashop.tsx b/src/components/Prestashop.tsx index 111002ca6..53c468efb 100644 --- a/src/components/Prestashop.tsx +++ b/src/components/Prestashop.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrestashopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrestashopProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Prestashop = React.forwardRef(function Prestashop({color = 'currentColor', size = 24, title = "prestashop", ...others}, ref) { - const Prestashop = React.forwardRef(function Prestashop({color = 'currentColor', size = 24, title = "prestashop", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Prestashop - \ No newline at end of file +export default Prestashop; diff --git a/src/components/Presto.tsx b/src/components/Presto.tsx index b94c93a91..d57df15d1 100644 --- a/src/components/Presto.tsx +++ b/src/components/Presto.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrestoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrestoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Presto = React.forwardRef(function Presto({color = 'currentColor', size = 24, title = "presto", ...others}, ref) { - const Presto = React.forwardRef(function Presto({color = 'currentColor', size = 24, title = "presto", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Presto - \ No newline at end of file +export default Presto; diff --git a/src/components/Prettier.tsx b/src/components/Prettier.tsx index 909f43e0b..9f2d8a7f5 100644 --- a/src/components/Prettier.tsx +++ b/src/components/Prettier.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrettierProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrettierProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Prettier = React.forwardRef(function Prettier({color = 'currentColor', size = 24, title = "prettier", ...others}, ref) { - const Prettier = React.forwardRef(function Prettier({color = 'currentColor', size = 24, title = "prettier", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Prettier - \ No newline at end of file +export default Prettier; diff --git a/src/components/Prezi.tsx b/src/components/Prezi.tsx index 75277f321..02a617479 100644 --- a/src/components/Prezi.tsx +++ b/src/components/Prezi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PreziProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PreziProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Prezi = React.forwardRef(function Prezi({color = 'currentColor', size = 24, title = "prezi", ...others}, ref) { - const Prezi = React.forwardRef(function Prezi({color = 'currentColor', size = 24, title = "prezi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Prezi - \ No newline at end of file +export default Prezi; diff --git a/src/components/Prime.tsx b/src/components/Prime.tsx index 2dbd25bee..5ba559291 100644 --- a/src/components/Prime.tsx +++ b/src/components/Prime.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrimeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Prime = React.forwardRef(function Prime({color = 'currentColor', size = 24, title = "prime", ...others}, ref) { - const Prime = React.forwardRef(function Prime({color = 'currentColor', size = 24, title = "prime", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Prime - \ No newline at end of file +export default Prime; diff --git a/src/components/Primevideo.tsx b/src/components/Primevideo.tsx index 5839f7138..5f7377f0c 100644 --- a/src/components/Primevideo.tsx +++ b/src/components/Primevideo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrimevideoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrimevideoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Primevideo = React.forwardRef(function Primevideo({color = 'currentColor', size = 24, title = "primevideo", ...others}, ref) { - const Primevideo = React.forwardRef(function Primevideo({color = 'currentColor', size = 24, title = "primevideo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Primevideo - \ No newline at end of file +export default Primevideo; diff --git a/src/components/Prisma.tsx b/src/components/Prisma.tsx index 21dc39728..68b876f45 100644 --- a/src/components/Prisma.tsx +++ b/src/components/Prisma.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrismaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrismaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Prisma = React.forwardRef(function Prisma({color = 'currentColor', size = 24, title = "prisma", ...others}, ref) { - const Prisma = React.forwardRef(function Prisma({color = 'currentColor', size = 24, title = "prisma", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Prisma - \ No newline at end of file +export default Prisma; diff --git a/src/components/Prismic.tsx b/src/components/Prismic.tsx index 5f9db8698..928537891 100644 --- a/src/components/Prismic.tsx +++ b/src/components/Prismic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrismicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrismicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Prismic = React.forwardRef(function Prismic({color = 'currentColor', size = 24, title = "prismic", ...others}, ref) { - const Prismic = React.forwardRef(function Prismic({color = 'currentColor', size = 24, title = "prismic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Prismic - \ No newline at end of file +export default Prismic; diff --git a/src/components/Privateinternetaccess.tsx b/src/components/Privateinternetaccess.tsx index cf50a6484..c9ebb21c1 100644 --- a/src/components/Privateinternetaccess.tsx +++ b/src/components/Privateinternetaccess.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrivateinternetaccessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrivateinternetaccessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Privateinternetaccess = React.forwardRef(function Privateinternetaccess({color = 'currentColor', size = 24, title = "privateinternetaccess", ...others}, ref) { - const Privateinternetaccess = React.forwardRef(function Privateinternetaccess({color = 'currentColor', size = 24, title = "privateinternetaccess", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Privateinternetaccess - \ No newline at end of file +export default Privateinternetaccess; diff --git a/src/components/Probot.tsx b/src/components/Probot.tsx index 6ad2745d3..496c36c46 100644 --- a/src/components/Probot.tsx +++ b/src/components/Probot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProbotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProbotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Probot = React.forwardRef(function Probot({color = 'currentColor', size = 24, title = "probot", ...others}, ref) { - const Probot = React.forwardRef(function Probot({color = 'currentColor', size = 24, title = "probot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Probot - \ No newline at end of file +export default Probot; diff --git a/src/components/Processingfoundation.tsx b/src/components/Processingfoundation.tsx index 9fb860459..af851636c 100644 --- a/src/components/Processingfoundation.tsx +++ b/src/components/Processingfoundation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProcessingfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProcessingfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Processingfoundation = React.forwardRef(function Processingfoundation({color = 'currentColor', size = 24, title = "processingfoundation", ...others}, ref) { - const Processingfoundation = React.forwardRef(function Processingfoundation({color = 'currentColor', size = 24, title = "processingfoundation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Processingfoundation - \ No newline at end of file +export default Processingfoundation; diff --git a/src/components/Processwire.tsx b/src/components/Processwire.tsx index e9aa7a6d0..8f4e49b11 100644 --- a/src/components/Processwire.tsx +++ b/src/components/Processwire.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProcesswireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProcesswireProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Processwire = React.forwardRef(function Processwire({color = 'currentColor', size = 24, title = "processwire", ...others}, ref) { - const Processwire = React.forwardRef(function Processwire({color = 'currentColor', size = 24, title = "processwire", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Processwire - \ No newline at end of file +export default Processwire; diff --git a/src/components/Producthunt.tsx b/src/components/Producthunt.tsx index 6dcc00d51..d5c75ee94 100644 --- a/src/components/Producthunt.tsx +++ b/src/components/Producthunt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProducthuntProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProducthuntProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Producthunt = React.forwardRef(function Producthunt({color = 'currentColor', size = 24, title = "producthunt", ...others}, ref) { - const Producthunt = React.forwardRef(function Producthunt({color = 'currentColor', size = 24, title = "producthunt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Producthunt - \ No newline at end of file +export default Producthunt; diff --git a/src/components/Progate.tsx b/src/components/Progate.tsx index e22aff013..62f43feaa 100644 --- a/src/components/Progate.tsx +++ b/src/components/Progate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProgateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProgateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Progate = React.forwardRef(function Progate({color = 'currentColor', size = 24, title = "progate", ...others}, ref) { - const Progate = React.forwardRef(function Progate({color = 'currentColor', size = 24, title = "progate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Progate - \ No newline at end of file +export default Progate; diff --git a/src/components/Progress.tsx b/src/components/Progress.tsx index 38ee12e60..7518f7cf1 100644 --- a/src/components/Progress.tsx +++ b/src/components/Progress.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProgressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProgressProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Progress = React.forwardRef(function Progress({color = 'currentColor', size = 24, title = "progress", ...others}, ref) { - const Progress = React.forwardRef(function Progress({color = 'currentColor', size = 24, title = "progress", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Progress - \ No newline at end of file +export default Progress; diff --git a/src/components/Prometheus.tsx b/src/components/Prometheus.tsx index 6ff4178d8..f601ac697 100644 --- a/src/components/Prometheus.tsx +++ b/src/components/Prometheus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PrometheusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PrometheusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Prometheus = React.forwardRef(function Prometheus({color = 'currentColor', size = 24, title = "prometheus", ...others}, ref) { - const Prometheus = React.forwardRef(function Prometheus({color = 'currentColor', size = 24, title = "prometheus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Prometheus - \ No newline at end of file +export default Prometheus; diff --git a/src/components/Prosieben.tsx b/src/components/Prosieben.tsx index 79cdcee97..82fae5aaf 100644 --- a/src/components/Prosieben.tsx +++ b/src/components/Prosieben.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProsiebenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProsiebenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Prosieben = React.forwardRef(function Prosieben({color = 'currentColor', size = 24, title = "prosieben", ...others}, ref) { - const Prosieben = React.forwardRef(function Prosieben({color = 'currentColor', size = 24, title = "prosieben", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Prosieben - \ No newline at end of file +export default Prosieben; diff --git a/src/components/Protocolsdotio.tsx b/src/components/Protocolsdotio.tsx index 813c08168..dd19a0c52 100644 --- a/src/components/Protocolsdotio.tsx +++ b/src/components/Protocolsdotio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProtocolsdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProtocolsdotioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Protocolsdotio = React.forwardRef(function Protocolsdotio({color = 'currentColor', size = 24, title = "protocolsdotio", ...others}, ref) { - const Protocolsdotio = React.forwardRef(function Protocolsdotio({color = 'currentColor', size = 24, title = "protocolsdotio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Protocolsdotio - \ No newline at end of file +export default Protocolsdotio; diff --git a/src/components/Protodotio.tsx b/src/components/Protodotio.tsx index 08b13df02..ef7428d94 100644 --- a/src/components/Protodotio.tsx +++ b/src/components/Protodotio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProtodotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProtodotioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Protodotio = React.forwardRef(function Protodotio({color = 'currentColor', size = 24, title = "protodotio", ...others}, ref) { - const Protodotio = React.forwardRef(function Protodotio({color = 'currentColor', size = 24, title = "protodotio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Protodotio - \ No newline at end of file +export default Protodotio; diff --git a/src/components/Protondb.tsx b/src/components/Protondb.tsx index f0a4f20ed..21d83a459 100644 --- a/src/components/Protondb.tsx +++ b/src/components/Protondb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProtondbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProtondbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Protondb = React.forwardRef(function Protondb({color = 'currentColor', size = 24, title = "protondb", ...others}, ref) { - const Protondb = React.forwardRef(function Protondb({color = 'currentColor', size = 24, title = "protondb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Protondb - \ No newline at end of file +export default Protondb; diff --git a/src/components/Protonmail.tsx b/src/components/Protonmail.tsx index f3a6c64ab..11fbfce1f 100644 --- a/src/components/Protonmail.tsx +++ b/src/components/Protonmail.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProtonmailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProtonmailProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Protonmail = React.forwardRef(function Protonmail({color = 'currentColor', size = 24, title = "protonmail", ...others}, ref) { - const Protonmail = React.forwardRef(function Protonmail({color = 'currentColor', size = 24, title = "protonmail", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Protonmail - \ No newline at end of file +export default Protonmail; diff --git a/src/components/Protonvpn.tsx b/src/components/Protonvpn.tsx index 2c9d7498c..531b196d6 100644 --- a/src/components/Protonvpn.tsx +++ b/src/components/Protonvpn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProtonvpnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProtonvpnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Protonvpn = React.forwardRef(function Protonvpn({color = 'currentColor', size = 24, title = "protonvpn", ...others}, ref) { - const Protonvpn = React.forwardRef(function Protonvpn({color = 'currentColor', size = 24, title = "protonvpn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Protonvpn - \ No newline at end of file +export default Protonvpn; diff --git a/src/components/Protools.tsx b/src/components/Protools.tsx index 8ff4ba571..f3a2dca60 100644 --- a/src/components/Protools.tsx +++ b/src/components/Protools.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProtoolsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProtoolsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Protools = React.forwardRef(function Protools({color = 'currentColor', size = 24, title = "protools", ...others}, ref) { - const Protools = React.forwardRef(function Protools({color = 'currentColor', size = 24, title = "protools", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Protools - \ No newline at end of file +export default Protools; diff --git a/src/components/Protractor.tsx b/src/components/Protractor.tsx index f4cbd460a..140c00b72 100644 --- a/src/components/Protractor.tsx +++ b/src/components/Protractor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProtractorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProtractorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Protractor = React.forwardRef(function Protractor({color = 'currentColor', size = 24, title = "protractor", ...others}, ref) { - const Protractor = React.forwardRef(function Protractor({color = 'currentColor', size = 24, title = "protractor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Protractor - \ No newline at end of file +export default Protractor; diff --git a/src/components/Proxmox.tsx b/src/components/Proxmox.tsx index ae0c619ab..ada8bf3b9 100644 --- a/src/components/Proxmox.tsx +++ b/src/components/Proxmox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ProxmoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ProxmoxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Proxmox = React.forwardRef(function Proxmox({color = 'currentColor', size = 24, title = "proxmox", ...others}, ref) { - const Proxmox = React.forwardRef(function Proxmox({color = 'currentColor', size = 24, title = "proxmox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Proxmox - \ No newline at end of file +export default Proxmox; diff --git a/src/components/Pubg.tsx b/src/components/Pubg.tsx index dd49d6e53..c7022b0b1 100644 --- a/src/components/Pubg.tsx +++ b/src/components/Pubg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PubgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PubgProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pubg = React.forwardRef(function Pubg({color = 'currentColor', size = 24, title = "pubg", ...others}, ref) { - const Pubg = React.forwardRef(function Pubg({color = 'currentColor', size = 24, title = "pubg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pubg - \ No newline at end of file +export default Pubg; diff --git a/src/components/Publons.tsx b/src/components/Publons.tsx index d42b328c9..a5e493b74 100644 --- a/src/components/Publons.tsx +++ b/src/components/Publons.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PublonsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PublonsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Publons = React.forwardRef(function Publons({color = 'currentColor', size = 24, title = "publons", ...others}, ref) { - const Publons = React.forwardRef(function Publons({color = 'currentColor', size = 24, title = "publons", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Publons - \ No newline at end of file +export default Publons; diff --git a/src/components/Pubmed.tsx b/src/components/Pubmed.tsx index 75d0199ea..e23f13ef9 100644 --- a/src/components/Pubmed.tsx +++ b/src/components/Pubmed.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PubmedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PubmedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pubmed = React.forwardRef(function Pubmed({color = 'currentColor', size = 24, title = "pubmed", ...others}, ref) { - const Pubmed = React.forwardRef(function Pubmed({color = 'currentColor', size = 24, title = "pubmed", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pubmed - \ No newline at end of file +export default Pubmed; diff --git a/src/components/Pug.tsx b/src/components/Pug.tsx index 60722f71a..e86a51652 100644 --- a/src/components/Pug.tsx +++ b/src/components/Pug.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PugProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PugProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pug = React.forwardRef(function Pug({color = 'currentColor', size = 24, title = "pug", ...others}, ref) { - const Pug = React.forwardRef(function Pug({color = 'currentColor', size = 24, title = "pug", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pug - \ No newline at end of file +export default Pug; diff --git a/src/components/Pulumi.tsx b/src/components/Pulumi.tsx index 04ccc00f5..ca3c6821f 100644 --- a/src/components/Pulumi.tsx +++ b/src/components/Pulumi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PulumiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PulumiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pulumi = React.forwardRef(function Pulumi({color = 'currentColor', size = 24, title = "pulumi", ...others}, ref) { - const Pulumi = React.forwardRef(function Pulumi({color = 'currentColor', size = 24, title = "pulumi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pulumi - \ No newline at end of file +export default Pulumi; diff --git a/src/components/Puma.tsx b/src/components/Puma.tsx index bece687b9..688ec4c7c 100644 --- a/src/components/Puma.tsx +++ b/src/components/Puma.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PumaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PumaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Puma = React.forwardRef(function Puma({color = 'currentColor', size = 24, title = "puma", ...others}, ref) { - const Puma = React.forwardRef(function Puma({color = 'currentColor', size = 24, title = "puma", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Puma - \ No newline at end of file +export default Puma; diff --git a/src/components/Puppet.tsx b/src/components/Puppet.tsx index fd7759506..e0cf82fca 100644 --- a/src/components/Puppet.tsx +++ b/src/components/Puppet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PuppetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PuppetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Puppet = React.forwardRef(function Puppet({color = 'currentColor', size = 24, title = "puppet", ...others}, ref) { - const Puppet = React.forwardRef(function Puppet({color = 'currentColor', size = 24, title = "puppet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Puppet - \ No newline at end of file +export default Puppet; diff --git a/src/components/Puppeteer.tsx b/src/components/Puppeteer.tsx index c9ce5a029..4572117c4 100644 --- a/src/components/Puppeteer.tsx +++ b/src/components/Puppeteer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PuppeteerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PuppeteerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Puppeteer = React.forwardRef(function Puppeteer({color = 'currentColor', size = 24, title = "puppeteer", ...others}, ref) { - const Puppeteer = React.forwardRef(function Puppeteer({color = 'currentColor', size = 24, title = "puppeteer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Puppeteer - \ No newline at end of file +export default Puppeteer; diff --git a/src/components/Purescript.tsx b/src/components/Purescript.tsx index 468ab12e9..9a6e8467d 100644 --- a/src/components/Purescript.tsx +++ b/src/components/Purescript.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PurescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PurescriptProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Purescript = React.forwardRef(function Purescript({color = 'currentColor', size = 24, title = "purescript", ...others}, ref) { - const Purescript = React.forwardRef(function Purescript({color = 'currentColor', size = 24, title = "purescript", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Purescript - \ No newline at end of file +export default Purescript; diff --git a/src/components/Purgecss.tsx b/src/components/Purgecss.tsx index 7750531f6..fe30aaa61 100644 --- a/src/components/Purgecss.tsx +++ b/src/components/Purgecss.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PurgecssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PurgecssProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Purgecss = React.forwardRef(function Purgecss({color = 'currentColor', size = 24, title = "purgecss", ...others}, ref) { - const Purgecss = React.forwardRef(function Purgecss({color = 'currentColor', size = 24, title = "purgecss", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Purgecss - \ No newline at end of file +export default Purgecss; diff --git a/src/components/Purism.tsx b/src/components/Purism.tsx index 53a65d4c5..9bee3227f 100644 --- a/src/components/Purism.tsx +++ b/src/components/Purism.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PurismProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PurismProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Purism = React.forwardRef(function Purism({color = 'currentColor', size = 24, title = "purism", ...others}, ref) { - const Purism = React.forwardRef(function Purism({color = 'currentColor', size = 24, title = "purism", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Purism - \ No newline at end of file +export default Purism; diff --git a/src/components/Pusher.tsx b/src/components/Pusher.tsx index abb9fa0f7..883d7252f 100644 --- a/src/components/Pusher.tsx +++ b/src/components/Pusher.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PusherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PusherProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pusher = React.forwardRef(function Pusher({color = 'currentColor', size = 24, title = "pusher", ...others}, ref) { - const Pusher = React.forwardRef(function Pusher({color = 'currentColor', size = 24, title = "pusher", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pusher - \ No newline at end of file +export default Pusher; diff --git a/src/components/Pwa.tsx b/src/components/Pwa.tsx index aa545c529..2fcb0e971 100644 --- a/src/components/Pwa.tsx +++ b/src/components/Pwa.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PwaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PwaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pwa = React.forwardRef(function Pwa({color = 'currentColor', size = 24, title = "pwa", ...others}, ref) { - const Pwa = React.forwardRef(function Pwa({color = 'currentColor', size = 24, title = "pwa", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pwa - \ No newline at end of file +export default Pwa; diff --git a/src/components/Pycharm.tsx b/src/components/Pycharm.tsx index 1cae925cb..4e823766e 100644 --- a/src/components/Pycharm.tsx +++ b/src/components/Pycharm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PycharmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PycharmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pycharm = React.forwardRef(function Pycharm({color = 'currentColor', size = 24, title = "pycharm", ...others}, ref) { - const Pycharm = React.forwardRef(function Pycharm({color = 'currentColor', size = 24, title = "pycharm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pycharm - \ No newline at end of file +export default Pycharm; diff --git a/src/components/Pyg.tsx b/src/components/Pyg.tsx index b0534d4a1..1991d0364 100644 --- a/src/components/Pyg.tsx +++ b/src/components/Pyg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PygProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PygProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pyg = React.forwardRef(function Pyg({color = 'currentColor', size = 24, title = "pyg", ...others}, ref) { - const Pyg = React.forwardRef(function Pyg({color = 'currentColor', size = 24, title = "pyg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pyg - \ No newline at end of file +export default Pyg; diff --git a/src/components/Pypi.tsx b/src/components/Pypi.tsx index 60031ddc0..053f81752 100644 --- a/src/components/Pypi.tsx +++ b/src/components/Pypi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PypiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PypiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pypi = React.forwardRef(function Pypi({color = 'currentColor', size = 24, title = "pypi", ...others}, ref) { - const Pypi = React.forwardRef(function Pypi({color = 'currentColor', size = 24, title = "pypi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pypi - \ No newline at end of file +export default Pypi; diff --git a/src/components/Pypy.tsx b/src/components/Pypy.tsx index 79a47ce79..63245731d 100644 --- a/src/components/Pypy.tsx +++ b/src/components/Pypy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PypyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PypyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pypy = React.forwardRef(function Pypy({color = 'currentColor', size = 24, title = "pypy", ...others}, ref) { - const Pypy = React.forwardRef(function Pypy({color = 'currentColor', size = 24, title = "pypy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pypy - \ No newline at end of file +export default Pypy; diff --git a/src/components/Pyscaffold.tsx b/src/components/Pyscaffold.tsx index 1c45720bb..6370ac532 100644 --- a/src/components/Pyscaffold.tsx +++ b/src/components/Pyscaffold.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PyscaffoldProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PyscaffoldProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pyscaffold = React.forwardRef(function Pyscaffold({color = 'currentColor', size = 24, title = "pyscaffold", ...others}, ref) { - const Pyscaffold = React.forwardRef(function Pyscaffold({color = 'currentColor', size = 24, title = "pyscaffold", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pyscaffold - \ No newline at end of file +export default Pyscaffold; diff --git a/src/components/Pytest.tsx b/src/components/Pytest.tsx index df6fed13d..ef81527db 100644 --- a/src/components/Pytest.tsx +++ b/src/components/Pytest.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PytestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PytestProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pytest = React.forwardRef(function Pytest({color = 'currentColor', size = 24, title = "pytest", ...others}, ref) { - const Pytest = React.forwardRef(function Pytest({color = 'currentColor', size = 24, title = "pytest", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pytest - \ No newline at end of file +export default Pytest; diff --git a/src/components/Python.tsx b/src/components/Python.tsx index 608d330b0..243430c02 100644 --- a/src/components/Python.tsx +++ b/src/components/Python.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PythonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PythonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Python = React.forwardRef(function Python({color = 'currentColor', size = 24, title = "python", ...others}, ref) { - const Python = React.forwardRef(function Python({color = 'currentColor', size = 24, title = "python", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Python - \ No newline at end of file +export default Python; diff --git a/src/components/Pytorch.tsx b/src/components/Pytorch.tsx index 3fbc947ae..e740a292a 100644 --- a/src/components/Pytorch.tsx +++ b/src/components/Pytorch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PytorchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PytorchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pytorch = React.forwardRef(function Pytorch({color = 'currentColor', size = 24, title = "pytorch", ...others}, ref) { - const Pytorch = React.forwardRef(function Pytorch({color = 'currentColor', size = 24, title = "pytorch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pytorch - \ No newline at end of file +export default Pytorch; diff --git a/src/components/Pytorchlightning.tsx b/src/components/Pytorchlightning.tsx index c66e0cc1a..63beaa851 100644 --- a/src/components/Pytorchlightning.tsx +++ b/src/components/Pytorchlightning.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PytorchlightningProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PytorchlightningProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pytorchlightning = React.forwardRef(function Pytorchlightning({color = 'currentColor', size = 24, title = "pytorchlightning", ...others}, ref) { - const Pytorchlightning = React.forwardRef(function Pytorchlightning({color = 'currentColor', size = 24, title = "pytorchlightning", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pytorchlightning - \ No newline at end of file +export default Pytorchlightning; diff --git a/src/components/Pyup.tsx b/src/components/Pyup.tsx index 88ef55646..4c5985539 100644 --- a/src/components/Pyup.tsx +++ b/src/components/Pyup.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type PyupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type PyupProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Pyup = React.forwardRef(function Pyup({color = 'currentColor', size = 24, title = "pyup", ...others}, ref) { - const Pyup = React.forwardRef(function Pyup({color = 'currentColor', size = 24, title = "pyup", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Pyup - \ No newline at end of file +export default Pyup; diff --git a/src/components/Qantas.tsx b/src/components/Qantas.tsx index 475575c68..9f8a8f937 100644 --- a/src/components/Qantas.tsx +++ b/src/components/Qantas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QantasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QantasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qantas = React.forwardRef(function Qantas({color = 'currentColor', size = 24, title = "qantas", ...others}, ref) { - const Qantas = React.forwardRef(function Qantas({color = 'currentColor', size = 24, title = "qantas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qantas - \ No newline at end of file +export default Qantas; diff --git a/src/components/Qatarairways.tsx b/src/components/Qatarairways.tsx index 75add7145..924bcb581 100644 --- a/src/components/Qatarairways.tsx +++ b/src/components/Qatarairways.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QatarairwaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QatarairwaysProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qatarairways = React.forwardRef(function Qatarairways({color = 'currentColor', size = 24, title = "qatarairways", ...others}, ref) { - const Qatarairways = React.forwardRef(function Qatarairways({color = 'currentColor', size = 24, title = "qatarairways", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qatarairways - \ No newline at end of file +export default Qatarairways; diff --git a/src/components/Qemu.tsx b/src/components/Qemu.tsx index ee6f4e885..d561e3639 100644 --- a/src/components/Qemu.tsx +++ b/src/components/Qemu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QemuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QemuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qemu = React.forwardRef(function Qemu({color = 'currentColor', size = 24, title = "qemu", ...others}, ref) { - const Qemu = React.forwardRef(function Qemu({color = 'currentColor', size = 24, title = "qemu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qemu - \ No newline at end of file +export default Qemu; diff --git a/src/components/Qgis.tsx b/src/components/Qgis.tsx index 3075e3766..7811e24ba 100644 --- a/src/components/Qgis.tsx +++ b/src/components/Qgis.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QgisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QgisProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qgis = React.forwardRef(function Qgis({color = 'currentColor', size = 24, title = "qgis", ...others}, ref) { - const Qgis = React.forwardRef(function Qgis({color = 'currentColor', size = 24, title = "qgis", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qgis - \ No newline at end of file +export default Qgis; diff --git a/src/components/Qi.tsx b/src/components/Qi.tsx index f4e006726..f9e8ee2fb 100644 --- a/src/components/Qi.tsx +++ b/src/components/Qi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qi = React.forwardRef(function Qi({color = 'currentColor', size = 24, title = "qi", ...others}, ref) { - const Qi = React.forwardRef(function Qi({color = 'currentColor', size = 24, title = "qi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qi - \ No newline at end of file +export default Qi; diff --git a/src/components/Qiita.tsx b/src/components/Qiita.tsx index 5606f470b..094f1fe6c 100644 --- a/src/components/Qiita.tsx +++ b/src/components/Qiita.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QiitaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QiitaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qiita = React.forwardRef(function Qiita({color = 'currentColor', size = 24, title = "qiita", ...others}, ref) { - const Qiita = React.forwardRef(function Qiita({color = 'currentColor', size = 24, title = "qiita", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qiita - \ No newline at end of file +export default Qiita; diff --git a/src/components/Qiskit.tsx b/src/components/Qiskit.tsx index 80c9d0a48..ea474f44a 100644 --- a/src/components/Qiskit.tsx +++ b/src/components/Qiskit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QiskitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QiskitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qiskit = React.forwardRef(function Qiskit({color = 'currentColor', size = 24, title = "qiskit", ...others}, ref) { - const Qiskit = React.forwardRef(function Qiskit({color = 'currentColor', size = 24, title = "qiskit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qiskit - \ No newline at end of file +export default Qiskit; diff --git a/src/components/Qiwi.tsx b/src/components/Qiwi.tsx index b41e7b562..0a74e9278 100644 --- a/src/components/Qiwi.tsx +++ b/src/components/Qiwi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QiwiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QiwiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qiwi = React.forwardRef(function Qiwi({color = 'currentColor', size = 24, title = "qiwi", ...others}, ref) { - const Qiwi = React.forwardRef(function Qiwi({color = 'currentColor', size = 24, title = "qiwi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qiwi - \ No newline at end of file +export default Qiwi; diff --git a/src/components/Qmk.tsx b/src/components/Qmk.tsx index d946c4902..a040b09c5 100644 --- a/src/components/Qmk.tsx +++ b/src/components/Qmk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QmkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QmkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qmk = React.forwardRef(function Qmk({color = 'currentColor', size = 24, title = "qmk", ...others}, ref) { - const Qmk = React.forwardRef(function Qmk({color = 'currentColor', size = 24, title = "qmk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qmk - \ No newline at end of file +export default Qmk; diff --git a/src/components/Qt.tsx b/src/components/Qt.tsx index e0cfacbf9..4daafbc63 100644 --- a/src/components/Qt.tsx +++ b/src/components/Qt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QtProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qt = React.forwardRef(function Qt({color = 'currentColor', size = 24, title = "qt", ...others}, ref) { - const Qt = React.forwardRef(function Qt({color = 'currentColor', size = 24, title = "qt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qt - \ No newline at end of file +export default Qt; diff --git a/src/components/Qualcomm.tsx b/src/components/Qualcomm.tsx index d3867d955..fde6096b0 100644 --- a/src/components/Qualcomm.tsx +++ b/src/components/Qualcomm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QualcommProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QualcommProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qualcomm = React.forwardRef(function Qualcomm({color = 'currentColor', size = 24, title = "qualcomm", ...others}, ref) { - const Qualcomm = React.forwardRef(function Qualcomm({color = 'currentColor', size = 24, title = "qualcomm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qualcomm - \ No newline at end of file +export default Qualcomm; diff --git a/src/components/Qualtrics.tsx b/src/components/Qualtrics.tsx index 0fd6a0fb7..4e3dcea5a 100644 --- a/src/components/Qualtrics.tsx +++ b/src/components/Qualtrics.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QualtricsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QualtricsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qualtrics = React.forwardRef(function Qualtrics({color = 'currentColor', size = 24, title = "qualtrics", ...others}, ref) { - const Qualtrics = React.forwardRef(function Qualtrics({color = 'currentColor', size = 24, title = "qualtrics", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qualtrics - \ No newline at end of file +export default Qualtrics; diff --git a/src/components/Qualys.tsx b/src/components/Qualys.tsx index 75d465ed0..4389bd0b7 100644 --- a/src/components/Qualys.tsx +++ b/src/components/Qualys.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QualysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QualysProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qualys = React.forwardRef(function Qualys({color = 'currentColor', size = 24, title = "qualys", ...others}, ref) { - const Qualys = React.forwardRef(function Qualys({color = 'currentColor', size = 24, title = "qualys", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qualys - \ No newline at end of file +export default Qualys; diff --git a/src/components/Quantcast.tsx b/src/components/Quantcast.tsx index 67d6bdf5a..c02b3a5da 100644 --- a/src/components/Quantcast.tsx +++ b/src/components/Quantcast.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QuantcastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QuantcastProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Quantcast = React.forwardRef(function Quantcast({color = 'currentColor', size = 24, title = "quantcast", ...others}, ref) { - const Quantcast = React.forwardRef(function Quantcast({color = 'currentColor', size = 24, title = "quantcast", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Quantcast - \ No newline at end of file +export default Quantcast; diff --git a/src/components/Quantconnect.tsx b/src/components/Quantconnect.tsx index b1b3397c0..6957e27f1 100644 --- a/src/components/Quantconnect.tsx +++ b/src/components/Quantconnect.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QuantconnectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QuantconnectProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Quantconnect = React.forwardRef(function Quantconnect({color = 'currentColor', size = 24, title = "quantconnect", ...others}, ref) { - const Quantconnect = React.forwardRef(function Quantconnect({color = 'currentColor', size = 24, title = "quantconnect", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Quantconnect - \ No newline at end of file +export default Quantconnect; diff --git a/src/components/Quarkus.tsx b/src/components/Quarkus.tsx index bb8f0b556..c91cd98ab 100644 --- a/src/components/Quarkus.tsx +++ b/src/components/Quarkus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QuarkusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QuarkusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Quarkus = React.forwardRef(function Quarkus({color = 'currentColor', size = 24, title = "quarkus", ...others}, ref) { - const Quarkus = React.forwardRef(function Quarkus({color = 'currentColor', size = 24, title = "quarkus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Quarkus - \ No newline at end of file +export default Quarkus; diff --git a/src/components/Quasar.tsx b/src/components/Quasar.tsx index 28a8521a4..7588f27c0 100644 --- a/src/components/Quasar.tsx +++ b/src/components/Quasar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QuasarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QuasarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Quasar = React.forwardRef(function Quasar({color = 'currentColor', size = 24, title = "quasar", ...others}, ref) { - const Quasar = React.forwardRef(function Quasar({color = 'currentColor', size = 24, title = "quasar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Quasar - \ No newline at end of file +export default Quasar; diff --git a/src/components/Qubesos.tsx b/src/components/Qubesos.tsx index 1c75aa92a..89fe402f4 100644 --- a/src/components/Qubesos.tsx +++ b/src/components/Qubesos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QubesosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QubesosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qubesos = React.forwardRef(function Qubesos({color = 'currentColor', size = 24, title = "qubesos", ...others}, ref) { - const Qubesos = React.forwardRef(function Qubesos({color = 'currentColor', size = 24, title = "qubesos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qubesos - \ No newline at end of file +export default Qubesos; diff --git a/src/components/Quest.tsx b/src/components/Quest.tsx index 7487c2b44..8309ea7fa 100644 --- a/src/components/Quest.tsx +++ b/src/components/Quest.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QuestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QuestProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Quest = React.forwardRef(function Quest({color = 'currentColor', size = 24, title = "quest", ...others}, ref) { - const Quest = React.forwardRef(function Quest({color = 'currentColor', size = 24, title = "quest", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Quest - \ No newline at end of file +export default Quest; diff --git a/src/components/Quickbooks.tsx b/src/components/Quickbooks.tsx index b5242686b..a7dc5df6a 100644 --- a/src/components/Quickbooks.tsx +++ b/src/components/Quickbooks.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QuickbooksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QuickbooksProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Quickbooks = React.forwardRef(function Quickbooks({color = 'currentColor', size = 24, title = "quickbooks", ...others}, ref) { - const Quickbooks = React.forwardRef(function Quickbooks({color = 'currentColor', size = 24, title = "quickbooks", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Quickbooks - \ No newline at end of file +export default Quickbooks; diff --git a/src/components/Quicklook.tsx b/src/components/Quicklook.tsx index d2be7d398..d5bb4c6dc 100644 --- a/src/components/Quicklook.tsx +++ b/src/components/Quicklook.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QuicklookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QuicklookProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Quicklook = React.forwardRef(function Quicklook({color = 'currentColor', size = 24, title = "quicklook", ...others}, ref) { - const Quicklook = React.forwardRef(function Quicklook({color = 'currentColor', size = 24, title = "quicklook", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Quicklook - \ No newline at end of file +export default Quicklook; diff --git a/src/components/Quicktime.tsx b/src/components/Quicktime.tsx index 81af96c47..32c4ca100 100644 --- a/src/components/Quicktime.tsx +++ b/src/components/Quicktime.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QuicktimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QuicktimeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Quicktime = React.forwardRef(function Quicktime({color = 'currentColor', size = 24, title = "quicktime", ...others}, ref) { - const Quicktime = React.forwardRef(function Quicktime({color = 'currentColor', size = 24, title = "quicktime", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Quicktime - \ No newline at end of file +export default Quicktime; diff --git a/src/components/Quip.tsx b/src/components/Quip.tsx index cd2cb9a48..c0cdc7a96 100644 --- a/src/components/Quip.tsx +++ b/src/components/Quip.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QuipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QuipProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Quip = React.forwardRef(function Quip({color = 'currentColor', size = 24, title = "quip", ...others}, ref) { - const Quip = React.forwardRef(function Quip({color = 'currentColor', size = 24, title = "quip", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Quip - \ No newline at end of file +export default Quip; diff --git a/src/components/Quora.tsx b/src/components/Quora.tsx index b7e89b7fb..431f461e6 100644 --- a/src/components/Quora.tsx +++ b/src/components/Quora.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QuoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QuoraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Quora = React.forwardRef(function Quora({color = 'currentColor', size = 24, title = "quora", ...others}, ref) { - const Quora = React.forwardRef(function Quora({color = 'currentColor', size = 24, title = "quora", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Quora - \ No newline at end of file +export default Quora; diff --git a/src/components/Qwiklabs.tsx b/src/components/Qwiklabs.tsx index 5fe7db240..8343264ae 100644 --- a/src/components/Qwiklabs.tsx +++ b/src/components/Qwiklabs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QwiklabsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QwiklabsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qwiklabs = React.forwardRef(function Qwiklabs({color = 'currentColor', size = 24, title = "qwiklabs", ...others}, ref) { - const Qwiklabs = React.forwardRef(function Qwiklabs({color = 'currentColor', size = 24, title = "qwiklabs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qwiklabs - \ No newline at end of file +export default Qwiklabs; diff --git a/src/components/Qzone.tsx b/src/components/Qzone.tsx index 6475f0c11..61fef16d0 100644 --- a/src/components/Qzone.tsx +++ b/src/components/Qzone.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type QzoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type QzoneProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Qzone = React.forwardRef(function Qzone({color = 'currentColor', size = 24, title = "qzone", ...others}, ref) { - const Qzone = React.forwardRef(function Qzone({color = 'currentColor', size = 24, title = "qzone", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Qzone - \ No newline at end of file +export default Qzone; diff --git a/src/components/R.tsx b/src/components/R.tsx index 6ea60bea1..e59245207 100644 --- a/src/components/R.tsx +++ b/src/components/R.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const R = React.forwardRef(function R({color = 'currentColor', size = 24, title = "r", ...others}, ref) { - const R = React.forwardRef(function R({color = 'currentColor', size = 24, title = "r", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default R - \ No newline at end of file +export default R; diff --git a/src/components/RThree.tsx b/src/components/RThree.tsx index 4fc6a0118..4b79688b8 100644 --- a/src/components/RThree.tsx +++ b/src/components/RThree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RThreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RThreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const RThree = React.forwardRef(function RThree({color = 'currentColor', size = 24, title = "r3", ...others}, ref) { - const RThree = React.forwardRef(function RThree({color = 'currentColor', size = 24, title = "r3", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default RThree - \ No newline at end of file +export default RThree; diff --git a/src/components/Rabbitmq.tsx b/src/components/Rabbitmq.tsx index ad839a6b8..979201096 100644 --- a/src/components/Rabbitmq.tsx +++ b/src/components/Rabbitmq.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RabbitmqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RabbitmqProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rabbitmq = React.forwardRef(function Rabbitmq({color = 'currentColor', size = 24, title = "rabbitmq", ...others}, ref) { - const Rabbitmq = React.forwardRef(function Rabbitmq({color = 'currentColor', size = 24, title = "rabbitmq", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rabbitmq - \ No newline at end of file +export default Rabbitmq; diff --git a/src/components/Racket.tsx b/src/components/Racket.tsx index 9c6975b3f..70ca598b5 100644 --- a/src/components/Racket.tsx +++ b/src/components/Racket.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RacketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RacketProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Racket = React.forwardRef(function Racket({color = 'currentColor', size = 24, title = "racket", ...others}, ref) { - const Racket = React.forwardRef(function Racket({color = 'currentColor', size = 24, title = "racket", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Racket - \ No newline at end of file +export default Racket; diff --git a/src/components/Radar.tsx b/src/components/Radar.tsx index 8340d3e6f..ae1e54d1c 100644 --- a/src/components/Radar.tsx +++ b/src/components/Radar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RadarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RadarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Radar = React.forwardRef(function Radar({color = 'currentColor', size = 24, title = "radar", ...others}, ref) { - const Radar = React.forwardRef(function Radar({color = 'currentColor', size = 24, title = "radar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Radar - \ No newline at end of file +export default Radar; diff --git a/src/components/Radiopublic.tsx b/src/components/Radiopublic.tsx index ab114459d..19961808c 100644 --- a/src/components/Radiopublic.tsx +++ b/src/components/Radiopublic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RadiopublicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RadiopublicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Radiopublic = React.forwardRef(function Radiopublic({color = 'currentColor', size = 24, title = "radiopublic", ...others}, ref) { - const Radiopublic = React.forwardRef(function Radiopublic({color = 'currentColor', size = 24, title = "radiopublic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Radiopublic - \ No newline at end of file +export default Radiopublic; diff --git a/src/components/Railway.tsx b/src/components/Railway.tsx index 6223e428f..0f2ce3315 100644 --- a/src/components/Railway.tsx +++ b/src/components/Railway.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RailwayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RailwayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Railway = React.forwardRef(function Railway({color = 'currentColor', size = 24, title = "railway", ...others}, ref) { - const Railway = React.forwardRef(function Railway({color = 'currentColor', size = 24, title = "railway", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Railway - \ No newline at end of file +export default Railway; diff --git a/src/components/Rainmeter.tsx b/src/components/Rainmeter.tsx index b4c1164c5..521302da0 100644 --- a/src/components/Rainmeter.tsx +++ b/src/components/Rainmeter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RainmeterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RainmeterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rainmeter = React.forwardRef(function Rainmeter({color = 'currentColor', size = 24, title = "rainmeter", ...others}, ref) { - const Rainmeter = React.forwardRef(function Rainmeter({color = 'currentColor', size = 24, title = "rainmeter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rainmeter - \ No newline at end of file +export default Rainmeter; diff --git a/src/components/Rakuten.tsx b/src/components/Rakuten.tsx index 87c1dcbfa..d37e9d855 100644 --- a/src/components/Rakuten.tsx +++ b/src/components/Rakuten.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RakutenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RakutenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rakuten = React.forwardRef(function Rakuten({color = 'currentColor', size = 24, title = "rakuten", ...others}, ref) { - const Rakuten = React.forwardRef(function Rakuten({color = 'currentColor', size = 24, title = "rakuten", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rakuten - \ No newline at end of file +export default Rakuten; diff --git a/src/components/Ram.tsx b/src/components/Ram.tsx index 859635dfa..2883417b0 100644 --- a/src/components/Ram.tsx +++ b/src/components/Ram.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RamProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ram = React.forwardRef(function Ram({color = 'currentColor', size = 24, title = "ram", ...others}, ref) { - const Ram = React.forwardRef(function Ram({color = 'currentColor', size = 24, title = "ram", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ram - \ No newline at end of file +export default Ram; diff --git a/src/components/Rancher.tsx b/src/components/Rancher.tsx index 62596eea5..43c4ce7e0 100644 --- a/src/components/Rancher.tsx +++ b/src/components/Rancher.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RancherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RancherProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rancher = React.forwardRef(function Rancher({color = 'currentColor', size = 24, title = "rancher", ...others}, ref) { - const Rancher = React.forwardRef(function Rancher({color = 'currentColor', size = 24, title = "rancher", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rancher - \ No newline at end of file +export default Rancher; diff --git a/src/components/Rarible.tsx b/src/components/Rarible.tsx index 2afe76801..a9629daa7 100644 --- a/src/components/Rarible.tsx +++ b/src/components/Rarible.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RaribleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RaribleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rarible = React.forwardRef(function Rarible({color = 'currentColor', size = 24, title = "rarible", ...others}, ref) { - const Rarible = React.forwardRef(function Rarible({color = 'currentColor', size = 24, title = "rarible", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rarible - \ No newline at end of file +export default Rarible; diff --git a/src/components/Rasa.tsx b/src/components/Rasa.tsx index 78cd3956d..7e62c83fe 100644 --- a/src/components/Rasa.tsx +++ b/src/components/Rasa.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RasaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RasaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rasa = React.forwardRef(function Rasa({color = 'currentColor', size = 24, title = "rasa", ...others}, ref) { - const Rasa = React.forwardRef(function Rasa({color = 'currentColor', size = 24, title = "rasa", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rasa - \ No newline at end of file +export default Rasa; diff --git a/src/components/Raspberrypi.tsx b/src/components/Raspberrypi.tsx index a1ab712b7..7b01e83a1 100644 --- a/src/components/Raspberrypi.tsx +++ b/src/components/Raspberrypi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RaspberrypiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RaspberrypiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Raspberrypi = React.forwardRef(function Raspberrypi({color = 'currentColor', size = 24, title = "raspberrypi", ...others}, ref) { - const Raspberrypi = React.forwardRef(function Raspberrypi({color = 'currentColor', size = 24, title = "raspberrypi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Raspberrypi - \ No newline at end of file +export default Raspberrypi; diff --git a/src/components/Ray.tsx b/src/components/Ray.tsx index 8b79579d2..ac13073bd 100644 --- a/src/components/Ray.tsx +++ b/src/components/Ray.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ray = React.forwardRef(function Ray({color = 'currentColor', size = 24, title = "ray", ...others}, ref) { - const Ray = React.forwardRef(function Ray({color = 'currentColor', size = 24, title = "ray", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ray - \ No newline at end of file +export default Ray; diff --git a/src/components/Razer.tsx b/src/components/Razer.tsx index d1d283398..b49819ff3 100644 --- a/src/components/Razer.tsx +++ b/src/components/Razer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RazerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RazerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Razer = React.forwardRef(function Razer({color = 'currentColor', size = 24, title = "razer", ...others}, ref) { - const Razer = React.forwardRef(function Razer({color = 'currentColor', size = 24, title = "razer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Razer - \ No newline at end of file +export default Razer; diff --git a/src/components/Razorpay.tsx b/src/components/Razorpay.tsx index ea766a87d..74ce93f79 100644 --- a/src/components/Razorpay.tsx +++ b/src/components/Razorpay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RazorpayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RazorpayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Razorpay = React.forwardRef(function Razorpay({color = 'currentColor', size = 24, title = "razorpay", ...others}, ref) { - const Razorpay = React.forwardRef(function Razorpay({color = 'currentColor', size = 24, title = "razorpay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Razorpay - \ No newline at end of file +export default Razorpay; diff --git a/src/components/ReactJs.tsx b/src/components/ReactJs.tsx index ac2857100..831b64b05 100644 --- a/src/components/ReactJs.tsx +++ b/src/components/ReactJs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReactJsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReactJsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const ReactJs = React.forwardRef(function ReactJs({color = 'currentColor', size = 24, title = "react", ...others}, ref) { - const ReactJs = React.forwardRef(function ReactJs({color = 'currentColor', size = 24, title = "react", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default ReactJs - \ No newline at end of file +export default ReactJs; diff --git a/src/components/Reacthookform.tsx b/src/components/Reacthookform.tsx index 409224ca6..c70a137f8 100644 --- a/src/components/Reacthookform.tsx +++ b/src/components/Reacthookform.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReacthookformProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReacthookformProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reacthookform = React.forwardRef(function Reacthookform({color = 'currentColor', size = 24, title = "reacthookform", ...others}, ref) { - const Reacthookform = React.forwardRef(function Reacthookform({color = 'currentColor', size = 24, title = "reacthookform", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reacthookform - \ No newline at end of file +export default Reacthookform; diff --git a/src/components/Reactivex.tsx b/src/components/Reactivex.tsx index 39dedbab2..125b0da0e 100644 --- a/src/components/Reactivex.tsx +++ b/src/components/Reactivex.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReactivexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReactivexProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reactivex = React.forwardRef(function Reactivex({color = 'currentColor', size = 24, title = "reactivex", ...others}, ref) { - const Reactivex = React.forwardRef(function Reactivex({color = 'currentColor', size = 24, title = "reactivex", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reactivex - \ No newline at end of file +export default Reactivex; diff --git a/src/components/Reactos.tsx b/src/components/Reactos.tsx index 5d7661ff0..94499d05b 100644 --- a/src/components/Reactos.tsx +++ b/src/components/Reactos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReactosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReactosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reactos = React.forwardRef(function Reactos({color = 'currentColor', size = 24, title = "reactos", ...others}, ref) { - const Reactos = React.forwardRef(function Reactos({color = 'currentColor', size = 24, title = "reactos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reactos - \ No newline at end of file +export default Reactos; diff --git a/src/components/Reactquery.tsx b/src/components/Reactquery.tsx index 93a2d3d5c..581066058 100644 --- a/src/components/Reactquery.tsx +++ b/src/components/Reactquery.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReactqueryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReactqueryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reactquery = React.forwardRef(function Reactquery({color = 'currentColor', size = 24, title = "reactquery", ...others}, ref) { - const Reactquery = React.forwardRef(function Reactquery({color = 'currentColor', size = 24, title = "reactquery", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reactquery - \ No newline at end of file +export default Reactquery; diff --git a/src/components/Reactrouter.tsx b/src/components/Reactrouter.tsx index 6ea8bcbd7..001cd3ddc 100644 --- a/src/components/Reactrouter.tsx +++ b/src/components/Reactrouter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReactrouterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReactrouterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reactrouter = React.forwardRef(function Reactrouter({color = 'currentColor', size = 24, title = "reactrouter", ...others}, ref) { - const Reactrouter = React.forwardRef(function Reactrouter({color = 'currentColor', size = 24, title = "reactrouter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reactrouter - \ No newline at end of file +export default Reactrouter; diff --git a/src/components/Reacttable.tsx b/src/components/Reacttable.tsx index 39f320377..94dbcfbc8 100644 --- a/src/components/Reacttable.tsx +++ b/src/components/Reacttable.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReacttableProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReacttableProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reacttable = React.forwardRef(function Reacttable({color = 'currentColor', size = 24, title = "reacttable", ...others}, ref) { - const Reacttable = React.forwardRef(function Reacttable({color = 'currentColor', size = 24, title = "reacttable", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reacttable - \ No newline at end of file +export default Reacttable; diff --git a/src/components/Readthedocs.tsx b/src/components/Readthedocs.tsx index 9c87578cf..e8fea6cbe 100644 --- a/src/components/Readthedocs.tsx +++ b/src/components/Readthedocs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReadthedocsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReadthedocsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Readthedocs = React.forwardRef(function Readthedocs({color = 'currentColor', size = 24, title = "readthedocs", ...others}, ref) { - const Readthedocs = React.forwardRef(function Readthedocs({color = 'currentColor', size = 24, title = "readthedocs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Readthedocs - \ No newline at end of file +export default Readthedocs; diff --git a/src/components/Realm.tsx b/src/components/Realm.tsx index e8d7c0bd4..b51e66093 100644 --- a/src/components/Realm.tsx +++ b/src/components/Realm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RealmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RealmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Realm = React.forwardRef(function Realm({color = 'currentColor', size = 24, title = "realm", ...others}, ref) { - const Realm = React.forwardRef(function Realm({color = 'currentColor', size = 24, title = "realm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Realm - \ No newline at end of file +export default Realm; diff --git a/src/components/Reason.tsx b/src/components/Reason.tsx index d25f63caa..96bc05328 100644 --- a/src/components/Reason.tsx +++ b/src/components/Reason.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReasonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReasonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reason = React.forwardRef(function Reason({color = 'currentColor', size = 24, title = "reason", ...others}, ref) { - const Reason = React.forwardRef(function Reason({color = 'currentColor', size = 24, title = "reason", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reason - \ No newline at end of file +export default Reason; diff --git a/src/components/Reasonstudios.tsx b/src/components/Reasonstudios.tsx index 4cd1578b7..a1b03db89 100644 --- a/src/components/Reasonstudios.tsx +++ b/src/components/Reasonstudios.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReasonstudiosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReasonstudiosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reasonstudios = React.forwardRef(function Reasonstudios({color = 'currentColor', size = 24, title = "reasonstudios", ...others}, ref) { - const Reasonstudios = React.forwardRef(function Reasonstudios({color = 'currentColor', size = 24, title = "reasonstudios", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reasonstudios - \ No newline at end of file +export default Reasonstudios; diff --git a/src/components/Redbubble.tsx b/src/components/Redbubble.tsx index 41536befb..4deba3a69 100644 --- a/src/components/Redbubble.tsx +++ b/src/components/Redbubble.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RedbubbleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RedbubbleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Redbubble = React.forwardRef(function Redbubble({color = 'currentColor', size = 24, title = "redbubble", ...others}, ref) { - const Redbubble = React.forwardRef(function Redbubble({color = 'currentColor', size = 24, title = "redbubble", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Redbubble - \ No newline at end of file +export default Redbubble; diff --git a/src/components/Reddit.tsx b/src/components/Reddit.tsx index e22a07d29..b28259ce0 100644 --- a/src/components/Reddit.tsx +++ b/src/components/Reddit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RedditProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RedditProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reddit = React.forwardRef(function Reddit({color = 'currentColor', size = 24, title = "reddit", ...others}, ref) { - const Reddit = React.forwardRef(function Reddit({color = 'currentColor', size = 24, title = "reddit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reddit - \ No newline at end of file +export default Reddit; diff --git a/src/components/Redhat.tsx b/src/components/Redhat.tsx index 96f652d20..e27b3f32a 100644 --- a/src/components/Redhat.tsx +++ b/src/components/Redhat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RedhatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RedhatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Redhat = React.forwardRef(function Redhat({color = 'currentColor', size = 24, title = "redhat", ...others}, ref) { - const Redhat = React.forwardRef(function Redhat({color = 'currentColor', size = 24, title = "redhat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Redhat - \ No newline at end of file +export default Redhat; diff --git a/src/components/Redhatopenshift.tsx b/src/components/Redhatopenshift.tsx index ed47c1127..e757a94bd 100644 --- a/src/components/Redhatopenshift.tsx +++ b/src/components/Redhatopenshift.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RedhatopenshiftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RedhatopenshiftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Redhatopenshift = React.forwardRef(function Redhatopenshift({color = 'currentColor', size = 24, title = "redhatopenshift", ...others}, ref) { - const Redhatopenshift = React.forwardRef(function Redhatopenshift({color = 'currentColor', size = 24, title = "redhatopenshift", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Redhatopenshift - \ No newline at end of file +export default Redhatopenshift; diff --git a/src/components/Redis.tsx b/src/components/Redis.tsx index a34dde211..41acba61e 100644 --- a/src/components/Redis.tsx +++ b/src/components/Redis.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RedisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RedisProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Redis = React.forwardRef(function Redis({color = 'currentColor', size = 24, title = "redis", ...others}, ref) { - const Redis = React.forwardRef(function Redis({color = 'currentColor', size = 24, title = "redis", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Redis - \ No newline at end of file +export default Redis; diff --git a/src/components/Redmine.tsx b/src/components/Redmine.tsx index a598b180f..0b941bd52 100644 --- a/src/components/Redmine.tsx +++ b/src/components/Redmine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RedmineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RedmineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Redmine = React.forwardRef(function Redmine({color = 'currentColor', size = 24, title = "redmine", ...others}, ref) { - const Redmine = React.forwardRef(function Redmine({color = 'currentColor', size = 24, title = "redmine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Redmine - \ No newline at end of file +export default Redmine; diff --git a/src/components/Redux.tsx b/src/components/Redux.tsx index 6a0cab3ea..326663e39 100644 --- a/src/components/Redux.tsx +++ b/src/components/Redux.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReduxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReduxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Redux = React.forwardRef(function Redux({color = 'currentColor', size = 24, title = "redux", ...others}, ref) { - const Redux = React.forwardRef(function Redux({color = 'currentColor', size = 24, title = "redux", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Redux - \ No newline at end of file +export default Redux; diff --git a/src/components/Reduxsaga.tsx b/src/components/Reduxsaga.tsx index 54d56ca1d..2f9f14294 100644 --- a/src/components/Reduxsaga.tsx +++ b/src/components/Reduxsaga.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReduxsagaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReduxsagaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reduxsaga = React.forwardRef(function Reduxsaga({color = 'currentColor', size = 24, title = "reduxsaga", ...others}, ref) { - const Reduxsaga = React.forwardRef(function Reduxsaga({color = 'currentColor', size = 24, title = "reduxsaga", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reduxsaga - \ No newline at end of file +export default Reduxsaga; diff --git a/src/components/Redwoodjs.tsx b/src/components/Redwoodjs.tsx index 5ab4b5061..b8a5e96c0 100644 --- a/src/components/Redwoodjs.tsx +++ b/src/components/Redwoodjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RedwoodjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RedwoodjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Redwoodjs = React.forwardRef(function Redwoodjs({color = 'currentColor', size = 24, title = "redwoodjs", ...others}, ref) { - const Redwoodjs = React.forwardRef(function Redwoodjs({color = 'currentColor', size = 24, title = "redwoodjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Redwoodjs - \ No newline at end of file +export default Redwoodjs; diff --git a/src/components/Reebok.tsx b/src/components/Reebok.tsx index 327877e58..42cd141f2 100644 --- a/src/components/Reebok.tsx +++ b/src/components/Reebok.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReebokProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReebokProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reebok = React.forwardRef(function Reebok({color = 'currentColor', size = 24, title = "reebok", ...others}, ref) { - const Reebok = React.forwardRef(function Reebok({color = 'currentColor', size = 24, title = "reebok", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reebok - \ No newline at end of file +export default Reebok; diff --git a/src/components/Relay.tsx b/src/components/Relay.tsx new file mode 100644 index 000000000..102ab7953 --- /dev/null +++ b/src/components/Relay.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type RelayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Relay = React.forwardRef(function Relay({color = 'currentColor', size = 24, title = "relay", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Relay; diff --git a/src/components/Relianceindustrieslimited.tsx b/src/components/Relianceindustrieslimited.tsx index 75f58067d..3205c6296 100644 --- a/src/components/Relianceindustrieslimited.tsx +++ b/src/components/Relianceindustrieslimited.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RelianceindustrieslimitedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RelianceindustrieslimitedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Relianceindustrieslimited = React.forwardRef(function Relianceindustrieslimited({color = 'currentColor', size = 24, title = "relianceindustrieslimited", ...others}, ref) { - const Relianceindustrieslimited = React.forwardRef(function Relianceindustrieslimited({color = 'currentColor', size = 24, title = "relianceindustrieslimited", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Relianceindustrieslimited - \ No newline at end of file +export default Relianceindustrieslimited; diff --git a/src/components/Remix.tsx b/src/components/Remix.tsx index 8a88db779..fe2ebf353 100644 --- a/src/components/Remix.tsx +++ b/src/components/Remix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RemixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RemixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Remix = React.forwardRef(function Remix({color = 'currentColor', size = 24, title = "remix", ...others}, ref) { - const Remix = React.forwardRef(function Remix({color = 'currentColor', size = 24, title = "remix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Remix - \ No newline at end of file +export default Remix; diff --git a/src/components/Renault.tsx b/src/components/Renault.tsx index 3f0adab8f..d48df6a64 100644 --- a/src/components/Renault.tsx +++ b/src/components/Renault.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RenaultProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RenaultProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Renault = React.forwardRef(function Renault({color = 'currentColor', size = 24, title = "renault", ...others}, ref) { - const Renault = React.forwardRef(function Renault({color = 'currentColor', size = 24, title = "renault", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Renault - \ No newline at end of file +export default Renault; diff --git a/src/components/Render.tsx b/src/components/Render.tsx index 201f719ef..01395525a 100644 --- a/src/components/Render.tsx +++ b/src/components/Render.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RenderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RenderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Render = React.forwardRef(function Render({color = 'currentColor', size = 24, title = "render", ...others}, ref) { - const Render = React.forwardRef(function Render({color = 'currentColor', size = 24, title = "render", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Render - \ No newline at end of file +export default Render; diff --git a/src/components/Renovatebot.tsx b/src/components/Renovatebot.tsx index 3aa14bdad..eef4113ad 100644 --- a/src/components/Renovatebot.tsx +++ b/src/components/Renovatebot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RenovatebotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RenovatebotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Renovatebot = React.forwardRef(function Renovatebot({color = 'currentColor', size = 24, title = "renovatebot", ...others}, ref) { - const Renovatebot = React.forwardRef(function Renovatebot({color = 'currentColor', size = 24, title = "renovatebot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Renovatebot - \ No newline at end of file +export default Renovatebot; diff --git a/src/components/Renpy.tsx b/src/components/Renpy.tsx index beb08c42e..9c40b76cc 100644 --- a/src/components/Renpy.tsx +++ b/src/components/Renpy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RenpyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RenpyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Renpy = React.forwardRef(function Renpy({color = 'currentColor', size = 24, title = "renpy", ...others}, ref) { - const Renpy = React.forwardRef(function Renpy({color = 'currentColor', size = 24, title = "renpy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Renpy - \ No newline at end of file +export default Renpy; diff --git a/src/components/Renren.tsx b/src/components/Renren.tsx index 67a3c83f4..ece656425 100644 --- a/src/components/Renren.tsx +++ b/src/components/Renren.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RenrenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RenrenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Renren = React.forwardRef(function Renren({color = 'currentColor', size = 24, title = "renren", ...others}, ref) { - const Renren = React.forwardRef(function Renren({color = 'currentColor', size = 24, title = "renren", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Renren - \ No newline at end of file +export default Renren; diff --git a/src/components/Replit.tsx b/src/components/Replit.tsx index 656c29cbb..c57d64391 100644 --- a/src/components/Replit.tsx +++ b/src/components/Replit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReplitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReplitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Replit = React.forwardRef(function Replit({color = 'currentColor', size = 24, title = "replit", ...others}, ref) { - const Replit = React.forwardRef(function Replit({color = 'currentColor', size = 24, title = "replit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Replit - \ No newline at end of file +export default Replit; diff --git a/src/components/Republicofgamers.tsx b/src/components/Republicofgamers.tsx index 706ce544b..f7e39dc86 100644 --- a/src/components/Republicofgamers.tsx +++ b/src/components/Republicofgamers.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RepublicofgamersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RepublicofgamersProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Republicofgamers = React.forwardRef(function Republicofgamers({color = 'currentColor', size = 24, title = "republicofgamers", ...others}, ref) { - const Republicofgamers = React.forwardRef(function Republicofgamers({color = 'currentColor', size = 24, title = "republicofgamers", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Republicofgamers - \ No newline at end of file +export default Republicofgamers; diff --git a/src/components/Rescript.tsx b/src/components/Rescript.tsx index 9cb2e37a2..9c82777d2 100644 --- a/src/components/Rescript.tsx +++ b/src/components/Rescript.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RescriptProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rescript = React.forwardRef(function Rescript({color = 'currentColor', size = 24, title = "rescript", ...others}, ref) { - const Rescript = React.forwardRef(function Rescript({color = 'currentColor', size = 24, title = "rescript", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rescript - \ No newline at end of file +export default Rescript; diff --git a/src/components/Rescuetime.tsx b/src/components/Rescuetime.tsx index ab633d1ca..1c8369111 100644 --- a/src/components/Rescuetime.tsx +++ b/src/components/Rescuetime.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RescuetimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RescuetimeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rescuetime = React.forwardRef(function Rescuetime({color = 'currentColor', size = 24, title = "rescuetime", ...others}, ref) { - const Rescuetime = React.forwardRef(function Rescuetime({color = 'currentColor', size = 24, title = "rescuetime", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rescuetime - \ No newline at end of file +export default Rescuetime; diff --git a/src/components/Researchgate.tsx b/src/components/Researchgate.tsx index b3bfbf6ca..b0774be66 100644 --- a/src/components/Researchgate.tsx +++ b/src/components/Researchgate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ResearchgateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ResearchgateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Researchgate = React.forwardRef(function Researchgate({color = 'currentColor', size = 24, title = "researchgate", ...others}, ref) { - const Researchgate = React.forwardRef(function Researchgate({color = 'currentColor', size = 24, title = "researchgate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Researchgate - \ No newline at end of file +export default Researchgate; diff --git a/src/components/Resharper.tsx b/src/components/Resharper.tsx new file mode 100644 index 000000000..6d4cb095c --- /dev/null +++ b/src/components/Resharper.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type ResharperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Resharper = React.forwardRef(function Resharper({color = 'currentColor', size = 24, title = "resharper", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Resharper; diff --git a/src/components/Resurrectionremixos.tsx b/src/components/Resurrectionremixos.tsx index f1c3836b7..e6cf90e08 100644 --- a/src/components/Resurrectionremixos.tsx +++ b/src/components/Resurrectionremixos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ResurrectionremixosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ResurrectionremixosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Resurrectionremixos = React.forwardRef(function Resurrectionremixos({color = 'currentColor', size = 24, title = "resurrectionremixos", ...others}, ref) { - const Resurrectionremixos = React.forwardRef(function Resurrectionremixos({color = 'currentColor', size = 24, title = "resurrectionremixos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Resurrectionremixos - \ No newline at end of file +export default Resurrectionremixos; diff --git a/src/components/Retroarch.tsx b/src/components/Retroarch.tsx index e87e8b6f1..a5e855ec0 100644 --- a/src/components/Retroarch.tsx +++ b/src/components/Retroarch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RetroarchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RetroarchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Retroarch = React.forwardRef(function Retroarch({color = 'currentColor', size = 24, title = "retroarch", ...others}, ref) { - const Retroarch = React.forwardRef(function Retroarch({color = 'currentColor', size = 24, title = "retroarch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Retroarch - \ No newline at end of file +export default Retroarch; diff --git a/src/components/Retropie.tsx b/src/components/Retropie.tsx index 4bf91e542..90a77dbdc 100644 --- a/src/components/Retropie.tsx +++ b/src/components/Retropie.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RetropieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RetropieProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Retropie = React.forwardRef(function Retropie({color = 'currentColor', size = 24, title = "retropie", ...others}, ref) { - const Retropie = React.forwardRef(function Retropie({color = 'currentColor', size = 24, title = "retropie", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Retropie - \ No newline at end of file +export default Retropie; diff --git a/src/components/Revealdotjs.tsx b/src/components/Revealdotjs.tsx index 4a6a2fe98..db1ee7491 100644 --- a/src/components/Revealdotjs.tsx +++ b/src/components/Revealdotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RevealdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RevealdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Revealdotjs = React.forwardRef(function Revealdotjs({color = 'currentColor', size = 24, title = "revealdotjs", ...others}, ref) { - const Revealdotjs = React.forwardRef(function Revealdotjs({color = 'currentColor', size = 24, title = "revealdotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Revealdotjs - \ No newline at end of file +export default Revealdotjs; diff --git a/src/components/Reverbnation.tsx b/src/components/Reverbnation.tsx index 8e9b6a645..dee1187c0 100644 --- a/src/components/Reverbnation.tsx +++ b/src/components/Reverbnation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReverbnationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReverbnationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Reverbnation = React.forwardRef(function Reverbnation({color = 'currentColor', size = 24, title = "reverbnation", ...others}, ref) { - const Reverbnation = React.forwardRef(function Reverbnation({color = 'currentColor', size = 24, title = "reverbnation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Reverbnation - \ No newline at end of file +export default Reverbnation; diff --git a/src/components/Revoltdotchat.tsx b/src/components/Revoltdotchat.tsx index b99d25112..901fa383a 100644 --- a/src/components/Revoltdotchat.tsx +++ b/src/components/Revoltdotchat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RevoltdotchatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RevoltdotchatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Revoltdotchat = React.forwardRef(function Revoltdotchat({color = 'currentColor', size = 24, title = "revoltdotchat", ...others}, ref) { - const Revoltdotchat = React.forwardRef(function Revoltdotchat({color = 'currentColor', size = 24, title = "revoltdotchat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Revoltdotchat - \ No newline at end of file +export default Revoltdotchat; diff --git a/src/components/Revolut.tsx b/src/components/Revolut.tsx index c32e702e7..df40882fd 100644 --- a/src/components/Revolut.tsx +++ b/src/components/Revolut.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RevolutProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RevolutProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Revolut = React.forwardRef(function Revolut({color = 'currentColor', size = 24, title = "revolut", ...others}, ref) { - const Revolut = React.forwardRef(function Revolut({color = 'currentColor', size = 24, title = "revolut", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Revolut - \ No newline at end of file +export default Revolut; diff --git a/src/components/Revue.tsx b/src/components/Revue.tsx index 04287b30c..1d5ecfbe7 100644 --- a/src/components/Revue.tsx +++ b/src/components/Revue.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RevueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RevueProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Revue = React.forwardRef(function Revue({color = 'currentColor', size = 24, title = "revue", ...others}, ref) { - const Revue = React.forwardRef(function Revue({color = 'currentColor', size = 24, title = "revue", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Revue - \ No newline at end of file +export default Revue; diff --git a/src/components/Rewe.tsx b/src/components/Rewe.tsx index 2799a3a13..8f0abf1c7 100644 --- a/src/components/Rewe.tsx +++ b/src/components/Rewe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ReweProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ReweProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rewe = React.forwardRef(function Rewe({color = 'currentColor', size = 24, title = "rewe", ...others}, ref) { - const Rewe = React.forwardRef(function Rewe({color = 'currentColor', size = 24, title = "rewe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rewe - \ No newline at end of file +export default Rewe; diff --git a/src/components/Rezgo.tsx b/src/components/Rezgo.tsx index 95ddb1f42..623086c33 100644 --- a/src/components/Rezgo.tsx +++ b/src/components/Rezgo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RezgoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RezgoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rezgo = React.forwardRef(function Rezgo({color = 'currentColor', size = 24, title = "rezgo", ...others}, ref) { - const Rezgo = React.forwardRef(function Rezgo({color = 'currentColor', size = 24, title = "rezgo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rezgo - \ No newline at end of file +export default Rezgo; diff --git a/src/components/Rhinoceros.tsx b/src/components/Rhinoceros.tsx index 2ed5b3f92..f36ea457e 100644 --- a/src/components/Rhinoceros.tsx +++ b/src/components/Rhinoceros.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RhinocerosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RhinocerosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rhinoceros = React.forwardRef(function Rhinoceros({color = 'currentColor', size = 24, title = "rhinoceros", ...others}, ref) { - const Rhinoceros = React.forwardRef(function Rhinoceros({color = 'currentColor', size = 24, title = "rhinoceros", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rhinoceros - \ No newline at end of file +export default Rhinoceros; diff --git a/src/components/Rider.tsx b/src/components/Rider.tsx index 3dd72b8c5..6563c4ec1 100644 --- a/src/components/Rider.tsx +++ b/src/components/Rider.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RiderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RiderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rider = React.forwardRef(function Rider({color = 'currentColor', size = 24, title = "rider", ...others}, ref) { - const Rider = React.forwardRef(function Rider({color = 'currentColor', size = 24, title = "rider", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rider - \ No newline at end of file +export default Rider; diff --git a/src/components/Rimacautomobili.tsx b/src/components/Rimacautomobili.tsx index bf3d0c4a8..c91335fd8 100644 --- a/src/components/Rimacautomobili.tsx +++ b/src/components/Rimacautomobili.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RimacautomobiliProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RimacautomobiliProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rimacautomobili = React.forwardRef(function Rimacautomobili({color = 'currentColor', size = 24, title = "rimacautomobili", ...others}, ref) { - const Rimacautomobili = React.forwardRef(function Rimacautomobili({color = 'currentColor', size = 24, title = "rimacautomobili", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rimacautomobili - \ No newline at end of file +export default Rimacautomobili; diff --git a/src/components/Ring.tsx b/src/components/Ring.tsx index a85ccba1e..514ea9f04 100644 --- a/src/components/Ring.tsx +++ b/src/components/Ring.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ring = React.forwardRef(function Ring({color = 'currentColor', size = 24, title = "ring", ...others}, ref) { - const Ring = React.forwardRef(function Ring({color = 'currentColor', size = 24, title = "ring", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ring - \ No newline at end of file +export default Ring; diff --git a/src/components/Riotgames.tsx b/src/components/Riotgames.tsx index ced447a4d..8687f687e 100644 --- a/src/components/Riotgames.tsx +++ b/src/components/Riotgames.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RiotgamesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RiotgamesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Riotgames = React.forwardRef(function Riotgames({color = 'currentColor', size = 24, title = "riotgames", ...others}, ref) { - const Riotgames = React.forwardRef(function Riotgames({color = 'currentColor', size = 24, title = "riotgames", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Riotgames - \ No newline at end of file +export default Riotgames; diff --git a/src/components/Ripple.tsx b/src/components/Ripple.tsx index 96a8c4200..ba3fc3483 100644 --- a/src/components/Ripple.tsx +++ b/src/components/Ripple.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RippleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RippleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ripple = React.forwardRef(function Ripple({color = 'currentColor', size = 24, title = "ripple", ...others}, ref) { - const Ripple = React.forwardRef(function Ripple({color = 'currentColor', size = 24, title = "ripple", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ripple - \ No newline at end of file +export default Ripple; diff --git a/src/components/Riseup.tsx b/src/components/Riseup.tsx index b85203e9e..10ac9c866 100644 --- a/src/components/Riseup.tsx +++ b/src/components/Riseup.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RiseupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RiseupProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Riseup = React.forwardRef(function Riseup({color = 'currentColor', size = 24, title = "riseup", ...others}, ref) { - const Riseup = React.forwardRef(function Riseup({color = 'currentColor', size = 24, title = "riseup", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Riseup - \ No newline at end of file +export default Riseup; diff --git a/src/components/Roamresearch.tsx b/src/components/Roamresearch.tsx index c2948f876..8255671d6 100644 --- a/src/components/Roamresearch.tsx +++ b/src/components/Roamresearch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RoamresearchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RoamresearchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Roamresearch = React.forwardRef(function Roamresearch({color = 'currentColor', size = 24, title = "roamresearch", ...others}, ref) { - const Roamresearch = React.forwardRef(function Roamresearch({color = 'currentColor', size = 24, title = "roamresearch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Roamresearch - \ No newline at end of file +export default Roamresearch; diff --git a/src/components/Roblox.tsx b/src/components/Roblox.tsx index 227403a68..66be0db59 100644 --- a/src/components/Roblox.tsx +++ b/src/components/Roblox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RobloxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RobloxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Roblox = React.forwardRef(function Roblox({color = 'currentColor', size = 24, title = "roblox", ...others}, ref) { - const Roblox = React.forwardRef(function Roblox({color = 'currentColor', size = 24, title = "roblox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Roblox - \ No newline at end of file +export default Roblox; diff --git a/src/components/Robotframework.tsx b/src/components/Robotframework.tsx index 337142f06..71f98a0be 100644 --- a/src/components/Robotframework.tsx +++ b/src/components/Robotframework.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RobotframeworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RobotframeworkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Robotframework = React.forwardRef(function Robotframework({color = 'currentColor', size = 24, title = "robotframework", ...others}, ref) { - const Robotframework = React.forwardRef(function Robotframework({color = 'currentColor', size = 24, title = "robotframework", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Robotframework - \ No newline at end of file +export default Robotframework; diff --git a/src/components/Rocketdotchat.tsx b/src/components/Rocketdotchat.tsx index 85a94d5a4..0ffc9c955 100644 --- a/src/components/Rocketdotchat.tsx +++ b/src/components/Rocketdotchat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RocketdotchatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RocketdotchatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rocketdotchat = React.forwardRef(function Rocketdotchat({color = 'currentColor', size = 24, title = "rocketdotchat", ...others}, ref) { - const Rocketdotchat = React.forwardRef(function Rocketdotchat({color = 'currentColor', size = 24, title = "rocketdotchat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rocketdotchat - \ No newline at end of file +export default Rocketdotchat; diff --git a/src/components/Rocksdb.tsx b/src/components/Rocksdb.tsx index 76eefbc8f..1d79ab2f2 100644 --- a/src/components/Rocksdb.tsx +++ b/src/components/Rocksdb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RocksdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RocksdbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rocksdb = React.forwardRef(function Rocksdb({color = 'currentColor', size = 24, title = "rocksdb", ...others}, ref) { - const Rocksdb = React.forwardRef(function Rocksdb({color = 'currentColor', size = 24, title = "rocksdb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rocksdb - \ No newline at end of file +export default Rocksdb; diff --git a/src/components/Rockylinux.tsx b/src/components/Rockylinux.tsx index 9906b2f62..5897c9140 100644 --- a/src/components/Rockylinux.tsx +++ b/src/components/Rockylinux.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RockylinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RockylinuxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rockylinux = React.forwardRef(function Rockylinux({color = 'currentColor', size = 24, title = "rockylinux", ...others}, ref) { - const Rockylinux = React.forwardRef(function Rockylinux({color = 'currentColor', size = 24, title = "rockylinux", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rockylinux - \ No newline at end of file +export default Rockylinux; diff --git a/src/components/Roku.tsx b/src/components/Roku.tsx index bc44e56d3..7393ec22b 100644 --- a/src/components/Roku.tsx +++ b/src/components/Roku.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RokuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RokuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Roku = React.forwardRef(function Roku({color = 'currentColor', size = 24, title = "roku", ...others}, ref) { - const Roku = React.forwardRef(function Roku({color = 'currentColor', size = 24, title = "roku", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Roku - \ No newline at end of file +export default Roku; diff --git a/src/components/Rollsroyce.tsx b/src/components/Rollsroyce.tsx index 74148381e..024df5934 100644 --- a/src/components/Rollsroyce.tsx +++ b/src/components/Rollsroyce.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RollsroyceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RollsroyceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rollsroyce = React.forwardRef(function Rollsroyce({color = 'currentColor', size = 24, title = "rollsroyce", ...others}, ref) { - const Rollsroyce = React.forwardRef(function Rollsroyce({color = 'currentColor', size = 24, title = "rollsroyce", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rollsroyce - \ No newline at end of file +export default Rollsroyce; diff --git a/src/components/Rollupdotjs.tsx b/src/components/Rollupdotjs.tsx index a31cc3782..e404a187b 100644 --- a/src/components/Rollupdotjs.tsx +++ b/src/components/Rollupdotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RollupdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RollupdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rollupdotjs = React.forwardRef(function Rollupdotjs({color = 'currentColor', size = 24, title = "rollupdotjs", ...others}, ref) { - const Rollupdotjs = React.forwardRef(function Rollupdotjs({color = 'currentColor', size = 24, title = "rollupdotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rollupdotjs - \ No newline at end of file +export default Rollupdotjs; diff --git a/src/components/Rome.tsx b/src/components/Rome.tsx index ca35c7f7c..9e25eae40 100644 --- a/src/components/Rome.tsx +++ b/src/components/Rome.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RomeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rome = React.forwardRef(function Rome({color = 'currentColor', size = 24, title = "rome", ...others}, ref) { - const Rome = React.forwardRef(function Rome({color = 'currentColor', size = 24, title = "rome", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rome - \ No newline at end of file +export default Rome; diff --git a/src/components/Roots.tsx b/src/components/Roots.tsx index 98933e678..30695d148 100644 --- a/src/components/Roots.tsx +++ b/src/components/Roots.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RootsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RootsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Roots = React.forwardRef(function Roots({color = 'currentColor', size = 24, title = "roots", ...others}, ref) { - const Roots = React.forwardRef(function Roots({color = 'currentColor', size = 24, title = "roots", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Roots - \ No newline at end of file +export default Roots; diff --git a/src/components/Rootsbedrock.tsx b/src/components/Rootsbedrock.tsx index 783225a20..a0fba89a1 100644 --- a/src/components/Rootsbedrock.tsx +++ b/src/components/Rootsbedrock.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RootsbedrockProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RootsbedrockProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rootsbedrock = React.forwardRef(function Rootsbedrock({color = 'currentColor', size = 24, title = "rootsbedrock", ...others}, ref) { - const Rootsbedrock = React.forwardRef(function Rootsbedrock({color = 'currentColor', size = 24, title = "rootsbedrock", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rootsbedrock - \ No newline at end of file +export default Rootsbedrock; diff --git a/src/components/Rootssage.tsx b/src/components/Rootssage.tsx index b32b26d55..ba7d18f86 100644 --- a/src/components/Rootssage.tsx +++ b/src/components/Rootssage.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RootssageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RootssageProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rootssage = React.forwardRef(function Rootssage({color = 'currentColor', size = 24, title = "rootssage", ...others}, ref) { - const Rootssage = React.forwardRef(function Rootssage({color = 'currentColor', size = 24, title = "rootssage", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rootssage - \ No newline at end of file +export default Rootssage; diff --git a/src/components/Ros.tsx b/src/components/Ros.tsx index b9df114ce..0e7e51af8 100644 --- a/src/components/Ros.tsx +++ b/src/components/Ros.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ros = React.forwardRef(function Ros({color = 'currentColor', size = 24, title = "ros", ...others}, ref) { - const Ros = React.forwardRef(function Ros({color = 'currentColor', size = 24, title = "ros", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ros - \ No newline at end of file +export default Ros; diff --git a/src/components/Rossmann.tsx b/src/components/Rossmann.tsx index 7908797e8..a0c30786b 100644 --- a/src/components/Rossmann.tsx +++ b/src/components/Rossmann.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RossmannProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RossmannProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rossmann = React.forwardRef(function Rossmann({color = 'currentColor', size = 24, title = "rossmann", ...others}, ref) { - const Rossmann = React.forwardRef(function Rossmann({color = 'currentColor', size = 24, title = "rossmann", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rossmann - \ No newline at end of file +export default Rossmann; diff --git a/src/components/Rotaryinternational.tsx b/src/components/Rotaryinternational.tsx index cd156fbdb..70793e371 100644 --- a/src/components/Rotaryinternational.tsx +++ b/src/components/Rotaryinternational.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RotaryinternationalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RotaryinternationalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rotaryinternational = React.forwardRef(function Rotaryinternational({color = 'currentColor', size = 24, title = "rotaryinternational", ...others}, ref) { - const Rotaryinternational = React.forwardRef(function Rotaryinternational({color = 'currentColor', size = 24, title = "rotaryinternational", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rotaryinternational - \ No newline at end of file +export default Rotaryinternational; diff --git a/src/components/Rottentomatoes.tsx b/src/components/Rottentomatoes.tsx index 360a920d3..2854e10d4 100644 --- a/src/components/Rottentomatoes.tsx +++ b/src/components/Rottentomatoes.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RottentomatoesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RottentomatoesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rottentomatoes = React.forwardRef(function Rottentomatoes({color = 'currentColor', size = 24, title = "rottentomatoes", ...others}, ref) { - const Rottentomatoes = React.forwardRef(function Rottentomatoes({color = 'currentColor', size = 24, title = "rottentomatoes", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rottentomatoes - \ No newline at end of file +export default Rottentomatoes; diff --git a/src/components/Roundcube.tsx b/src/components/Roundcube.tsx index 26107e601..2e34c0a24 100644 --- a/src/components/Roundcube.tsx +++ b/src/components/Roundcube.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RoundcubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RoundcubeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Roundcube = React.forwardRef(function Roundcube({color = 'currentColor', size = 24, title = "roundcube", ...others}, ref) { - const Roundcube = React.forwardRef(function Roundcube({color = 'currentColor', size = 24, title = "roundcube", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Roundcube - \ No newline at end of file +export default Roundcube; diff --git a/src/components/Rss.tsx b/src/components/Rss.tsx index 1531d8494..45c446c4f 100644 --- a/src/components/Rss.tsx +++ b/src/components/Rss.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RssProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rss = React.forwardRef(function Rss({color = 'currentColor', size = 24, title = "rss", ...others}, ref) { - const Rss = React.forwardRef(function Rss({color = 'currentColor', size = 24, title = "rss", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rss - \ No newline at end of file +export default Rss; diff --git a/src/components/Rstudio.tsx b/src/components/Rstudio.tsx index 87ce41f3c..337e7ac9c 100644 --- a/src/components/Rstudio.tsx +++ b/src/components/Rstudio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RstudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RstudioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rstudio = React.forwardRef(function Rstudio({color = 'currentColor', size = 24, title = "rstudio", ...others}, ref) { - const Rstudio = React.forwardRef(function Rstudio({color = 'currentColor', size = 24, title = "rstudio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rstudio - \ No newline at end of file +export default Rstudio; diff --git a/src/components/Rte.tsx b/src/components/Rte.tsx index c8fac3880..d2fd9f33a 100644 --- a/src/components/Rte.tsx +++ b/src/components/Rte.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rte = React.forwardRef(function Rte({color = 'currentColor', size = 24, title = "rte", ...others}, ref) { - const Rte = React.forwardRef(function Rte({color = 'currentColor', size = 24, title = "rte", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rte - \ No newline at end of file +export default Rte; diff --git a/src/components/Rtl.tsx b/src/components/Rtl.tsx index 5b5074ec0..1d7c8715e 100644 --- a/src/components/Rtl.tsx +++ b/src/components/Rtl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RtlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RtlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rtl = React.forwardRef(function Rtl({color = 'currentColor', size = 24, title = "rtl", ...others}, ref) { - const Rtl = React.forwardRef(function Rtl({color = 'currentColor', size = 24, title = "rtl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rtl - \ No newline at end of file +export default Rtl; diff --git a/src/components/Rtlzwei.tsx b/src/components/Rtlzwei.tsx index 8304dd081..8cbbf64e5 100644 --- a/src/components/Rtlzwei.tsx +++ b/src/components/Rtlzwei.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RtlzweiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RtlzweiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rtlzwei = React.forwardRef(function Rtlzwei({color = 'currentColor', size = 24, title = "rtlzwei", ...others}, ref) { - const Rtlzwei = React.forwardRef(function Rtlzwei({color = 'currentColor', size = 24, title = "rtlzwei", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rtlzwei - \ No newline at end of file +export default Rtlzwei; diff --git a/src/components/Rubocop.tsx b/src/components/Rubocop.tsx index 97c5e24f5..300b8004f 100644 --- a/src/components/Rubocop.tsx +++ b/src/components/Rubocop.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RubocopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RubocopProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rubocop = React.forwardRef(function Rubocop({color = 'currentColor', size = 24, title = "rubocop", ...others}, ref) { - const Rubocop = React.forwardRef(function Rubocop({color = 'currentColor', size = 24, title = "rubocop", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rubocop - \ No newline at end of file +export default Rubocop; diff --git a/src/components/Ruby.tsx b/src/components/Ruby.tsx index f80571cbc..827369d6d 100644 --- a/src/components/Ruby.tsx +++ b/src/components/Ruby.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RubyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RubyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ruby = React.forwardRef(function Ruby({color = 'currentColor', size = 24, title = "ruby", ...others}, ref) { - const Ruby = React.forwardRef(function Ruby({color = 'currentColor', size = 24, title = "ruby", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ruby - \ No newline at end of file +export default Ruby; diff --git a/src/components/Rubygems.tsx b/src/components/Rubygems.tsx index 6166c4019..f1e023089 100644 --- a/src/components/Rubygems.tsx +++ b/src/components/Rubygems.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RubygemsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RubygemsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rubygems = React.forwardRef(function Rubygems({color = 'currentColor', size = 24, title = "rubygems", ...others}, ref) { - const Rubygems = React.forwardRef(function Rubygems({color = 'currentColor', size = 24, title = "rubygems", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rubygems - \ No newline at end of file +export default Rubygems; diff --git a/src/components/Rubyonrails.tsx b/src/components/Rubyonrails.tsx index 133748fd2..a1d9f4ddb 100644 --- a/src/components/Rubyonrails.tsx +++ b/src/components/Rubyonrails.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RubyonrailsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RubyonrailsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rubyonrails = React.forwardRef(function Rubyonrails({color = 'currentColor', size = 24, title = "rubyonrails", ...others}, ref) { - const Rubyonrails = React.forwardRef(function Rubyonrails({color = 'currentColor', size = 24, title = "rubyonrails", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rubyonrails - \ No newline at end of file +export default Rubyonrails; diff --git a/src/components/Rubysinatra.tsx b/src/components/Rubysinatra.tsx index 5dc6f9f1b..cea92a79d 100644 --- a/src/components/Rubysinatra.tsx +++ b/src/components/Rubysinatra.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RubysinatraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RubysinatraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rubysinatra = React.forwardRef(function Rubysinatra({color = 'currentColor', size = 24, title = "rubysinatra", ...others}, ref) { - const Rubysinatra = React.forwardRef(function Rubysinatra({color = 'currentColor', size = 24, title = "rubysinatra", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rubysinatra - \ No newline at end of file +export default Rubysinatra; diff --git a/src/components/Runkeeper.tsx b/src/components/Runkeeper.tsx index 3e763feda..aa248b159 100644 --- a/src/components/Runkeeper.tsx +++ b/src/components/Runkeeper.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RunkeeperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RunkeeperProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Runkeeper = React.forwardRef(function Runkeeper({color = 'currentColor', size = 24, title = "runkeeper", ...others}, ref) { - const Runkeeper = React.forwardRef(function Runkeeper({color = 'currentColor', size = 24, title = "runkeeper", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Runkeeper - \ No newline at end of file +export default Runkeeper; diff --git a/src/components/Runkit.tsx b/src/components/Runkit.tsx index c5e3115df..ccc9e7365 100644 --- a/src/components/Runkit.tsx +++ b/src/components/Runkit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RunkitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RunkitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Runkit = React.forwardRef(function Runkit({color = 'currentColor', size = 24, title = "runkit", ...others}, ref) { - const Runkit = React.forwardRef(function Runkit({color = 'currentColor', size = 24, title = "runkit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Runkit - \ No newline at end of file +export default Runkit; diff --git a/src/components/Rust.tsx b/src/components/Rust.tsx index 03c651dfa..57ad3695e 100644 --- a/src/components/Rust.tsx +++ b/src/components/Rust.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RustProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RustProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rust = React.forwardRef(function Rust({color = 'currentColor', size = 24, title = "rust", ...others}, ref) { - const Rust = React.forwardRef(function Rust({color = 'currentColor', size = 24, title = "rust", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rust - \ No newline at end of file +export default Rust; diff --git a/src/components/Rxdb.tsx b/src/components/Rxdb.tsx index 8641c593b..3268a18d8 100644 --- a/src/components/Rxdb.tsx +++ b/src/components/Rxdb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RxdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RxdbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Rxdb = React.forwardRef(function Rxdb({color = 'currentColor', size = 24, title = "rxdb", ...others}, ref) { - const Rxdb = React.forwardRef(function Rxdb({color = 'currentColor', size = 24, title = "rxdb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Rxdb - \ No newline at end of file +export default Rxdb; diff --git a/src/components/Ryanair.tsx b/src/components/Ryanair.tsx index 5e296e0d1..3462c8e21 100644 --- a/src/components/Ryanair.tsx +++ b/src/components/Ryanair.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type RyanairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type RyanairProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ryanair = React.forwardRef(function Ryanair({color = 'currentColor', size = 24, title = "ryanair", ...others}, ref) { - const Ryanair = React.forwardRef(function Ryanair({color = 'currentColor', size = 24, title = "ryanair", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ryanair - \ No newline at end of file +export default Ryanair; diff --git a/src/components/S7airlines.tsx b/src/components/S7airlines.tsx index 228c37513..8781e3e77 100644 --- a/src/components/S7airlines.tsx +++ b/src/components/S7airlines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type S7airlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type S7airlinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const S7airlines = React.forwardRef(function S7airlines({color = 'currentColor', size = 24, title = "s7airlines", ...others}, ref) { - const S7airlines = React.forwardRef(function S7airlines({color = 'currentColor', size = 24, title = "s7airlines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default S7airlines - \ No newline at end of file +export default S7airlines; diff --git a/src/components/Sabanci.tsx b/src/components/Sabanci.tsx index 6645222b4..6a46571eb 100644 --- a/src/components/Sabanci.tsx +++ b/src/components/Sabanci.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SabanciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SabanciProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sabanci = React.forwardRef(function Sabanci({color = 'currentColor', size = 24, title = "sabanci", ...others}, ref) { - const Sabanci = React.forwardRef(function Sabanci({color = 'currentColor', size = 24, title = "sabanci", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sabanci - \ No newline at end of file +export default Sabanci; diff --git a/src/components/Safari.tsx b/src/components/Safari.tsx index faa16c3a4..e650f0ed3 100644 --- a/src/components/Safari.tsx +++ b/src/components/Safari.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SafariProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SafariProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Safari = React.forwardRef(function Safari({color = 'currentColor', size = 24, title = "safari", ...others}, ref) { - const Safari = React.forwardRef(function Safari({color = 'currentColor', size = 24, title = "safari", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Safari - \ No newline at end of file +export default Safari; diff --git a/src/components/Sahibinden.tsx b/src/components/Sahibinden.tsx index 6323dcc45..e74b422ea 100644 --- a/src/components/Sahibinden.tsx +++ b/src/components/Sahibinden.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SahibindenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SahibindenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sahibinden = React.forwardRef(function Sahibinden({color = 'currentColor', size = 24, title = "sahibinden", ...others}, ref) { - const Sahibinden = React.forwardRef(function Sahibinden({color = 'currentColor', size = 24, title = "sahibinden", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sahibinden - \ No newline at end of file +export default Sahibinden; diff --git a/src/components/Sailfishos.tsx b/src/components/Sailfishos.tsx index 2d47845ab..f525193e0 100644 --- a/src/components/Sailfishos.tsx +++ b/src/components/Sailfishos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SailfishosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SailfishosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sailfishos = React.forwardRef(function Sailfishos({color = 'currentColor', size = 24, title = "sailfishos", ...others}, ref) { - const Sailfishos = React.forwardRef(function Sailfishos({color = 'currentColor', size = 24, title = "sailfishos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sailfishos - \ No newline at end of file +export default Sailfishos; diff --git a/src/components/Salesforce.tsx b/src/components/Salesforce.tsx index c192e6a61..bba530b82 100644 --- a/src/components/Salesforce.tsx +++ b/src/components/Salesforce.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SalesforceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SalesforceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Salesforce = React.forwardRef(function Salesforce({color = 'currentColor', size = 24, title = "salesforce", ...others}, ref) { - const Salesforce = React.forwardRef(function Salesforce({color = 'currentColor', size = 24, title = "salesforce", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Salesforce - \ No newline at end of file +export default Salesforce; diff --git a/src/components/Saltproject.tsx b/src/components/Saltproject.tsx index 51af72fa5..4156aa385 100644 --- a/src/components/Saltproject.tsx +++ b/src/components/Saltproject.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SaltprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SaltprojectProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Saltproject = React.forwardRef(function Saltproject({color = 'currentColor', size = 24, title = "saltproject", ...others}, ref) { - const Saltproject = React.forwardRef(function Saltproject({color = 'currentColor', size = 24, title = "saltproject", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Saltproject - \ No newline at end of file +export default Saltproject; diff --git a/src/components/Samsung.tsx b/src/components/Samsung.tsx index 7c21a458f..66dc241b5 100644 --- a/src/components/Samsung.tsx +++ b/src/components/Samsung.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SamsungProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SamsungProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Samsung = React.forwardRef(function Samsung({color = 'currentColor', size = 24, title = "samsung", ...others}, ref) { - const Samsung = React.forwardRef(function Samsung({color = 'currentColor', size = 24, title = "samsung", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Samsung - \ No newline at end of file +export default Samsung; diff --git a/src/components/Samsungpay.tsx b/src/components/Samsungpay.tsx index 3e3e6bb62..ec128ee60 100644 --- a/src/components/Samsungpay.tsx +++ b/src/components/Samsungpay.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SamsungpayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SamsungpayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Samsungpay = React.forwardRef(function Samsungpay({color = 'currentColor', size = 24, title = "samsungpay", ...others}, ref) { - const Samsungpay = React.forwardRef(function Samsungpay({color = 'currentColor', size = 24, title = "samsungpay", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Samsungpay - \ No newline at end of file +export default Samsungpay; diff --git a/src/components/Sandisk.tsx b/src/components/Sandisk.tsx index 08f9eeda6..f46e11da8 100644 --- a/src/components/Sandisk.tsx +++ b/src/components/Sandisk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SandiskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SandiskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sandisk = React.forwardRef(function Sandisk({color = 'currentColor', size = 24, title = "sandisk", ...others}, ref) { - const Sandisk = React.forwardRef(function Sandisk({color = 'currentColor', size = 24, title = "sandisk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sandisk - \ No newline at end of file +export default Sandisk; diff --git a/src/components/Sanfranciscomunicipalrailway.tsx b/src/components/Sanfranciscomunicipalrailway.tsx index 8b636bcac..f313dde7e 100644 --- a/src/components/Sanfranciscomunicipalrailway.tsx +++ b/src/components/Sanfranciscomunicipalrailway.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SanfranciscomunicipalrailwayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SanfranciscomunicipalrailwayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sanfranciscomunicipalrailway = React.forwardRef(function Sanfranciscomunicipalrailway({color = 'currentColor', size = 24, title = "sanfranciscomunicipalrailway", ...others}, ref) { - const Sanfranciscomunicipalrailway = React.forwardRef(function Sanfranciscomunicipalrailway({color = 'currentColor', size = 24, title = "sanfranciscomunicipalrailway", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sanfranciscomunicipalrailway - \ No newline at end of file +export default Sanfranciscomunicipalrailway; diff --git a/src/components/Saopaulometro.tsx b/src/components/Saopaulometro.tsx index 3d693ee46..f8b643a37 100644 --- a/src/components/Saopaulometro.tsx +++ b/src/components/Saopaulometro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SaopaulometroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SaopaulometroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Saopaulometro = React.forwardRef(function Saopaulometro({color = 'currentColor', size = 24, title = "saopaulometro", ...others}, ref) { - const Saopaulometro = React.forwardRef(function Saopaulometro({color = 'currentColor', size = 24, title = "saopaulometro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Saopaulometro - \ No newline at end of file +export default Saopaulometro; diff --git a/src/components/Sap.tsx b/src/components/Sap.tsx index 52dd70ebf..c1e11e4dd 100644 --- a/src/components/Sap.tsx +++ b/src/components/Sap.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SapProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sap = React.forwardRef(function Sap({color = 'currentColor', size = 24, title = "sap", ...others}, ref) { - const Sap = React.forwardRef(function Sap({color = 'currentColor', size = 24, title = "sap", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sap - \ No newline at end of file +export default Sap; diff --git a/src/components/Sass.tsx b/src/components/Sass.tsx index b056559de..39f57e818 100644 --- a/src/components/Sass.tsx +++ b/src/components/Sass.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SassProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SassProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sass = React.forwardRef(function Sass({color = 'currentColor', size = 24, title = "sass", ...others}, ref) { - const Sass = React.forwardRef(function Sass({color = 'currentColor', size = 24, title = "sass", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sass - \ No newline at end of file +export default Sass; diff --git a/src/components/Sat1.tsx b/src/components/Sat1.tsx index 65d025410..10bab2186 100644 --- a/src/components/Sat1.tsx +++ b/src/components/Sat1.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Sat1Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Sat1Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sat1 = React.forwardRef(function Sat1({color = 'currentColor', size = 24, title = "sat1", ...others}, ref) { - const Sat1 = React.forwardRef(function Sat1({color = 'currentColor', size = 24, title = "sat1", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sat1 - \ No newline at end of file +export default Sat1; diff --git a/src/components/Saturn.tsx b/src/components/Saturn.tsx index f6f8eedd7..d34be0a6a 100644 --- a/src/components/Saturn.tsx +++ b/src/components/Saturn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SaturnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SaturnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Saturn = React.forwardRef(function Saturn({color = 'currentColor', size = 24, title = "saturn", ...others}, ref) { - const Saturn = React.forwardRef(function Saturn({color = 'currentColor', size = 24, title = "saturn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Saturn - \ No newline at end of file +export default Saturn; diff --git a/src/components/Saucelabs.tsx b/src/components/Saucelabs.tsx index a7f3ccbd6..4e7acd0d6 100644 --- a/src/components/Saucelabs.tsx +++ b/src/components/Saucelabs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SaucelabsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SaucelabsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Saucelabs = React.forwardRef(function Saucelabs({color = 'currentColor', size = 24, title = "saucelabs", ...others}, ref) { - const Saucelabs = React.forwardRef(function Saucelabs({color = 'currentColor', size = 24, title = "saucelabs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Saucelabs - \ No newline at end of file +export default Saucelabs; diff --git a/src/components/Scala.tsx b/src/components/Scala.tsx index 10e7d070e..a3ba8283d 100644 --- a/src/components/Scala.tsx +++ b/src/components/Scala.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScalaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScalaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scala = React.forwardRef(function Scala({color = 'currentColor', size = 24, title = "scala", ...others}, ref) { - const Scala = React.forwardRef(function Scala({color = 'currentColor', size = 24, title = "scala", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scala - \ No newline at end of file +export default Scala; diff --git a/src/components/Scaleway.tsx b/src/components/Scaleway.tsx index 9e1b73ad9..9ba4f16af 100644 --- a/src/components/Scaleway.tsx +++ b/src/components/Scaleway.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScalewayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScalewayProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scaleway = React.forwardRef(function Scaleway({color = 'currentColor', size = 24, title = "scaleway", ...others}, ref) { - const Scaleway = React.forwardRef(function Scaleway({color = 'currentColor', size = 24, title = "scaleway", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scaleway - \ No newline at end of file +export default Scaleway; diff --git a/src/components/Scania.tsx b/src/components/Scania.tsx index 3fe635f0e..148de1f1f 100644 --- a/src/components/Scania.tsx +++ b/src/components/Scania.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScaniaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScaniaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scania = React.forwardRef(function Scania({color = 'currentColor', size = 24, title = "scania", ...others}, ref) { - const Scania = React.forwardRef(function Scania({color = 'currentColor', size = 24, title = "scania", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scania - \ No newline at end of file +export default Scania; diff --git a/src/components/Schneiderelectric.tsx b/src/components/Schneiderelectric.tsx index 3a450c563..b0ec0aac3 100644 --- a/src/components/Schneiderelectric.tsx +++ b/src/components/Schneiderelectric.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SchneiderelectricProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SchneiderelectricProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Schneiderelectric = React.forwardRef(function Schneiderelectric({color = 'currentColor', size = 24, title = "schneiderelectric", ...others}, ref) { - const Schneiderelectric = React.forwardRef(function Schneiderelectric({color = 'currentColor', size = 24, title = "schneiderelectric", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Schneiderelectric - \ No newline at end of file +export default Schneiderelectric; diff --git a/src/components/Scikitlearn.tsx b/src/components/Scikitlearn.tsx index b8a24185f..3f03763a7 100644 --- a/src/components/Scikitlearn.tsx +++ b/src/components/Scikitlearn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScikitlearnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScikitlearnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scikitlearn = React.forwardRef(function Scikitlearn({color = 'currentColor', size = 24, title = "scikitlearn", ...others}, ref) { - const Scikitlearn = React.forwardRef(function Scikitlearn({color = 'currentColor', size = 24, title = "scikitlearn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scikitlearn - \ No newline at end of file +export default Scikitlearn; diff --git a/src/components/Scipy.tsx b/src/components/Scipy.tsx index 2e4fdb78a..579eaf0b0 100644 --- a/src/components/Scipy.tsx +++ b/src/components/Scipy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScipyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScipyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scipy = React.forwardRef(function Scipy({color = 'currentColor', size = 24, title = "scipy", ...others}, ref) { - const Scipy = React.forwardRef(function Scipy({color = 'currentColor', size = 24, title = "scipy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scipy - \ No newline at end of file +export default Scipy; diff --git a/src/components/Scopus.tsx b/src/components/Scopus.tsx index 7be432d0b..eb4c14228 100644 --- a/src/components/Scopus.tsx +++ b/src/components/Scopus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScopusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScopusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scopus = React.forwardRef(function Scopus({color = 'currentColor', size = 24, title = "scopus", ...others}, ref) { - const Scopus = React.forwardRef(function Scopus({color = 'currentColor', size = 24, title = "scopus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scopus - \ No newline at end of file +export default Scopus; diff --git a/src/components/Scpfoundation.tsx b/src/components/Scpfoundation.tsx index 69bc4c85e..0b89ad720 100644 --- a/src/components/Scpfoundation.tsx +++ b/src/components/Scpfoundation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScpfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScpfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scpfoundation = React.forwardRef(function Scpfoundation({color = 'currentColor', size = 24, title = "scpfoundation", ...others}, ref) { - const Scpfoundation = React.forwardRef(function Scpfoundation({color = 'currentColor', size = 24, title = "scpfoundation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scpfoundation - \ No newline at end of file +export default Scpfoundation; diff --git a/src/components/Scratch.tsx b/src/components/Scratch.tsx index eb12fb6c2..941ebc9ad 100644 --- a/src/components/Scratch.tsx +++ b/src/components/Scratch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScratchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScratchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scratch = React.forwardRef(function Scratch({color = 'currentColor', size = 24, title = "scratch", ...others}, ref) { - const Scratch = React.forwardRef(function Scratch({color = 'currentColor', size = 24, title = "scratch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scratch - \ No newline at end of file +export default Scratch; diff --git a/src/components/Screencastify.tsx b/src/components/Screencastify.tsx index e21920b1a..a795d6ba0 100644 --- a/src/components/Screencastify.tsx +++ b/src/components/Screencastify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScreencastifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScreencastifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Screencastify = React.forwardRef(function Screencastify({color = 'currentColor', size = 24, title = "screencastify", ...others}, ref) { - const Screencastify = React.forwardRef(function Screencastify({color = 'currentColor', size = 24, title = "screencastify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Screencastify - \ No newline at end of file +export default Screencastify; diff --git a/src/components/Scribd.tsx b/src/components/Scribd.tsx index c2be3b95c..8867bca29 100644 --- a/src/components/Scribd.tsx +++ b/src/components/Scribd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScribdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScribdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scribd = React.forwardRef(function Scribd({color = 'currentColor', size = 24, title = "scribd", ...others}, ref) { - const Scribd = React.forwardRef(function Scribd({color = 'currentColor', size = 24, title = "scribd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scribd - \ No newline at end of file +export default Scribd; diff --git a/src/components/Scrimba.tsx b/src/components/Scrimba.tsx index 75e663f76..cc350b7ca 100644 --- a/src/components/Scrimba.tsx +++ b/src/components/Scrimba.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScrimbaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScrimbaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scrimba = React.forwardRef(function Scrimba({color = 'currentColor', size = 24, title = "scrimba", ...others}, ref) { - const Scrimba = React.forwardRef(function Scrimba({color = 'currentColor', size = 24, title = "scrimba", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scrimba - \ No newline at end of file +export default Scrimba; diff --git a/src/components/Scrollreveal.tsx b/src/components/Scrollreveal.tsx index b3ed6f10c..2d3a4918c 100644 --- a/src/components/Scrollreveal.tsx +++ b/src/components/Scrollreveal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScrollrevealProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScrollrevealProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scrollreveal = React.forwardRef(function Scrollreveal({color = 'currentColor', size = 24, title = "scrollreveal", ...others}, ref) { - const Scrollreveal = React.forwardRef(function Scrollreveal({color = 'currentColor', size = 24, title = "scrollreveal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scrollreveal - \ No newline at end of file +export default Scrollreveal; diff --git a/src/components/Scrumalliance.tsx b/src/components/Scrumalliance.tsx index d73c57929..7585df53f 100644 --- a/src/components/Scrumalliance.tsx +++ b/src/components/Scrumalliance.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScrumallianceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScrumallianceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scrumalliance = React.forwardRef(function Scrumalliance({color = 'currentColor', size = 24, title = "scrumalliance", ...others}, ref) { - const Scrumalliance = React.forwardRef(function Scrumalliance({color = 'currentColor', size = 24, title = "scrumalliance", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scrumalliance - \ No newline at end of file +export default Scrumalliance; diff --git a/src/components/Scrutinizerci.tsx b/src/components/Scrutinizerci.tsx index 4d119557f..b0dcee934 100644 --- a/src/components/Scrutinizerci.tsx +++ b/src/components/Scrutinizerci.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ScrutinizerciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ScrutinizerciProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Scrutinizerci = React.forwardRef(function Scrutinizerci({color = 'currentColor', size = 24, title = "scrutinizerci", ...others}, ref) { - const Scrutinizerci = React.forwardRef(function Scrutinizerci({color = 'currentColor', size = 24, title = "scrutinizerci", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Scrutinizerci - \ No newline at end of file +export default Scrutinizerci; diff --git a/src/components/Seagate.tsx b/src/components/Seagate.tsx index 0785eac3c..95dbb4b4a 100644 --- a/src/components/Seagate.tsx +++ b/src/components/Seagate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SeagateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SeagateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Seagate = React.forwardRef(function Seagate({color = 'currentColor', size = 24, title = "seagate", ...others}, ref) { - const Seagate = React.forwardRef(function Seagate({color = 'currentColor', size = 24, title = "seagate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Seagate - \ No newline at end of file +export default Seagate; diff --git a/src/components/Seat.tsx b/src/components/Seat.tsx index dd7b8f980..af68dba67 100644 --- a/src/components/Seat.tsx +++ b/src/components/Seat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SeatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SeatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Seat = React.forwardRef(function Seat({color = 'currentColor', size = 24, title = "seat", ...others}, ref) { - const Seat = React.forwardRef(function Seat({color = 'currentColor', size = 24, title = "seat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Seat - \ No newline at end of file +export default Seat; diff --git a/src/components/Securityscorecard.tsx b/src/components/Securityscorecard.tsx index bde2b736c..ae7fefdd0 100644 --- a/src/components/Securityscorecard.tsx +++ b/src/components/Securityscorecard.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SecurityscorecardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SecurityscorecardProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Securityscorecard = React.forwardRef(function Securityscorecard({color = 'currentColor', size = 24, title = "securityscorecard", ...others}, ref) { - const Securityscorecard = React.forwardRef(function Securityscorecard({color = 'currentColor', size = 24, title = "securityscorecard", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Securityscorecard - \ No newline at end of file +export default Securityscorecard; diff --git a/src/components/Sefaria.tsx b/src/components/Sefaria.tsx index 5f87141a5..31a182129 100644 --- a/src/components/Sefaria.tsx +++ b/src/components/Sefaria.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SefariaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SefariaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sefaria = React.forwardRef(function Sefaria({color = 'currentColor', size = 24, title = "sefaria", ...others}, ref) { - const Sefaria = React.forwardRef(function Sefaria({color = 'currentColor', size = 24, title = "sefaria", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sefaria - \ No newline at end of file +export default Sefaria; diff --git a/src/components/Sega.tsx b/src/components/Sega.tsx index c26ab9bc7..32ffe5f60 100644 --- a/src/components/Sega.tsx +++ b/src/components/Sega.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SegaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SegaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sega = React.forwardRef(function Sega({color = 'currentColor', size = 24, title = "sega", ...others}, ref) { - const Sega = React.forwardRef(function Sega({color = 'currentColor', size = 24, title = "sega", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sega - \ No newline at end of file +export default Sega; diff --git a/src/components/Selenium.tsx b/src/components/Selenium.tsx index 9c636d795..688414fae 100644 --- a/src/components/Selenium.tsx +++ b/src/components/Selenium.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SeleniumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SeleniumProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Selenium = React.forwardRef(function Selenium({color = 'currentColor', size = 24, title = "selenium", ...others}, ref) { - const Selenium = React.forwardRef(function Selenium({color = 'currentColor', size = 24, title = "selenium", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Selenium - \ No newline at end of file +export default Selenium; diff --git a/src/components/Sellfy.tsx b/src/components/Sellfy.tsx index 726df35b6..73f97076e 100644 --- a/src/components/Sellfy.tsx +++ b/src/components/Sellfy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SellfyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SellfyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sellfy = React.forwardRef(function Sellfy({color = 'currentColor', size = 24, title = "sellfy", ...others}, ref) { - const Sellfy = React.forwardRef(function Sellfy({color = 'currentColor', size = 24, title = "sellfy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sellfy - \ No newline at end of file +export default Sellfy; diff --git a/src/components/Semanticrelease.tsx b/src/components/Semanticrelease.tsx index 24ff212ea..611cc4c57 100644 --- a/src/components/Semanticrelease.tsx +++ b/src/components/Semanticrelease.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SemanticreleaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SemanticreleaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Semanticrelease = React.forwardRef(function Semanticrelease({color = 'currentColor', size = 24, title = "semanticrelease", ...others}, ref) { - const Semanticrelease = React.forwardRef(function Semanticrelease({color = 'currentColor', size = 24, title = "semanticrelease", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Semanticrelease - \ No newline at end of file +export default Semanticrelease; diff --git a/src/components/Semanticscholar.tsx b/src/components/Semanticscholar.tsx new file mode 100644 index 000000000..a68718c37 --- /dev/null +++ b/src/components/Semanticscholar.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type SemanticscholarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Semanticscholar = React.forwardRef(function Semanticscholar({color = 'currentColor', size = 24, title = "semanticscholar", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Semanticscholar; diff --git a/src/components/Semanticuireact.tsx b/src/components/Semanticuireact.tsx index d0062d3a2..db271eb09 100644 --- a/src/components/Semanticuireact.tsx +++ b/src/components/Semanticuireact.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SemanticuireactProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SemanticuireactProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Semanticuireact = React.forwardRef(function Semanticuireact({color = 'currentColor', size = 24, title = "semanticuireact", ...others}, ref) { - const Semanticuireact = React.forwardRef(function Semanticuireact({color = 'currentColor', size = 24, title = "semanticuireact", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Semanticuireact - \ No newline at end of file +export default Semanticuireact; diff --git a/src/components/Semanticweb.tsx b/src/components/Semanticweb.tsx index 935eaa26c..c40037ae3 100644 --- a/src/components/Semanticweb.tsx +++ b/src/components/Semanticweb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SemanticwebProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SemanticwebProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Semanticweb = React.forwardRef(function Semanticweb({color = 'currentColor', size = 24, title = "semanticweb", ...others}, ref) { - const Semanticweb = React.forwardRef(function Semanticweb({color = 'currentColor', size = 24, title = "semanticweb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Semanticweb - \ No newline at end of file +export default Semanticweb; diff --git a/src/components/Semaphoreci.tsx b/src/components/Semaphoreci.tsx index daddbd797..268da5459 100644 --- a/src/components/Semaphoreci.tsx +++ b/src/components/Semaphoreci.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SemaphoreciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SemaphoreciProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Semaphoreci = React.forwardRef(function Semaphoreci({color = 'currentColor', size = 24, title = "semaphoreci", ...others}, ref) { - const Semaphoreci = React.forwardRef(function Semaphoreci({color = 'currentColor', size = 24, title = "semaphoreci", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Semaphoreci - \ No newline at end of file +export default Semaphoreci; diff --git a/src/components/Semver.tsx b/src/components/Semver.tsx index c07cb24c6..82020320b 100644 --- a/src/components/Semver.tsx +++ b/src/components/Semver.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SemverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SemverProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Semver = React.forwardRef(function Semver({color = 'currentColor', size = 24, title = "semver", ...others}, ref) { - const Semver = React.forwardRef(function Semver({color = 'currentColor', size = 24, title = "semver", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Semver - \ No newline at end of file +export default Semver; diff --git a/src/components/Sencha.tsx b/src/components/Sencha.tsx index 24ac0c63f..86779210a 100644 --- a/src/components/Sencha.tsx +++ b/src/components/Sencha.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SenchaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SenchaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sencha = React.forwardRef(function Sencha({color = 'currentColor', size = 24, title = "sencha", ...others}, ref) { - const Sencha = React.forwardRef(function Sencha({color = 'currentColor', size = 24, title = "sencha", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sencha - \ No newline at end of file +export default Sencha; diff --git a/src/components/Sennheiser.tsx b/src/components/Sennheiser.tsx index a0b0dd5f0..514b806f0 100644 --- a/src/components/Sennheiser.tsx +++ b/src/components/Sennheiser.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SennheiserProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SennheiserProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sennheiser = React.forwardRef(function Sennheiser({color = 'currentColor', size = 24, title = "sennheiser", ...others}, ref) { - const Sennheiser = React.forwardRef(function Sennheiser({color = 'currentColor', size = 24, title = "sennheiser", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sennheiser - \ No newline at end of file +export default Sennheiser; diff --git a/src/components/Sensu.tsx b/src/components/Sensu.tsx index 2e9891049..4abea3026 100644 --- a/src/components/Sensu.tsx +++ b/src/components/Sensu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SensuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SensuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sensu = React.forwardRef(function Sensu({color = 'currentColor', size = 24, title = "sensu", ...others}, ref) { - const Sensu = React.forwardRef(function Sensu({color = 'currentColor', size = 24, title = "sensu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sensu - \ No newline at end of file +export default Sensu; diff --git a/src/components/Sentry.tsx b/src/components/Sentry.tsx index 39fcf3d88..671430bee 100644 --- a/src/components/Sentry.tsx +++ b/src/components/Sentry.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SentryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SentryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sentry = React.forwardRef(function Sentry({color = 'currentColor', size = 24, title = "sentry", ...others}, ref) { - const Sentry = React.forwardRef(function Sentry({color = 'currentColor', size = 24, title = "sentry", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sentry - \ No newline at end of file +export default Sentry; diff --git a/src/components/Sepa.tsx b/src/components/Sepa.tsx index d4dc0aab0..065863add 100644 --- a/src/components/Sepa.tsx +++ b/src/components/Sepa.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SepaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SepaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sepa = React.forwardRef(function Sepa({color = 'currentColor', size = 24, title = "sepa", ...others}, ref) { - const Sepa = React.forwardRef(function Sepa({color = 'currentColor', size = 24, title = "sepa", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sepa - \ No newline at end of file +export default Sepa; diff --git a/src/components/Sequelize.tsx b/src/components/Sequelize.tsx index e942ba89f..2c08a10a1 100644 --- a/src/components/Sequelize.tsx +++ b/src/components/Sequelize.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SequelizeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SequelizeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sequelize = React.forwardRef(function Sequelize({color = 'currentColor', size = 24, title = "sequelize", ...others}, ref) { - const Sequelize = React.forwardRef(function Sequelize({color = 'currentColor', size = 24, title = "sequelize", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sequelize - \ No newline at end of file +export default Sequelize; diff --git a/src/components/Serverfault.tsx b/src/components/Serverfault.tsx index 699513bad..ecafa2503 100644 --- a/src/components/Serverfault.tsx +++ b/src/components/Serverfault.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ServerfaultProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ServerfaultProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Serverfault = React.forwardRef(function Serverfault({color = 'currentColor', size = 24, title = "serverfault", ...others}, ref) { - const Serverfault = React.forwardRef(function Serverfault({color = 'currentColor', size = 24, title = "serverfault", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Serverfault - \ No newline at end of file +export default Serverfault; diff --git a/src/components/Serverless.tsx b/src/components/Serverless.tsx index 75118a87d..e480f88ef 100644 --- a/src/components/Serverless.tsx +++ b/src/components/Serverless.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ServerlessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ServerlessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Serverless = React.forwardRef(function Serverless({color = 'currentColor', size = 24, title = "serverless", ...others}, ref) { - const Serverless = React.forwardRef(function Serverless({color = 'currentColor', size = 24, title = "serverless", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Serverless - \ No newline at end of file +export default Serverless; diff --git a/src/components/Sessionize.tsx b/src/components/Sessionize.tsx new file mode 100644 index 000000000..ae034f956 --- /dev/null +++ b/src/components/Sessionize.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type SessionizeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Sessionize = React.forwardRef(function Sessionize({color = 'currentColor', size = 24, title = "sessionize", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Sessionize; diff --git a/src/components/Setapp.tsx b/src/components/Setapp.tsx new file mode 100644 index 000000000..2cf539572 --- /dev/null +++ b/src/components/Setapp.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type SetappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Setapp = React.forwardRef(function Setapp({color = 'currentColor', size = 24, title = "setapp", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Setapp; diff --git a/src/components/Sfml.tsx b/src/components/Sfml.tsx index 5fcc67143..1f77c91ce 100644 --- a/src/components/Sfml.tsx +++ b/src/components/Sfml.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SfmlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SfmlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sfml = React.forwardRef(function Sfml({color = 'currentColor', size = 24, title = "sfml", ...others}, ref) { - const Sfml = React.forwardRef(function Sfml({color = 'currentColor', size = 24, title = "sfml", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sfml - \ No newline at end of file +export default Sfml; diff --git a/src/components/Shadow.tsx b/src/components/Shadow.tsx index d4f59f5d0..633d347e8 100644 --- a/src/components/Shadow.tsx +++ b/src/components/Shadow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShadowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShadowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shadow = React.forwardRef(function Shadow({color = 'currentColor', size = 24, title = "shadow", ...others}, ref) { - const Shadow = React.forwardRef(function Shadow({color = 'currentColor', size = 24, title = "shadow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shadow - \ No newline at end of file +export default Shadow; diff --git a/src/components/Shanghaimetro.tsx b/src/components/Shanghaimetro.tsx index f0634c6e6..9bec562b9 100644 --- a/src/components/Shanghaimetro.tsx +++ b/src/components/Shanghaimetro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShanghaimetroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShanghaimetroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shanghaimetro = React.forwardRef(function Shanghaimetro({color = 'currentColor', size = 24, title = "shanghaimetro", ...others}, ref) { - const Shanghaimetro = React.forwardRef(function Shanghaimetro({color = 'currentColor', size = 24, title = "shanghaimetro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shanghaimetro - \ No newline at end of file +export default Shanghaimetro; diff --git a/src/components/Sharp.tsx b/src/components/Sharp.tsx index 980de5431..ed4d9a3d8 100644 --- a/src/components/Sharp.tsx +++ b/src/components/Sharp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SharpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SharpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sharp = React.forwardRef(function Sharp({color = 'currentColor', size = 24, title = "sharp", ...others}, ref) { - const Sharp = React.forwardRef(function Sharp({color = 'currentColor', size = 24, title = "sharp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sharp - \ No newline at end of file +export default Sharp; diff --git a/src/components/Shazam.tsx b/src/components/Shazam.tsx index e37361bd6..38e59bc54 100644 --- a/src/components/Shazam.tsx +++ b/src/components/Shazam.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShazamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShazamProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shazam = React.forwardRef(function Shazam({color = 'currentColor', size = 24, title = "shazam", ...others}, ref) { - const Shazam = React.forwardRef(function Shazam({color = 'currentColor', size = 24, title = "shazam", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shazam - \ No newline at end of file +export default Shazam; diff --git a/src/components/Shell.tsx b/src/components/Shell.tsx index 33cc1d4eb..b8d112d70 100644 --- a/src/components/Shell.tsx +++ b/src/components/Shell.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShellProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shell = React.forwardRef(function Shell({color = 'currentColor', size = 24, title = "shell", ...others}, ref) { - const Shell = React.forwardRef(function Shell({color = 'currentColor', size = 24, title = "shell", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shell - \ No newline at end of file +export default Shell; diff --git a/src/components/Shelly.tsx b/src/components/Shelly.tsx index 748e8297d..fc1fc34fb 100644 --- a/src/components/Shelly.tsx +++ b/src/components/Shelly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShellyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShellyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shelly = React.forwardRef(function Shelly({color = 'currentColor', size = 24, title = "shelly", ...others}, ref) { - const Shelly = React.forwardRef(function Shelly({color = 'currentColor', size = 24, title = "shelly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shelly - \ No newline at end of file +export default Shelly; diff --git a/src/components/Shenzhenmetro.tsx b/src/components/Shenzhenmetro.tsx index 06d7db6dc..8e96704dc 100644 --- a/src/components/Shenzhenmetro.tsx +++ b/src/components/Shenzhenmetro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShenzhenmetroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShenzhenmetroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shenzhenmetro = React.forwardRef(function Shenzhenmetro({color = 'currentColor', size = 24, title = "shenzhenmetro", ...others}, ref) { - const Shenzhenmetro = React.forwardRef(function Shenzhenmetro({color = 'currentColor', size = 24, title = "shenzhenmetro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shenzhenmetro - \ No newline at end of file +export default Shenzhenmetro; diff --git a/src/components/Shieldsdotio.tsx b/src/components/Shieldsdotio.tsx index 0ff9df098..77e52f4dd 100644 --- a/src/components/Shieldsdotio.tsx +++ b/src/components/Shieldsdotio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShieldsdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShieldsdotioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shieldsdotio = React.forwardRef(function Shieldsdotio({color = 'currentColor', size = 24, title = "shieldsdotio", ...others}, ref) { - const Shieldsdotio = React.forwardRef(function Shieldsdotio({color = 'currentColor', size = 24, title = "shieldsdotio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shieldsdotio - \ No newline at end of file +export default Shieldsdotio; diff --git a/src/components/Shikimori.tsx b/src/components/Shikimori.tsx index 650221a63..9b79e9e02 100644 --- a/src/components/Shikimori.tsx +++ b/src/components/Shikimori.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShikimoriProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShikimoriProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shikimori = React.forwardRef(function Shikimori({color = 'currentColor', size = 24, title = "shikimori", ...others}, ref) { - const Shikimori = React.forwardRef(function Shikimori({color = 'currentColor', size = 24, title = "shikimori", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shikimori - \ No newline at end of file +export default Shikimori; diff --git a/src/components/Shopee.tsx b/src/components/Shopee.tsx new file mode 100644 index 000000000..02bbefb56 --- /dev/null +++ b/src/components/Shopee.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type ShopeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Shopee = React.forwardRef(function Shopee({color = 'currentColor', size = 24, title = "shopee", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Shopee; diff --git a/src/components/Shopify.tsx b/src/components/Shopify.tsx index 3d34a800c..858ecc475 100644 --- a/src/components/Shopify.tsx +++ b/src/components/Shopify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShopifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShopifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shopify = React.forwardRef(function Shopify({color = 'currentColor', size = 24, title = "shopify", ...others}, ref) { - const Shopify = React.forwardRef(function Shopify({color = 'currentColor', size = 24, title = "shopify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shopify - \ No newline at end of file +export default Shopify; diff --git a/src/components/Shopware.tsx b/src/components/Shopware.tsx index 38c7123c0..2fa3ef997 100644 --- a/src/components/Shopware.tsx +++ b/src/components/Shopware.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShopwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShopwareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shopware = React.forwardRef(function Shopware({color = 'currentColor', size = 24, title = "shopware", ...others}, ref) { - const Shopware = React.forwardRef(function Shopware({color = 'currentColor', size = 24, title = "shopware", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shopware - \ No newline at end of file +export default Shopware; diff --git a/src/components/Shotcut.tsx b/src/components/Shotcut.tsx index 2d4b5d1b0..f81cd7a2c 100644 --- a/src/components/Shotcut.tsx +++ b/src/components/Shotcut.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShotcutProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShotcutProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shotcut = React.forwardRef(function Shotcut({color = 'currentColor', size = 24, title = "shotcut", ...others}, ref) { - const Shotcut = React.forwardRef(function Shotcut({color = 'currentColor', size = 24, title = "shotcut", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shotcut - \ No newline at end of file +export default Shotcut; diff --git a/src/components/Showpad.tsx b/src/components/Showpad.tsx index a4bf09a79..20d0fe6d4 100644 --- a/src/components/Showpad.tsx +++ b/src/components/Showpad.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShowpadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShowpadProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Showpad = React.forwardRef(function Showpad({color = 'currentColor', size = 24, title = "showpad", ...others}, ref) { - const Showpad = React.forwardRef(function Showpad({color = 'currentColor', size = 24, title = "showpad", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Showpad - \ No newline at end of file +export default Showpad; diff --git a/src/components/Showtime.tsx b/src/components/Showtime.tsx index f61fd02cf..98885621c 100644 --- a/src/components/Showtime.tsx +++ b/src/components/Showtime.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShowtimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShowtimeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Showtime = React.forwardRef(function Showtime({color = 'currentColor', size = 24, title = "showtime", ...others}, ref) { - const Showtime = React.forwardRef(function Showtime({color = 'currentColor', size = 24, title = "showtime", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Showtime - \ No newline at end of file +export default Showtime; diff --git a/src/components/Shutterstock.tsx b/src/components/Shutterstock.tsx index 189814d5e..abca58997 100644 --- a/src/components/Shutterstock.tsx +++ b/src/components/Shutterstock.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ShutterstockProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ShutterstockProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Shutterstock = React.forwardRef(function Shutterstock({color = 'currentColor', size = 24, title = "shutterstock", ...others}, ref) { - const Shutterstock = React.forwardRef(function Shutterstock({color = 'currentColor', size = 24, title = "shutterstock", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Shutterstock - \ No newline at end of file +export default Shutterstock; diff --git a/src/components/Siemens.tsx b/src/components/Siemens.tsx index a9742f6f7..a617e1ecd 100644 --- a/src/components/Siemens.tsx +++ b/src/components/Siemens.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SiemensProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SiemensProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Siemens = React.forwardRef(function Siemens({color = 'currentColor', size = 24, title = "siemens", ...others}, ref) { - const Siemens = React.forwardRef(function Siemens({color = 'currentColor', size = 24, title = "siemens", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Siemens - \ No newline at end of file +export default Siemens; diff --git a/src/components/Signal.tsx b/src/components/Signal.tsx index 4c8b90a2c..f23db1e87 100644 --- a/src/components/Signal.tsx +++ b/src/components/Signal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SignalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SignalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Signal = React.forwardRef(function Signal({color = 'currentColor', size = 24, title = "signal", ...others}, ref) { - const Signal = React.forwardRef(function Signal({color = 'currentColor', size = 24, title = "signal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Signal - \ No newline at end of file +export default Signal; diff --git a/src/components/Similarweb.tsx b/src/components/Similarweb.tsx new file mode 100644 index 000000000..11c7ab863 --- /dev/null +++ b/src/components/Similarweb.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type SimilarwebProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Similarweb = React.forwardRef(function Similarweb({color = 'currentColor', size = 24, title = "similarweb", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Similarweb; diff --git a/src/components/Simkl.tsx b/src/components/Simkl.tsx index 25a13c447..bf44e08a2 100644 --- a/src/components/Simkl.tsx +++ b/src/components/Simkl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SimklProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SimklProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Simkl = React.forwardRef(function Simkl({color = 'currentColor', size = 24, title = "simkl", ...others}, ref) { - const Simkl = React.forwardRef(function Simkl({color = 'currentColor', size = 24, title = "simkl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Simkl - \ No newline at end of file +export default Simkl; diff --git a/src/components/Simpleanalytics.tsx b/src/components/Simpleanalytics.tsx index 0933dd66e..816c98130 100644 --- a/src/components/Simpleanalytics.tsx +++ b/src/components/Simpleanalytics.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SimpleanalyticsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SimpleanalyticsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Simpleanalytics = React.forwardRef(function Simpleanalytics({color = 'currentColor', size = 24, title = "simpleanalytics", ...others}, ref) { - const Simpleanalytics = React.forwardRef(function Simpleanalytics({color = 'currentColor', size = 24, title = "simpleanalytics", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Simpleanalytics - \ No newline at end of file +export default Simpleanalytics; diff --git a/src/components/Simpleicons.tsx b/src/components/Simpleicons.tsx index 0134a1350..d66a7e359 100644 --- a/src/components/Simpleicons.tsx +++ b/src/components/Simpleicons.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SimpleiconsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SimpleiconsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Simpleicons = React.forwardRef(function Simpleicons({color = 'currentColor', size = 24, title = "simpleicons", ...others}, ref) { - const Simpleicons = React.forwardRef(function Simpleicons({color = 'currentColor', size = 24, title = "simpleicons", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Simpleicons - \ No newline at end of file +export default Simpleicons; diff --git a/src/components/Simplenote.tsx b/src/components/Simplenote.tsx index cd75eab20..7d950bba7 100644 --- a/src/components/Simplenote.tsx +++ b/src/components/Simplenote.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SimplenoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SimplenoteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Simplenote = React.forwardRef(function Simplenote({color = 'currentColor', size = 24, title = "simplenote", ...others}, ref) { - const Simplenote = React.forwardRef(function Simplenote({color = 'currentColor', size = 24, title = "simplenote", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Simplenote - \ No newline at end of file +export default Simplenote; diff --git a/src/components/Sinaweibo.tsx b/src/components/Sinaweibo.tsx index 92409f665..fc4482f52 100644 --- a/src/components/Sinaweibo.tsx +++ b/src/components/Sinaweibo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SinaweiboProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SinaweiboProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sinaweibo = React.forwardRef(function Sinaweibo({color = 'currentColor', size = 24, title = "sinaweibo", ...others}, ref) { - const Sinaweibo = React.forwardRef(function Sinaweibo({color = 'currentColor', size = 24, title = "sinaweibo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sinaweibo - \ No newline at end of file +export default Sinaweibo; diff --git a/src/components/Singlestore.tsx b/src/components/Singlestore.tsx index a57c98ac2..600803b92 100644 --- a/src/components/Singlestore.tsx +++ b/src/components/Singlestore.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SinglestoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SinglestoreProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Singlestore = React.forwardRef(function Singlestore({color = 'currentColor', size = 24, title = "singlestore", ...others}, ref) { - const Singlestore = React.forwardRef(function Singlestore({color = 'currentColor', size = 24, title = "singlestore", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Singlestore - \ No newline at end of file +export default Singlestore; diff --git a/src/components/Sitepoint.tsx b/src/components/Sitepoint.tsx index e32b6627d..b4d6661c0 100644 --- a/src/components/Sitepoint.tsx +++ b/src/components/Sitepoint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SitepointProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SitepointProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sitepoint = React.forwardRef(function Sitepoint({color = 'currentColor', size = 24, title = "sitepoint", ...others}, ref) { - const Sitepoint = React.forwardRef(function Sitepoint({color = 'currentColor', size = 24, title = "sitepoint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sitepoint - \ No newline at end of file +export default Sitepoint; diff --git a/src/components/Sketch.tsx b/src/components/Sketch.tsx index a3baa5b8b..581659beb 100644 --- a/src/components/Sketch.tsx +++ b/src/components/Sketch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SketchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SketchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sketch = React.forwardRef(function Sketch({color = 'currentColor', size = 24, title = "sketch", ...others}, ref) { - const Sketch = React.forwardRef(function Sketch({color = 'currentColor', size = 24, title = "sketch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sketch - \ No newline at end of file +export default Sketch; diff --git a/src/components/Sketchfab.tsx b/src/components/Sketchfab.tsx index b6d42ef10..2a999d290 100644 --- a/src/components/Sketchfab.tsx +++ b/src/components/Sketchfab.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SketchfabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SketchfabProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sketchfab = React.forwardRef(function Sketchfab({color = 'currentColor', size = 24, title = "sketchfab", ...others}, ref) { - const Sketchfab = React.forwardRef(function Sketchfab({color = 'currentColor', size = 24, title = "sketchfab", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sketchfab - \ No newline at end of file +export default Sketchfab; diff --git a/src/components/Sketchup.tsx b/src/components/Sketchup.tsx index f290fd309..3fca23ff3 100644 --- a/src/components/Sketchup.tsx +++ b/src/components/Sketchup.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SketchupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SketchupProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sketchup = React.forwardRef(function Sketchup({color = 'currentColor', size = 24, title = "sketchup", ...others}, ref) { - const Sketchup = React.forwardRef(function Sketchup({color = 'currentColor', size = 24, title = "sketchup", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sketchup - \ No newline at end of file +export default Sketchup; diff --git a/src/components/Skillshare.tsx b/src/components/Skillshare.tsx index 774ab03c7..baea2a0ca 100644 --- a/src/components/Skillshare.tsx +++ b/src/components/Skillshare.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SkillshareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SkillshareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Skillshare = React.forwardRef(function Skillshare({color = 'currentColor', size = 24, title = "skillshare", ...others}, ref) { - const Skillshare = React.forwardRef(function Skillshare({color = 'currentColor', size = 24, title = "skillshare", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Skillshare - \ No newline at end of file +export default Skillshare; diff --git a/src/components/Skoda.tsx b/src/components/Skoda.tsx index efccff731..c286bc6b4 100644 --- a/src/components/Skoda.tsx +++ b/src/components/Skoda.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SkodaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SkodaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Skoda = React.forwardRef(function Skoda({color = 'currentColor', size = 24, title = "skoda", ...others}, ref) { - const Skoda = React.forwardRef(function Skoda({color = 'currentColor', size = 24, title = "skoda", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Skoda - \ No newline at end of file +export default Skoda; diff --git a/src/components/Sky.tsx b/src/components/Sky.tsx index d91e83867..51e3cf2e1 100644 --- a/src/components/Sky.tsx +++ b/src/components/Sky.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SkyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SkyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sky = React.forwardRef(function Sky({color = 'currentColor', size = 24, title = "sky", ...others}, ref) { - const Sky = React.forwardRef(function Sky({color = 'currentColor', size = 24, title = "sky", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sky - \ No newline at end of file +export default Sky; diff --git a/src/components/Skynet.tsx b/src/components/Skynet.tsx index 62445e0ed..284ff5535 100644 --- a/src/components/Skynet.tsx +++ b/src/components/Skynet.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SkynetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SkynetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Skynet = React.forwardRef(function Skynet({color = 'currentColor', size = 24, title = "skynet", ...others}, ref) { - const Skynet = React.forwardRef(function Skynet({color = 'currentColor', size = 24, title = "skynet", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Skynet - \ No newline at end of file +export default Skynet; diff --git a/src/components/Skypack.tsx b/src/components/Skypack.tsx index 120976f05..cee75b85f 100644 --- a/src/components/Skypack.tsx +++ b/src/components/Skypack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SkypackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SkypackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Skypack = React.forwardRef(function Skypack({color = 'currentColor', size = 24, title = "skypack", ...others}, ref) { - const Skypack = React.forwardRef(function Skypack({color = 'currentColor', size = 24, title = "skypack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Skypack - \ No newline at end of file +export default Skypack; diff --git a/src/components/Skype.tsx b/src/components/Skype.tsx index e20f0f269..2ea655f9b 100644 --- a/src/components/Skype.tsx +++ b/src/components/Skype.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SkypeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SkypeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Skype = React.forwardRef(function Skype({color = 'currentColor', size = 24, title = "skype", ...others}, ref) { - const Skype = React.forwardRef(function Skype({color = 'currentColor', size = 24, title = "skype", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Skype - \ No newline at end of file +export default Skype; diff --git a/src/components/Skypeforbusiness.tsx b/src/components/Skypeforbusiness.tsx index fed30a6ab..0437a6dcf 100644 --- a/src/components/Skypeforbusiness.tsx +++ b/src/components/Skypeforbusiness.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SkypeforbusinessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SkypeforbusinessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Skypeforbusiness = React.forwardRef(function Skypeforbusiness({color = 'currentColor', size = 24, title = "skypeforbusiness", ...others}, ref) { - const Skypeforbusiness = React.forwardRef(function Skypeforbusiness({color = 'currentColor', size = 24, title = "skypeforbusiness", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Skypeforbusiness - \ No newline at end of file +export default Skypeforbusiness; diff --git a/src/components/Slack.tsx b/src/components/Slack.tsx index 9db380d19..024910229 100644 --- a/src/components/Slack.tsx +++ b/src/components/Slack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SlackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SlackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Slack = React.forwardRef(function Slack({color = 'currentColor', size = 24, title = "slack", ...others}, ref) { - const Slack = React.forwardRef(function Slack({color = 'currentColor', size = 24, title = "slack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Slack - \ No newline at end of file +export default Slack; diff --git a/src/components/Slackware.tsx b/src/components/Slackware.tsx index eb00a569a..6603764fb 100644 --- a/src/components/Slackware.tsx +++ b/src/components/Slackware.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SlackwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SlackwareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Slackware = React.forwardRef(function Slackware({color = 'currentColor', size = 24, title = "slackware", ...others}, ref) { - const Slackware = React.forwardRef(function Slackware({color = 'currentColor', size = 24, title = "slackware", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Slackware - \ No newline at end of file +export default Slackware; diff --git a/src/components/Slashdot.tsx b/src/components/Slashdot.tsx index 02c164763..bedad482c 100644 --- a/src/components/Slashdot.tsx +++ b/src/components/Slashdot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SlashdotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SlashdotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Slashdot = React.forwardRef(function Slashdot({color = 'currentColor', size = 24, title = "slashdot", ...others}, ref) { - const Slashdot = React.forwardRef(function Slashdot({color = 'currentColor', size = 24, title = "slashdot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Slashdot - \ No newline at end of file +export default Slashdot; diff --git a/src/components/Slickpic.tsx b/src/components/Slickpic.tsx index 1b2324b5c..990d9a6e0 100644 --- a/src/components/Slickpic.tsx +++ b/src/components/Slickpic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SlickpicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SlickpicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Slickpic = React.forwardRef(function Slickpic({color = 'currentColor', size = 24, title = "slickpic", ...others}, ref) { - const Slickpic = React.forwardRef(function Slickpic({color = 'currentColor', size = 24, title = "slickpic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Slickpic - \ No newline at end of file +export default Slickpic; diff --git a/src/components/Slides.tsx b/src/components/Slides.tsx index 09efa1d47..5d539504e 100644 --- a/src/components/Slides.tsx +++ b/src/components/Slides.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SlidesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SlidesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Slides = React.forwardRef(function Slides({color = 'currentColor', size = 24, title = "slides", ...others}, ref) { - const Slides = React.forwardRef(function Slides({color = 'currentColor', size = 24, title = "slides", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Slides - \ No newline at end of file +export default Slides; diff --git a/src/components/Slideshare.tsx b/src/components/Slideshare.tsx index 38b7b1ea8..f542fa7e1 100644 --- a/src/components/Slideshare.tsx +++ b/src/components/Slideshare.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SlideshareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SlideshareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Slideshare = React.forwardRef(function Slideshare({color = 'currentColor', size = 24, title = "slideshare", ...others}, ref) { - const Slideshare = React.forwardRef(function Slideshare({color = 'currentColor', size = 24, title = "slideshare", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Slideshare - \ No newline at end of file +export default Slideshare; diff --git a/src/components/Smart.tsx b/src/components/Smart.tsx index 51da0dd42..5c429e26e 100644 --- a/src/components/Smart.tsx +++ b/src/components/Smart.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SmartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SmartProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Smart = React.forwardRef(function Smart({color = 'currentColor', size = 24, title = "smart", ...others}, ref) { - const Smart = React.forwardRef(function Smart({color = 'currentColor', size = 24, title = "smart", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Smart - \ No newline at end of file +export default Smart; diff --git a/src/components/Smartthings.tsx b/src/components/Smartthings.tsx index 62929c83d..afe12f216 100644 --- a/src/components/Smartthings.tsx +++ b/src/components/Smartthings.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SmartthingsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SmartthingsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Smartthings = React.forwardRef(function Smartthings({color = 'currentColor', size = 24, title = "smartthings", ...others}, ref) { - const Smartthings = React.forwardRef(function Smartthings({color = 'currentColor', size = 24, title = "smartthings", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Smartthings - \ No newline at end of file +export default Smartthings; diff --git a/src/components/Smashdotgg.tsx b/src/components/Smashdotgg.tsx index a43482444..8f9a35997 100644 --- a/src/components/Smashdotgg.tsx +++ b/src/components/Smashdotgg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SmashdotggProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SmashdotggProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Smashdotgg = React.forwardRef(function Smashdotgg({color = 'currentColor', size = 24, title = "smashdotgg", ...others}, ref) { - const Smashdotgg = React.forwardRef(function Smashdotgg({color = 'currentColor', size = 24, title = "smashdotgg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Smashdotgg - \ No newline at end of file +export default Smashdotgg; diff --git a/src/components/Smashingmagazine.tsx b/src/components/Smashingmagazine.tsx index ea0173f7a..66fa75d09 100644 --- a/src/components/Smashingmagazine.tsx +++ b/src/components/Smashingmagazine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SmashingmagazineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SmashingmagazineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Smashingmagazine = React.forwardRef(function Smashingmagazine({color = 'currentColor', size = 24, title = "smashingmagazine", ...others}, ref) { - const Smashingmagazine = React.forwardRef(function Smashingmagazine({color = 'currentColor', size = 24, title = "smashingmagazine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Smashingmagazine - \ No newline at end of file +export default Smashingmagazine; diff --git a/src/components/Smrt.tsx b/src/components/Smrt.tsx index 3344ef64c..11b81a6da 100644 --- a/src/components/Smrt.tsx +++ b/src/components/Smrt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SmrtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SmrtProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Smrt = React.forwardRef(function Smrt({color = 'currentColor', size = 24, title = "smrt", ...others}, ref) { - const Smrt = React.forwardRef(function Smrt({color = 'currentColor', size = 24, title = "smrt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Smrt - \ No newline at end of file +export default Smrt; diff --git a/src/components/Smugmug.tsx b/src/components/Smugmug.tsx index 47fd5b1bb..2d519c7ae 100644 --- a/src/components/Smugmug.tsx +++ b/src/components/Smugmug.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SmugmugProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SmugmugProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Smugmug = React.forwardRef(function Smugmug({color = 'currentColor', size = 24, title = "smugmug", ...others}, ref) { - const Smugmug = React.forwardRef(function Smugmug({color = 'currentColor', size = 24, title = "smugmug", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Smugmug - \ No newline at end of file +export default Smugmug; diff --git a/src/components/Snapchat.tsx b/src/components/Snapchat.tsx index 7f5f5bd05..07d8e9fb1 100644 --- a/src/components/Snapchat.tsx +++ b/src/components/Snapchat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SnapchatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SnapchatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Snapchat = React.forwardRef(function Snapchat({color = 'currentColor', size = 24, title = "snapchat", ...others}, ref) { - const Snapchat = React.forwardRef(function Snapchat({color = 'currentColor', size = 24, title = "snapchat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Snapchat - \ No newline at end of file +export default Snapchat; diff --git a/src/components/Snapcraft.tsx b/src/components/Snapcraft.tsx index 43da31efe..aed7f70e6 100644 --- a/src/components/Snapcraft.tsx +++ b/src/components/Snapcraft.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SnapcraftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SnapcraftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Snapcraft = React.forwardRef(function Snapcraft({color = 'currentColor', size = 24, title = "snapcraft", ...others}, ref) { - const Snapcraft = React.forwardRef(function Snapcraft({color = 'currentColor', size = 24, title = "snapcraft", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Snapcraft - \ No newline at end of file +export default Snapcraft; diff --git a/src/components/Snowflake.tsx b/src/components/Snowflake.tsx index b30379691..f697273f5 100644 --- a/src/components/Snowflake.tsx +++ b/src/components/Snowflake.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SnowflakeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SnowflakeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Snowflake = React.forwardRef(function Snowflake({color = 'currentColor', size = 24, title = "snowflake", ...others}, ref) { - const Snowflake = React.forwardRef(function Snowflake({color = 'currentColor', size = 24, title = "snowflake", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Snowflake - \ No newline at end of file +export default Snowflake; diff --git a/src/components/Snowpack.tsx b/src/components/Snowpack.tsx index bcd33f5a4..cf3ccd617 100644 --- a/src/components/Snowpack.tsx +++ b/src/components/Snowpack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SnowpackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SnowpackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Snowpack = React.forwardRef(function Snowpack({color = 'currentColor', size = 24, title = "snowpack", ...others}, ref) { - const Snowpack = React.forwardRef(function Snowpack({color = 'currentColor', size = 24, title = "snowpack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Snowpack - \ No newline at end of file +export default Snowpack; diff --git a/src/components/Snyk.tsx b/src/components/Snyk.tsx index a5c93ad77..7b042ac4f 100644 --- a/src/components/Snyk.tsx +++ b/src/components/Snyk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SnykProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SnykProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Snyk = React.forwardRef(function Snyk({color = 'currentColor', size = 24, title = "snyk", ...others}, ref) { - const Snyk = React.forwardRef(function Snyk({color = 'currentColor', size = 24, title = "snyk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Snyk - \ No newline at end of file +export default Snyk; diff --git a/src/components/Socialblade.tsx b/src/components/Socialblade.tsx index 2f8fd9af2..dfb5b2f62 100644 --- a/src/components/Socialblade.tsx +++ b/src/components/Socialblade.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SocialbladeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SocialbladeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Socialblade = React.forwardRef(function Socialblade({color = 'currentColor', size = 24, title = "socialblade", ...others}, ref) { - const Socialblade = React.forwardRef(function Socialblade({color = 'currentColor', size = 24, title = "socialblade", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Socialblade - \ No newline at end of file +export default Socialblade; diff --git a/src/components/SocietySix.tsx b/src/components/SocietySix.tsx index 79c44e1ed..4125bab77 100644 --- a/src/components/SocietySix.tsx +++ b/src/components/SocietySix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SocietySixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SocietySixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const SocietySix = React.forwardRef(function SocietySix({color = 'currentColor', size = 24, title = "society6", ...others}, ref) { - const SocietySix = React.forwardRef(function SocietySix({color = 'currentColor', size = 24, title = "society6", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default SocietySix - \ No newline at end of file +export default SocietySix; diff --git a/src/components/Socketdotio.tsx b/src/components/Socketdotio.tsx index 83a93a8ee..7eedbaa8b 100644 --- a/src/components/Socketdotio.tsx +++ b/src/components/Socketdotio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SocketdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SocketdotioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Socketdotio = React.forwardRef(function Socketdotio({color = 'currentColor', size = 24, title = "socketdotio", ...others}, ref) { - const Socketdotio = React.forwardRef(function Socketdotio({color = 'currentColor', size = 24, title = "socketdotio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Socketdotio - \ No newline at end of file +export default Socketdotio; diff --git a/src/components/Sogou.tsx b/src/components/Sogou.tsx index 3b4c78cf5..ef6b63bbd 100644 --- a/src/components/Sogou.tsx +++ b/src/components/Sogou.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SogouProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SogouProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sogou = React.forwardRef(function Sogou({color = 'currentColor', size = 24, title = "sogou", ...others}, ref) { - const Sogou = React.forwardRef(function Sogou({color = 'currentColor', size = 24, title = "sogou", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sogou - \ No newline at end of file +export default Sogou; diff --git a/src/components/Solid.tsx b/src/components/Solid.tsx index 620791565..83d3ff28e 100644 --- a/src/components/Solid.tsx +++ b/src/components/Solid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SolidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SolidProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Solid = React.forwardRef(function Solid({color = 'currentColor', size = 24, title = "solid", ...others}, ref) { - const Solid = React.forwardRef(function Solid({color = 'currentColor', size = 24, title = "solid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Solid - \ No newline at end of file +export default Solid; diff --git a/src/components/Solidity.tsx b/src/components/Solidity.tsx index bd37c4a1e..4e8c7f685 100644 --- a/src/components/Solidity.tsx +++ b/src/components/Solidity.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SolidityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SolidityProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Solidity = React.forwardRef(function Solidity({color = 'currentColor', size = 24, title = "solidity", ...others}, ref) { - const Solidity = React.forwardRef(function Solidity({color = 'currentColor', size = 24, title = "solidity", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Solidity - \ No newline at end of file +export default Solidity; diff --git a/src/components/Sololearn.tsx b/src/components/Sololearn.tsx index f9cacba07..1b94b6ee0 100644 --- a/src/components/Sololearn.tsx +++ b/src/components/Sololearn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SololearnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SololearnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sololearn = React.forwardRef(function Sololearn({color = 'currentColor', size = 24, title = "sololearn", ...others}, ref) { - const Sololearn = React.forwardRef(function Sololearn({color = 'currentColor', size = 24, title = "sololearn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sololearn - \ No newline at end of file +export default Sololearn; diff --git a/src/components/Solus.tsx b/src/components/Solus.tsx index 2328fef18..f03b04d6b 100644 --- a/src/components/Solus.tsx +++ b/src/components/Solus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SolusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SolusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Solus = React.forwardRef(function Solus({color = 'currentColor', size = 24, title = "solus", ...others}, ref) { - const Solus = React.forwardRef(function Solus({color = 'currentColor', size = 24, title = "solus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Solus - \ No newline at end of file +export default Solus; diff --git a/src/components/Sonar.tsx b/src/components/Sonar.tsx new file mode 100644 index 000000000..28ed0faa9 --- /dev/null +++ b/src/components/Sonar.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type SonarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Sonar = React.forwardRef(function Sonar({color = 'currentColor', size = 24, title = "sonar", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Sonar; diff --git a/src/components/Sonarcloud.tsx b/src/components/Sonarcloud.tsx index c653815eb..563fe9f72 100644 --- a/src/components/Sonarcloud.tsx +++ b/src/components/Sonarcloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SonarcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SonarcloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sonarcloud = React.forwardRef(function Sonarcloud({color = 'currentColor', size = 24, title = "sonarcloud", ...others}, ref) { - const Sonarcloud = React.forwardRef(function Sonarcloud({color = 'currentColor', size = 24, title = "sonarcloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sonarcloud - \ No newline at end of file +export default Sonarcloud; diff --git a/src/components/Sonarlint.tsx b/src/components/Sonarlint.tsx index 6d8d982c3..a85a4a278 100644 --- a/src/components/Sonarlint.tsx +++ b/src/components/Sonarlint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SonarlintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SonarlintProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sonarlint = React.forwardRef(function Sonarlint({color = 'currentColor', size = 24, title = "sonarlint", ...others}, ref) { - const Sonarlint = React.forwardRef(function Sonarlint({color = 'currentColor', size = 24, title = "sonarlint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sonarlint - \ No newline at end of file +export default Sonarlint; diff --git a/src/components/Sonarqube.tsx b/src/components/Sonarqube.tsx index c8bf8227b..9801cd4bd 100644 --- a/src/components/Sonarqube.tsx +++ b/src/components/Sonarqube.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SonarqubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SonarqubeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sonarqube = React.forwardRef(function Sonarqube({color = 'currentColor', size = 24, title = "sonarqube", ...others}, ref) { - const Sonarqube = React.forwardRef(function Sonarqube({color = 'currentColor', size = 24, title = "sonarqube", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sonarqube - \ No newline at end of file +export default Sonarqube; diff --git a/src/components/Sonarsource.tsx b/src/components/Sonarsource.tsx index 0428a5a2a..0857d1b86 100644 --- a/src/components/Sonarsource.tsx +++ b/src/components/Sonarsource.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SonarsourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SonarsourceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sonarsource = React.forwardRef(function Sonarsource({color = 'currentColor', size = 24, title = "sonarsource", ...others}, ref) { - const Sonarsource = React.forwardRef(function Sonarsource({color = 'currentColor', size = 24, title = "sonarsource", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sonarsource - \ No newline at end of file +export default Sonarsource; diff --git a/src/components/Songkick.tsx b/src/components/Songkick.tsx index 0177c88d4..8c2e72561 100644 --- a/src/components/Songkick.tsx +++ b/src/components/Songkick.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SongkickProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SongkickProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Songkick = React.forwardRef(function Songkick({color = 'currentColor', size = 24, title = "songkick", ...others}, ref) { - const Songkick = React.forwardRef(function Songkick({color = 'currentColor', size = 24, title = "songkick", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Songkick - \ No newline at end of file +export default Songkick; diff --git a/src/components/Songoda.tsx b/src/components/Songoda.tsx index 418766745..d3f0d1a7c 100644 --- a/src/components/Songoda.tsx +++ b/src/components/Songoda.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SongodaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SongodaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Songoda = React.forwardRef(function Songoda({color = 'currentColor', size = 24, title = "songoda", ...others}, ref) { - const Songoda = React.forwardRef(function Songoda({color = 'currentColor', size = 24, title = "songoda", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Songoda - \ No newline at end of file +export default Songoda; diff --git a/src/components/Sonicwall.tsx b/src/components/Sonicwall.tsx index 6c4df00d3..1697abcc5 100644 --- a/src/components/Sonicwall.tsx +++ b/src/components/Sonicwall.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SonicwallProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SonicwallProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sonicwall = React.forwardRef(function Sonicwall({color = 'currentColor', size = 24, title = "sonicwall", ...others}, ref) { - const Sonicwall = React.forwardRef(function Sonicwall({color = 'currentColor', size = 24, title = "sonicwall", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sonicwall - \ No newline at end of file +export default Sonicwall; diff --git a/src/components/Sonos.tsx b/src/components/Sonos.tsx index d740b6e95..99837fcea 100644 --- a/src/components/Sonos.tsx +++ b/src/components/Sonos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SonosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SonosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sonos = React.forwardRef(function Sonos({color = 'currentColor', size = 24, title = "sonos", ...others}, ref) { - const Sonos = React.forwardRef(function Sonos({color = 'currentColor', size = 24, title = "sonos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sonos - \ No newline at end of file +export default Sonos; diff --git a/src/components/Sony.tsx b/src/components/Sony.tsx index 0b37a9c06..9970e9835 100644 --- a/src/components/Sony.tsx +++ b/src/components/Sony.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SonyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SonyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sony = React.forwardRef(function Sony({color = 'currentColor', size = 24, title = "sony", ...others}, ref) { - const Sony = React.forwardRef(function Sony({color = 'currentColor', size = 24, title = "sony", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sony - \ No newline at end of file +export default Sony; diff --git a/src/components/Soundcharts.tsx b/src/components/Soundcharts.tsx index 2727ae086..9f865a66c 100644 --- a/src/components/Soundcharts.tsx +++ b/src/components/Soundcharts.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SoundchartsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SoundchartsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Soundcharts = React.forwardRef(function Soundcharts({color = 'currentColor', size = 24, title = "soundcharts", ...others}, ref) { - const Soundcharts = React.forwardRef(function Soundcharts({color = 'currentColor', size = 24, title = "soundcharts", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Soundcharts - \ No newline at end of file +export default Soundcharts; diff --git a/src/components/Soundcloud.tsx b/src/components/Soundcloud.tsx index 6505cfbf3..05aedddf1 100644 --- a/src/components/Soundcloud.tsx +++ b/src/components/Soundcloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SoundcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SoundcloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Soundcloud = React.forwardRef(function Soundcloud({color = 'currentColor', size = 24, title = "soundcloud", ...others}, ref) { - const Soundcloud = React.forwardRef(function Soundcloud({color = 'currentColor', size = 24, title = "soundcloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Soundcloud - \ No newline at end of file +export default Soundcloud; diff --git a/src/components/Sourceengine.tsx b/src/components/Sourceengine.tsx index f87140cc6..d3b3e805f 100644 --- a/src/components/Sourceengine.tsx +++ b/src/components/Sourceengine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SourceengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SourceengineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sourceengine = React.forwardRef(function Sourceengine({color = 'currentColor', size = 24, title = "sourceengine", ...others}, ref) { - const Sourceengine = React.forwardRef(function Sourceengine({color = 'currentColor', size = 24, title = "sourceengine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sourceengine - \ No newline at end of file +export default Sourceengine; diff --git a/src/components/Sourceforge.tsx b/src/components/Sourceforge.tsx index 005eabf8e..10f2efcf5 100644 --- a/src/components/Sourceforge.tsx +++ b/src/components/Sourceforge.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SourceforgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SourceforgeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sourceforge = React.forwardRef(function Sourceforge({color = 'currentColor', size = 24, title = "sourceforge", ...others}, ref) { - const Sourceforge = React.forwardRef(function Sourceforge({color = 'currentColor', size = 24, title = "sourceforge", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sourceforge - \ No newline at end of file +export default Sourceforge; diff --git a/src/components/Sourcegraph.tsx b/src/components/Sourcegraph.tsx index a88f1dc63..276fbce4b 100644 --- a/src/components/Sourcegraph.tsx +++ b/src/components/Sourcegraph.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SourcegraphProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SourcegraphProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sourcegraph = React.forwardRef(function Sourcegraph({color = 'currentColor', size = 24, title = "sourcegraph", ...others}, ref) { - const Sourcegraph = React.forwardRef(function Sourcegraph({color = 'currentColor', size = 24, title = "sourcegraph", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sourcegraph - \ No newline at end of file +export default Sourcegraph; diff --git a/src/components/Sourcetree.tsx b/src/components/Sourcetree.tsx index dd1096588..59718850e 100644 --- a/src/components/Sourcetree.tsx +++ b/src/components/Sourcetree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SourcetreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SourcetreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sourcetree = React.forwardRef(function Sourcetree({color = 'currentColor', size = 24, title = "sourcetree", ...others}, ref) { - const Sourcetree = React.forwardRef(function Sourcetree({color = 'currentColor', size = 24, title = "sourcetree", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sourcetree - \ No newline at end of file +export default Sourcetree; diff --git a/src/components/Southwestairlines.tsx b/src/components/Southwestairlines.tsx index a797c9345..41dbf7120 100644 --- a/src/components/Southwestairlines.tsx +++ b/src/components/Southwestairlines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SouthwestairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SouthwestairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Southwestairlines = React.forwardRef(function Southwestairlines({color = 'currentColor', size = 24, title = "southwestairlines", ...others}, ref) { - const Southwestairlines = React.forwardRef(function Southwestairlines({color = 'currentColor', size = 24, title = "southwestairlines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Southwestairlines - \ No newline at end of file +export default Southwestairlines; diff --git a/src/components/Spacemacs.tsx b/src/components/Spacemacs.tsx index 7f2db0569..07ec65439 100644 --- a/src/components/Spacemacs.tsx +++ b/src/components/Spacemacs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpacemacsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpacemacsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spacemacs = React.forwardRef(function Spacemacs({color = 'currentColor', size = 24, title = "spacemacs", ...others}, ref) { - const Spacemacs = React.forwardRef(function Spacemacs({color = 'currentColor', size = 24, title = "spacemacs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spacemacs - \ No newline at end of file +export default Spacemacs; diff --git a/src/components/Spacex.tsx b/src/components/Spacex.tsx index d17733bdc..b3bece0ee 100644 --- a/src/components/Spacex.tsx +++ b/src/components/Spacex.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpacexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpacexProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spacex = React.forwardRef(function Spacex({color = 'currentColor', size = 24, title = "spacex", ...others}, ref) { - const Spacex = React.forwardRef(function Spacex({color = 'currentColor', size = 24, title = "spacex", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spacex - \ No newline at end of file +export default Spacex; diff --git a/src/components/Spacy.tsx b/src/components/Spacy.tsx index 4a331e7d5..ad7e530bd 100644 --- a/src/components/Spacy.tsx +++ b/src/components/Spacy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpacyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpacyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spacy = React.forwardRef(function Spacy({color = 'currentColor', size = 24, title = "spacy", ...others}, ref) { - const Spacy = React.forwardRef(function Spacy({color = 'currentColor', size = 24, title = "spacy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spacy - \ No newline at end of file +export default Spacy; diff --git a/src/components/Sparkar.tsx b/src/components/Sparkar.tsx index 9e203607e..3bc1f1b33 100644 --- a/src/components/Sparkar.tsx +++ b/src/components/Sparkar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SparkarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SparkarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sparkar = React.forwardRef(function Sparkar({color = 'currentColor', size = 24, title = "sparkar", ...others}, ref) { - const Sparkar = React.forwardRef(function Sparkar({color = 'currentColor', size = 24, title = "sparkar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sparkar - \ No newline at end of file +export default Sparkar; diff --git a/src/components/Sparkasse.tsx b/src/components/Sparkasse.tsx index 4477a5777..943ca56e2 100644 --- a/src/components/Sparkasse.tsx +++ b/src/components/Sparkasse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SparkasseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SparkasseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sparkasse = React.forwardRef(function Sparkasse({color = 'currentColor', size = 24, title = "sparkasse", ...others}, ref) { - const Sparkasse = React.forwardRef(function Sparkasse({color = 'currentColor', size = 24, title = "sparkasse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sparkasse - \ No newline at end of file +export default Sparkasse; diff --git a/src/components/Sparkfun.tsx b/src/components/Sparkfun.tsx index 53de5ec88..6ccb5746b 100644 --- a/src/components/Sparkfun.tsx +++ b/src/components/Sparkfun.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SparkfunProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SparkfunProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sparkfun = React.forwardRef(function Sparkfun({color = 'currentColor', size = 24, title = "sparkfun", ...others}, ref) { - const Sparkfun = React.forwardRef(function Sparkfun({color = 'currentColor', size = 24, title = "sparkfun", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sparkfun - \ No newline at end of file +export default Sparkfun; diff --git a/src/components/Sparkpost.tsx b/src/components/Sparkpost.tsx index 1195c7eb2..d9489b82f 100644 --- a/src/components/Sparkpost.tsx +++ b/src/components/Sparkpost.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SparkpostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SparkpostProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sparkpost = React.forwardRef(function Sparkpost({color = 'currentColor', size = 24, title = "sparkpost", ...others}, ref) { - const Sparkpost = React.forwardRef(function Sparkpost({color = 'currentColor', size = 24, title = "sparkpost", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sparkpost - \ No newline at end of file +export default Sparkpost; diff --git a/src/components/Spdx.tsx b/src/components/Spdx.tsx index 85603e8c1..6e61670ae 100644 --- a/src/components/Spdx.tsx +++ b/src/components/Spdx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpdxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpdxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spdx = React.forwardRef(function Spdx({color = 'currentColor', size = 24, title = "spdx", ...others}, ref) { - const Spdx = React.forwardRef(function Spdx({color = 'currentColor', size = 24, title = "spdx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spdx - \ No newline at end of file +export default Spdx; diff --git a/src/components/Speakerdeck.tsx b/src/components/Speakerdeck.tsx index 57b5510cb..e4681f86d 100644 --- a/src/components/Speakerdeck.tsx +++ b/src/components/Speakerdeck.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpeakerdeckProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpeakerdeckProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Speakerdeck = React.forwardRef(function Speakerdeck({color = 'currentColor', size = 24, title = "speakerdeck", ...others}, ref) { - const Speakerdeck = React.forwardRef(function Speakerdeck({color = 'currentColor', size = 24, title = "speakerdeck", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Speakerdeck - \ No newline at end of file +export default Speakerdeck; diff --git a/src/components/Spectrum.tsx b/src/components/Spectrum.tsx index 91ebf398c..cdb8e0d3e 100644 --- a/src/components/Spectrum.tsx +++ b/src/components/Spectrum.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpectrumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpectrumProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spectrum = React.forwardRef(function Spectrum({color = 'currentColor', size = 24, title = "spectrum", ...others}, ref) { - const Spectrum = React.forwardRef(function Spectrum({color = 'currentColor', size = 24, title = "spectrum", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spectrum - \ No newline at end of file +export default Spectrum; diff --git a/src/components/Speedtest.tsx b/src/components/Speedtest.tsx index 227dc88bf..9d349d381 100644 --- a/src/components/Speedtest.tsx +++ b/src/components/Speedtest.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpeedtestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpeedtestProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Speedtest = React.forwardRef(function Speedtest({color = 'currentColor', size = 24, title = "speedtest", ...others}, ref) { - const Speedtest = React.forwardRef(function Speedtest({color = 'currentColor', size = 24, title = "speedtest", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Speedtest - \ No newline at end of file +export default Speedtest; diff --git a/src/components/Spinnaker.tsx b/src/components/Spinnaker.tsx index 00332ed35..7877872d3 100644 --- a/src/components/Spinnaker.tsx +++ b/src/components/Spinnaker.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpinnakerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpinnakerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spinnaker = React.forwardRef(function Spinnaker({color = 'currentColor', size = 24, title = "spinnaker", ...others}, ref) { - const Spinnaker = React.forwardRef(function Spinnaker({color = 'currentColor', size = 24, title = "spinnaker", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spinnaker - \ No newline at end of file +export default Spinnaker; diff --git a/src/components/Spinrilla.tsx b/src/components/Spinrilla.tsx index 7f0a184b1..2f719afd6 100644 --- a/src/components/Spinrilla.tsx +++ b/src/components/Spinrilla.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpinrillaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpinrillaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spinrilla = React.forwardRef(function Spinrilla({color = 'currentColor', size = 24, title = "spinrilla", ...others}, ref) { - const Spinrilla = React.forwardRef(function Spinrilla({color = 'currentColor', size = 24, title = "spinrilla", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spinrilla - \ No newline at end of file +export default Spinrilla; diff --git a/src/components/Splunk.tsx b/src/components/Splunk.tsx index 1a81c39f4..c4577fbcf 100644 --- a/src/components/Splunk.tsx +++ b/src/components/Splunk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SplunkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SplunkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Splunk = React.forwardRef(function Splunk({color = 'currentColor', size = 24, title = "splunk", ...others}, ref) { - const Splunk = React.forwardRef(function Splunk({color = 'currentColor', size = 24, title = "splunk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Splunk - \ No newline at end of file +export default Splunk; diff --git a/src/components/Spond.tsx b/src/components/Spond.tsx index f99383658..078b1ec61 100644 --- a/src/components/Spond.tsx +++ b/src/components/Spond.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpondProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpondProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spond = React.forwardRef(function Spond({color = 'currentColor', size = 24, title = "spond", ...others}, ref) { - const Spond = React.forwardRef(function Spond({color = 'currentColor', size = 24, title = "spond", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spond - \ No newline at end of file +export default Spond; diff --git a/src/components/Spotify.tsx b/src/components/Spotify.tsx index cfa5f119b..df3d8c9da 100644 --- a/src/components/Spotify.tsx +++ b/src/components/Spotify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpotifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpotifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spotify = React.forwardRef(function Spotify({color = 'currentColor', size = 24, title = "spotify", ...others}, ref) { - const Spotify = React.forwardRef(function Spotify({color = 'currentColor', size = 24, title = "spotify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spotify - \ No newline at end of file +export default Spotify; diff --git a/src/components/Spotlight.tsx b/src/components/Spotlight.tsx index 3fb34e92e..8d94c4357 100644 --- a/src/components/Spotlight.tsx +++ b/src/components/Spotlight.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpotlightProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpotlightProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spotlight = React.forwardRef(function Spotlight({color = 'currentColor', size = 24, title = "spotlight", ...others}, ref) { - const Spotlight = React.forwardRef(function Spotlight({color = 'currentColor', size = 24, title = "spotlight", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spotlight - \ No newline at end of file +export default Spotlight; diff --git a/src/components/Spreadshirt.tsx b/src/components/Spreadshirt.tsx index 724ced843..91020434c 100644 --- a/src/components/Spreadshirt.tsx +++ b/src/components/Spreadshirt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpreadshirtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpreadshirtProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spreadshirt = React.forwardRef(function Spreadshirt({color = 'currentColor', size = 24, title = "spreadshirt", ...others}, ref) { - const Spreadshirt = React.forwardRef(function Spreadshirt({color = 'currentColor', size = 24, title = "spreadshirt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spreadshirt - \ No newline at end of file +export default Spreadshirt; diff --git a/src/components/Spreaker.tsx b/src/components/Spreaker.tsx index 15f245bb6..717989dfe 100644 --- a/src/components/Spreaker.tsx +++ b/src/components/Spreaker.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpreakerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpreakerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spreaker = React.forwardRef(function Spreaker({color = 'currentColor', size = 24, title = "spreaker", ...others}, ref) { - const Spreaker = React.forwardRef(function Spreaker({color = 'currentColor', size = 24, title = "spreaker", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spreaker - \ No newline at end of file +export default Spreaker; diff --git a/src/components/Spring.tsx b/src/components/Spring.tsx index ba00e87a5..201ead29e 100644 --- a/src/components/Spring.tsx +++ b/src/components/Spring.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpringProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpringProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spring = React.forwardRef(function Spring({color = 'currentColor', size = 24, title = "spring", ...others}, ref) { - const Spring = React.forwardRef(function Spring({color = 'currentColor', size = 24, title = "spring", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spring - \ No newline at end of file +export default Spring; diff --git a/src/components/SpringCreators.tsx b/src/components/SpringCreators.tsx index b87e074dc..a7ebb3cd2 100644 --- a/src/components/SpringCreators.tsx +++ b/src/components/SpringCreators.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpringCreatorsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpringCreatorsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const SpringCreators = React.forwardRef(function SpringCreators({color = 'currentColor', size = 24, title = "spring_creators", ...others}, ref) { - const SpringCreators = React.forwardRef(function SpringCreators({color = 'currentColor', size = 24, title = "spring_creators", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default SpringCreators - \ No newline at end of file +export default SpringCreators; diff --git a/src/components/Springboot.tsx b/src/components/Springboot.tsx index 817186e10..a37bf2ea1 100644 --- a/src/components/Springboot.tsx +++ b/src/components/Springboot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpringbootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpringbootProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Springboot = React.forwardRef(function Springboot({color = 'currentColor', size = 24, title = "springboot", ...others}, ref) { - const Springboot = React.forwardRef(function Springboot({color = 'currentColor', size = 24, title = "springboot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Springboot - \ No newline at end of file +export default Springboot; diff --git a/src/components/Springsecurity.tsx b/src/components/Springsecurity.tsx index f6729476b..864003574 100644 --- a/src/components/Springsecurity.tsx +++ b/src/components/Springsecurity.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpringsecurityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpringsecurityProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Springsecurity = React.forwardRef(function Springsecurity({color = 'currentColor', size = 24, title = "springsecurity", ...others}, ref) { - const Springsecurity = React.forwardRef(function Springsecurity({color = 'currentColor', size = 24, title = "springsecurity", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Springsecurity - \ No newline at end of file +export default Springsecurity; diff --git a/src/components/Spyderide.tsx b/src/components/Spyderide.tsx index 402dd580c..ae5d1cb94 100644 --- a/src/components/Spyderide.tsx +++ b/src/components/Spyderide.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SpyderideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SpyderideProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Spyderide = React.forwardRef(function Spyderide({color = 'currentColor', size = 24, title = "spyderide", ...others}, ref) { - const Spyderide = React.forwardRef(function Spyderide({color = 'currentColor', size = 24, title = "spyderide", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Spyderide - \ No newline at end of file +export default Spyderide; diff --git a/src/components/Sqlite.tsx b/src/components/Sqlite.tsx index 1e921105d..0d209600a 100644 --- a/src/components/Sqlite.tsx +++ b/src/components/Sqlite.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SqliteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SqliteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sqlite = React.forwardRef(function Sqlite({color = 'currentColor', size = 24, title = "sqlite", ...others}, ref) { - const Sqlite = React.forwardRef(function Sqlite({color = 'currentColor', size = 24, title = "sqlite", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sqlite - \ No newline at end of file +export default Sqlite; diff --git a/src/components/Square.tsx b/src/components/Square.tsx index 60fc391b7..c33f0be98 100644 --- a/src/components/Square.tsx +++ b/src/components/Square.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SquareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SquareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Square = React.forwardRef(function Square({color = 'currentColor', size = 24, title = "square", ...others}, ref) { - const Square = React.forwardRef(function Square({color = 'currentColor', size = 24, title = "square", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Square - \ No newline at end of file +export default Square; diff --git a/src/components/Squareenix.tsx b/src/components/Squareenix.tsx index ef141fcda..fa0a686f8 100644 --- a/src/components/Squareenix.tsx +++ b/src/components/Squareenix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SquareenixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SquareenixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Squareenix = React.forwardRef(function Squareenix({color = 'currentColor', size = 24, title = "squareenix", ...others}, ref) { - const Squareenix = React.forwardRef(function Squareenix({color = 'currentColor', size = 24, title = "squareenix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Squareenix - \ No newline at end of file +export default Squareenix; diff --git a/src/components/Squarespace.tsx b/src/components/Squarespace.tsx index 55ab4b054..ce71faca9 100644 --- a/src/components/Squarespace.tsx +++ b/src/components/Squarespace.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SquarespaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SquarespaceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Squarespace = React.forwardRef(function Squarespace({color = 'currentColor', size = 24, title = "squarespace", ...others}, ref) { - const Squarespace = React.forwardRef(function Squarespace({color = 'currentColor', size = 24, title = "squarespace", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Squarespace - \ No newline at end of file +export default Squarespace; diff --git a/src/components/Ssrn.tsx b/src/components/Ssrn.tsx index b29711f8d..fe7428f9b 100644 --- a/src/components/Ssrn.tsx +++ b/src/components/Ssrn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SsrnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SsrnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ssrn = React.forwardRef(function Ssrn({color = 'currentColor', size = 24, title = "ssrn", ...others}, ref) { - const Ssrn = React.forwardRef(function Ssrn({color = 'currentColor', size = 24, title = "ssrn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ssrn - \ No newline at end of file +export default Ssrn; diff --git a/src/components/Stackbit.tsx b/src/components/Stackbit.tsx index 06f7b32cd..233926166 100644 --- a/src/components/Stackbit.tsx +++ b/src/components/Stackbit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StackbitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StackbitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stackbit = React.forwardRef(function Stackbit({color = 'currentColor', size = 24, title = "stackbit", ...others}, ref) { - const Stackbit = React.forwardRef(function Stackbit({color = 'currentColor', size = 24, title = "stackbit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stackbit - \ No newline at end of file +export default Stackbit; diff --git a/src/components/Stackblitz.tsx b/src/components/Stackblitz.tsx index b927b930d..e1ecf7e16 100644 --- a/src/components/Stackblitz.tsx +++ b/src/components/Stackblitz.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StackblitzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StackblitzProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stackblitz = React.forwardRef(function Stackblitz({color = 'currentColor', size = 24, title = "stackblitz", ...others}, ref) { - const Stackblitz = React.forwardRef(function Stackblitz({color = 'currentColor', size = 24, title = "stackblitz", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stackblitz - \ No newline at end of file +export default Stackblitz; diff --git a/src/components/Stackedit.tsx b/src/components/Stackedit.tsx index 66189fb8f..43e6329b8 100644 --- a/src/components/Stackedit.tsx +++ b/src/components/Stackedit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StackeditProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StackeditProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stackedit = React.forwardRef(function Stackedit({color = 'currentColor', size = 24, title = "stackedit", ...others}, ref) { - const Stackedit = React.forwardRef(function Stackedit({color = 'currentColor', size = 24, title = "stackedit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stackedit - \ No newline at end of file +export default Stackedit; diff --git a/src/components/Stackexchange.tsx b/src/components/Stackexchange.tsx index 76362adca..a3c424ba8 100644 --- a/src/components/Stackexchange.tsx +++ b/src/components/Stackexchange.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StackexchangeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StackexchangeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stackexchange = React.forwardRef(function Stackexchange({color = 'currentColor', size = 24, title = "stackexchange", ...others}, ref) { - const Stackexchange = React.forwardRef(function Stackexchange({color = 'currentColor', size = 24, title = "stackexchange", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stackexchange - \ No newline at end of file +export default Stackexchange; diff --git a/src/components/Stackoverflow.tsx b/src/components/Stackoverflow.tsx index 35430311d..ddecda4f2 100644 --- a/src/components/Stackoverflow.tsx +++ b/src/components/Stackoverflow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StackoverflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StackoverflowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stackoverflow = React.forwardRef(function Stackoverflow({color = 'currentColor', size = 24, title = "stackoverflow", ...others}, ref) { - const Stackoverflow = React.forwardRef(function Stackoverflow({color = 'currentColor', size = 24, title = "stackoverflow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stackoverflow - \ No newline at end of file +export default Stackoverflow; diff --git a/src/components/Stackpath.tsx b/src/components/Stackpath.tsx index bbde08c88..80907d9d7 100644 --- a/src/components/Stackpath.tsx +++ b/src/components/Stackpath.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StackpathProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StackpathProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stackpath = React.forwardRef(function Stackpath({color = 'currentColor', size = 24, title = "stackpath", ...others}, ref) { - const Stackpath = React.forwardRef(function Stackpath({color = 'currentColor', size = 24, title = "stackpath", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stackpath - \ No newline at end of file +export default Stackpath; diff --git a/src/components/Stackshare.tsx b/src/components/Stackshare.tsx index 946bba644..3595dee9e 100644 --- a/src/components/Stackshare.tsx +++ b/src/components/Stackshare.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StackshareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StackshareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stackshare = React.forwardRef(function Stackshare({color = 'currentColor', size = 24, title = "stackshare", ...others}, ref) { - const Stackshare = React.forwardRef(function Stackshare({color = 'currentColor', size = 24, title = "stackshare", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stackshare - \ No newline at end of file +export default Stackshare; diff --git a/src/components/Stadia.tsx b/src/components/Stadia.tsx index 7c097a107..cf4019f37 100644 --- a/src/components/Stadia.tsx +++ b/src/components/Stadia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StadiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StadiaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stadia = React.forwardRef(function Stadia({color = 'currentColor', size = 24, title = "stadia", ...others}, ref) { - const Stadia = React.forwardRef(function Stadia({color = 'currentColor', size = 24, title = "stadia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stadia - \ No newline at end of file +export default Stadia; diff --git a/src/components/Staffbase.tsx b/src/components/Staffbase.tsx index 5277b62ca..149bf93b9 100644 --- a/src/components/Staffbase.tsx +++ b/src/components/Staffbase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StaffbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StaffbaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Staffbase = React.forwardRef(function Staffbase({color = 'currentColor', size = 24, title = "staffbase", ...others}, ref) { - const Staffbase = React.forwardRef(function Staffbase({color = 'currentColor', size = 24, title = "staffbase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Staffbase - \ No newline at end of file +export default Staffbase; diff --git a/src/components/Starbucks.tsx b/src/components/Starbucks.tsx index 7f6029f93..5dfe9a5a7 100644 --- a/src/components/Starbucks.tsx +++ b/src/components/Starbucks.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StarbucksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StarbucksProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Starbucks = React.forwardRef(function Starbucks({color = 'currentColor', size = 24, title = "starbucks", ...others}, ref) { - const Starbucks = React.forwardRef(function Starbucks({color = 'currentColor', size = 24, title = "starbucks", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Starbucks - \ No newline at end of file +export default Starbucks; diff --git a/src/components/Stardock.tsx b/src/components/Stardock.tsx index d13c66289..665a850db 100644 --- a/src/components/Stardock.tsx +++ b/src/components/Stardock.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StardockProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StardockProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stardock = React.forwardRef(function Stardock({color = 'currentColor', size = 24, title = "stardock", ...others}, ref) { - const Stardock = React.forwardRef(function Stardock({color = 'currentColor', size = 24, title = "stardock", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stardock - \ No newline at end of file +export default Stardock; diff --git a/src/components/Starlingbank.tsx b/src/components/Starlingbank.tsx index 7b7a74523..d950432fc 100644 --- a/src/components/Starlingbank.tsx +++ b/src/components/Starlingbank.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StarlingbankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StarlingbankProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Starlingbank = React.forwardRef(function Starlingbank({color = 'currentColor', size = 24, title = "starlingbank", ...others}, ref) { - const Starlingbank = React.forwardRef(function Starlingbank({color = 'currentColor', size = 24, title = "starlingbank", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Starlingbank - \ No newline at end of file +export default Starlingbank; diff --git a/src/components/Starship.tsx b/src/components/Starship.tsx index f6a92c78f..4ad7ddaf0 100644 --- a/src/components/Starship.tsx +++ b/src/components/Starship.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StarshipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StarshipProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Starship = React.forwardRef(function Starship({color = 'currentColor', size = 24, title = "starship", ...others}, ref) { - const Starship = React.forwardRef(function Starship({color = 'currentColor', size = 24, title = "starship", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Starship - \ No newline at end of file +export default Starship; diff --git a/src/components/Startrek.tsx b/src/components/Startrek.tsx index 9d6cf83d0..fba0e8ac4 100644 --- a/src/components/Startrek.tsx +++ b/src/components/Startrek.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StartrekProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StartrekProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Startrek = React.forwardRef(function Startrek({color = 'currentColor', size = 24, title = "startrek", ...others}, ref) { - const Startrek = React.forwardRef(function Startrek({color = 'currentColor', size = 24, title = "startrek", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Startrek - \ No newline at end of file +export default Startrek; diff --git a/src/components/Starz.tsx b/src/components/Starz.tsx index dd34a8e32..3f9147c24 100644 --- a/src/components/Starz.tsx +++ b/src/components/Starz.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StarzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StarzProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Starz = React.forwardRef(function Starz({color = 'currentColor', size = 24, title = "starz", ...others}, ref) { - const Starz = React.forwardRef(function Starz({color = 'currentColor', size = 24, title = "starz", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Starz - \ No newline at end of file +export default Starz; diff --git a/src/components/Statamic.tsx b/src/components/Statamic.tsx index 69464e75c..363658301 100644 --- a/src/components/Statamic.tsx +++ b/src/components/Statamic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StatamicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StatamicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Statamic = React.forwardRef(function Statamic({color = 'currentColor', size = 24, title = "statamic", ...others}, ref) { - const Statamic = React.forwardRef(function Statamic({color = 'currentColor', size = 24, title = "statamic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Statamic - \ No newline at end of file +export default Statamic; diff --git a/src/components/Statuspage.tsx b/src/components/Statuspage.tsx index 7484d354b..6045bee90 100644 --- a/src/components/Statuspage.tsx +++ b/src/components/Statuspage.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StatuspageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StatuspageProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Statuspage = React.forwardRef(function Statuspage({color = 'currentColor', size = 24, title = "statuspage", ...others}, ref) { - const Statuspage = React.forwardRef(function Statuspage({color = 'currentColor', size = 24, title = "statuspage", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Statuspage - \ No newline at end of file +export default Statuspage; diff --git a/src/components/Statuspal.tsx b/src/components/Statuspal.tsx index 330103e3f..7b9fc17e8 100644 --- a/src/components/Statuspal.tsx +++ b/src/components/Statuspal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StatuspalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StatuspalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Statuspal = React.forwardRef(function Statuspal({color = 'currentColor', size = 24, title = "statuspal", ...others}, ref) { - const Statuspal = React.forwardRef(function Statuspal({color = 'currentColor', size = 24, title = "statuspal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Statuspal - \ No newline at end of file +export default Statuspal; diff --git a/src/components/Steam.tsx b/src/components/Steam.tsx index 4148d5c03..1db0dcbc7 100644 --- a/src/components/Steam.tsx +++ b/src/components/Steam.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SteamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SteamProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Steam = React.forwardRef(function Steam({color = 'currentColor', size = 24, title = "steam", ...others}, ref) { - const Steam = React.forwardRef(function Steam({color = 'currentColor', size = 24, title = "steam", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Steam - \ No newline at end of file +export default Steam; diff --git a/src/components/Steamdb.tsx b/src/components/Steamdb.tsx index bf674335a..85ec96464 100644 --- a/src/components/Steamdb.tsx +++ b/src/components/Steamdb.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SteamdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SteamdbProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Steamdb = React.forwardRef(function Steamdb({color = 'currentColor', size = 24, title = "steamdb", ...others}, ref) { - const Steamdb = React.forwardRef(function Steamdb({color = 'currentColor', size = 24, title = "steamdb", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Steamdb - \ No newline at end of file +export default Steamdb; diff --git a/src/components/Steamdeck.tsx b/src/components/Steamdeck.tsx index 1bb25a452..7d7efc7e3 100644 --- a/src/components/Steamdeck.tsx +++ b/src/components/Steamdeck.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SteamdeckProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SteamdeckProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Steamdeck = React.forwardRef(function Steamdeck({color = 'currentColor', size = 24, title = "steamdeck", ...others}, ref) { - const Steamdeck = React.forwardRef(function Steamdeck({color = 'currentColor', size = 24, title = "steamdeck", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Steamdeck - \ No newline at end of file +export default Steamdeck; diff --git a/src/components/Steamworks.tsx b/src/components/Steamworks.tsx index bba51e579..54866ead0 100644 --- a/src/components/Steamworks.tsx +++ b/src/components/Steamworks.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SteamworksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SteamworksProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Steamworks = React.forwardRef(function Steamworks({color = 'currentColor', size = 24, title = "steamworks", ...others}, ref) { - const Steamworks = React.forwardRef(function Steamworks({color = 'currentColor', size = 24, title = "steamworks", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Steamworks - \ No newline at end of file +export default Steamworks; diff --git a/src/components/Steelseries.tsx b/src/components/Steelseries.tsx index e6027050f..f6e03a12e 100644 --- a/src/components/Steelseries.tsx +++ b/src/components/Steelseries.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SteelseriesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SteelseriesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Steelseries = React.forwardRef(function Steelseries({color = 'currentColor', size = 24, title = "steelseries", ...others}, ref) { - const Steelseries = React.forwardRef(function Steelseries({color = 'currentColor', size = 24, title = "steelseries", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Steelseries - \ No newline at end of file +export default Steelseries; diff --git a/src/components/Steem.tsx b/src/components/Steem.tsx index 196a9a701..0f50a0e7e 100644 --- a/src/components/Steem.tsx +++ b/src/components/Steem.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SteemProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SteemProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Steem = React.forwardRef(function Steem({color = 'currentColor', size = 24, title = "steem", ...others}, ref) { - const Steem = React.forwardRef(function Steem({color = 'currentColor', size = 24, title = "steem", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Steem - \ No newline at end of file +export default Steem; diff --git a/src/components/Steemit.tsx b/src/components/Steemit.tsx index 9c58fc1cd..f6f4fb467 100644 --- a/src/components/Steemit.tsx +++ b/src/components/Steemit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SteemitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SteemitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Steemit = React.forwardRef(function Steemit({color = 'currentColor', size = 24, title = "steemit", ...others}, ref) { - const Steemit = React.forwardRef(function Steemit({color = 'currentColor', size = 24, title = "steemit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Steemit - \ No newline at end of file +export default Steemit; diff --git a/src/components/Steinberg.tsx b/src/components/Steinberg.tsx index d0eab92a2..9b1fdd89b 100644 --- a/src/components/Steinberg.tsx +++ b/src/components/Steinberg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SteinbergProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SteinbergProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Steinberg = React.forwardRef(function Steinberg({color = 'currentColor', size = 24, title = "steinberg", ...others}, ref) { - const Steinberg = React.forwardRef(function Steinberg({color = 'currentColor', size = 24, title = "steinberg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Steinberg - \ No newline at end of file +export default Steinberg; diff --git a/src/components/Stellar.tsx b/src/components/Stellar.tsx index c43fd25b3..04ec55c0c 100644 --- a/src/components/Stellar.tsx +++ b/src/components/Stellar.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StellarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StellarProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stellar = React.forwardRef(function Stellar({color = 'currentColor', size = 24, title = "stellar", ...others}, ref) { - const Stellar = React.forwardRef(function Stellar({color = 'currentColor', size = 24, title = "stellar", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stellar - \ No newline at end of file +export default Stellar; diff --git a/src/components/Stencyl.tsx b/src/components/Stencyl.tsx index 2b5732c83..26dd35191 100644 --- a/src/components/Stencyl.tsx +++ b/src/components/Stencyl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StencylProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StencylProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stencyl = React.forwardRef(function Stencyl({color = 'currentColor', size = 24, title = "stencyl", ...others}, ref) { - const Stencyl = React.forwardRef(function Stencyl({color = 'currentColor', size = 24, title = "stencyl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stencyl - \ No newline at end of file +export default Stencyl; diff --git a/src/components/Stimulus.tsx b/src/components/Stimulus.tsx index 93abc570c..924d9ff36 100644 --- a/src/components/Stimulus.tsx +++ b/src/components/Stimulus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StimulusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StimulusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stimulus = React.forwardRef(function Stimulus({color = 'currentColor', size = 24, title = "stimulus", ...others}, ref) { - const Stimulus = React.forwardRef(function Stimulus({color = 'currentColor', size = 24, title = "stimulus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stimulus - \ No newline at end of file +export default Stimulus; diff --git a/src/components/Stitcher.tsx b/src/components/Stitcher.tsx index d3c83606b..8e5969ee7 100644 --- a/src/components/Stitcher.tsx +++ b/src/components/Stitcher.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StitcherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StitcherProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stitcher = React.forwardRef(function Stitcher({color = 'currentColor', size = 24, title = "stitcher", ...others}, ref) { - const Stitcher = React.forwardRef(function Stitcher({color = 'currentColor', size = 24, title = "stitcher", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stitcher - \ No newline at end of file +export default Stitcher; diff --git a/src/components/Stmicroelectronics.tsx b/src/components/Stmicroelectronics.tsx index 289d140ed..04f63d611 100644 --- a/src/components/Stmicroelectronics.tsx +++ b/src/components/Stmicroelectronics.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StmicroelectronicsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StmicroelectronicsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stmicroelectronics = React.forwardRef(function Stmicroelectronics({color = 'currentColor', size = 24, title = "stmicroelectronics", ...others}, ref) { - const Stmicroelectronics = React.forwardRef(function Stmicroelectronics({color = 'currentColor', size = 24, title = "stmicroelectronics", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stmicroelectronics - \ No newline at end of file +export default Stmicroelectronics; diff --git a/src/components/Stopstalk.tsx b/src/components/Stopstalk.tsx index 525b46bf6..7ac0a6138 100644 --- a/src/components/Stopstalk.tsx +++ b/src/components/Stopstalk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StopstalkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StopstalkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stopstalk = React.forwardRef(function Stopstalk({color = 'currentColor', size = 24, title = "stopstalk", ...others}, ref) { - const Stopstalk = React.forwardRef(function Stopstalk({color = 'currentColor', size = 24, title = "stopstalk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stopstalk - \ No newline at end of file +export default Stopstalk; diff --git a/src/components/Storyblok.tsx b/src/components/Storyblok.tsx index 2b918f5e7..020a4143f 100644 --- a/src/components/Storyblok.tsx +++ b/src/components/Storyblok.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StoryblokProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StoryblokProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Storyblok = React.forwardRef(function Storyblok({color = 'currentColor', size = 24, title = "storyblok", ...others}, ref) { - const Storyblok = React.forwardRef(function Storyblok({color = 'currentColor', size = 24, title = "storyblok", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Storyblok - \ No newline at end of file +export default Storyblok; diff --git a/src/components/Storybook.tsx b/src/components/Storybook.tsx index 37218cb07..23fcbae3d 100644 --- a/src/components/Storybook.tsx +++ b/src/components/Storybook.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StorybookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StorybookProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Storybook = React.forwardRef(function Storybook({color = 'currentColor', size = 24, title = "storybook", ...others}, ref) { - const Storybook = React.forwardRef(function Storybook({color = 'currentColor', size = 24, title = "storybook", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Storybook - \ No newline at end of file +export default Storybook; diff --git a/src/components/Strapi.tsx b/src/components/Strapi.tsx index 04d709fd2..4d818de96 100644 --- a/src/components/Strapi.tsx +++ b/src/components/Strapi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StrapiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StrapiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Strapi = React.forwardRef(function Strapi({color = 'currentColor', size = 24, title = "strapi", ...others}, ref) { - const Strapi = React.forwardRef(function Strapi({color = 'currentColor', size = 24, title = "strapi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Strapi - \ No newline at end of file +export default Strapi; diff --git a/src/components/Strava.tsx b/src/components/Strava.tsx index abd6d9d0d..c87f8185f 100644 --- a/src/components/Strava.tsx +++ b/src/components/Strava.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StravaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StravaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Strava = React.forwardRef(function Strava({color = 'currentColor', size = 24, title = "strava", ...others}, ref) { - const Strava = React.forwardRef(function Strava({color = 'currentColor', size = 24, title = "strava", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Strava - \ No newline at end of file +export default Strava; diff --git a/src/components/Streamlit.tsx b/src/components/Streamlit.tsx index 5d81f01f0..8bfd9bbe8 100644 --- a/src/components/Streamlit.tsx +++ b/src/components/Streamlit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StreamlitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StreamlitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Streamlit = React.forwardRef(function Streamlit({color = 'currentColor', size = 24, title = "streamlit", ...others}, ref) { - const Streamlit = React.forwardRef(function Streamlit({color = 'currentColor', size = 24, title = "streamlit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Streamlit - \ No newline at end of file +export default Streamlit; diff --git a/src/components/Stripe.tsx b/src/components/Stripe.tsx index 3e194c4b2..fe288b8f3 100644 --- a/src/components/Stripe.tsx +++ b/src/components/Stripe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StripeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StripeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stripe = React.forwardRef(function Stripe({color = 'currentColor', size = 24, title = "stripe", ...others}, ref) { - const Stripe = React.forwardRef(function Stripe({color = 'currentColor', size = 24, title = "stripe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stripe - \ No newline at end of file +export default Stripe; diff --git a/src/components/Strongswan.tsx b/src/components/Strongswan.tsx index 9d956ce7c..7cbd8a19c 100644 --- a/src/components/Strongswan.tsx +++ b/src/components/Strongswan.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StrongswanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StrongswanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Strongswan = React.forwardRef(function Strongswan({color = 'currentColor', size = 24, title = "strongswan", ...others}, ref) { - const Strongswan = React.forwardRef(function Strongswan({color = 'currentColor', size = 24, title = "strongswan", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Strongswan - \ No newline at end of file +export default Strongswan; diff --git a/src/components/Stubhub.tsx b/src/components/Stubhub.tsx index 2041cae72..c24c6a44a 100644 --- a/src/components/Stubhub.tsx +++ b/src/components/Stubhub.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StubhubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StubhubProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stubhub = React.forwardRef(function Stubhub({color = 'currentColor', size = 24, title = "stubhub", ...others}, ref) { - const Stubhub = React.forwardRef(function Stubhub({color = 'currentColor', size = 24, title = "stubhub", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stubhub - \ No newline at end of file +export default Stubhub; diff --git a/src/components/Styledcomponents.tsx b/src/components/Styledcomponents.tsx index 8bfc194eb..35686fae3 100644 --- a/src/components/Styledcomponents.tsx +++ b/src/components/Styledcomponents.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StyledcomponentsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StyledcomponentsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Styledcomponents = React.forwardRef(function Styledcomponents({color = 'currentColor', size = 24, title = "styledcomponents", ...others}, ref) { - const Styledcomponents = React.forwardRef(function Styledcomponents({color = 'currentColor', size = 24, title = "styledcomponents", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Styledcomponents - \ No newline at end of file +export default Styledcomponents; diff --git a/src/components/Stylelint.tsx b/src/components/Stylelint.tsx index 1910465c2..9040eb50b 100644 --- a/src/components/Stylelint.tsx +++ b/src/components/Stylelint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StylelintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StylelintProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stylelint = React.forwardRef(function Stylelint({color = 'currentColor', size = 24, title = "stylelint", ...others}, ref) { - const Stylelint = React.forwardRef(function Stylelint({color = 'currentColor', size = 24, title = "stylelint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stylelint - \ No newline at end of file +export default Stylelint; diff --git a/src/components/Styleshare.tsx b/src/components/Styleshare.tsx index 933dd61f4..8d0c5ee78 100644 --- a/src/components/Styleshare.tsx +++ b/src/components/Styleshare.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StyleshareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StyleshareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Styleshare = React.forwardRef(function Styleshare({color = 'currentColor', size = 24, title = "styleshare", ...others}, ref) { - const Styleshare = React.forwardRef(function Styleshare({color = 'currentColor', size = 24, title = "styleshare", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Styleshare - \ No newline at end of file +export default Styleshare; diff --git a/src/components/Stylus.tsx b/src/components/Stylus.tsx index 96415d362..3df68fefe 100644 --- a/src/components/Stylus.tsx +++ b/src/components/Stylus.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type StylusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type StylusProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Stylus = React.forwardRef(function Stylus({color = 'currentColor', size = 24, title = "stylus", ...others}, ref) { - const Stylus = React.forwardRef(function Stylus({color = 'currentColor', size = 24, title = "stylus", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Stylus - \ No newline at end of file +export default Stylus; diff --git a/src/components/Subaru.tsx b/src/components/Subaru.tsx index fe63721f5..a3cd5ca8a 100644 --- a/src/components/Subaru.tsx +++ b/src/components/Subaru.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SubaruProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SubaruProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Subaru = React.forwardRef(function Subaru({color = 'currentColor', size = 24, title = "subaru", ...others}, ref) { - const Subaru = React.forwardRef(function Subaru({color = 'currentColor', size = 24, title = "subaru", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Subaru - \ No newline at end of file +export default Subaru; diff --git a/src/components/Sublimetext.tsx b/src/components/Sublimetext.tsx index 536b17116..8327d6eee 100644 --- a/src/components/Sublimetext.tsx +++ b/src/components/Sublimetext.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SublimetextProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SublimetextProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sublimetext = React.forwardRef(function Sublimetext({color = 'currentColor', size = 24, title = "sublimetext", ...others}, ref) { - const Sublimetext = React.forwardRef(function Sublimetext({color = 'currentColor', size = 24, title = "sublimetext", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sublimetext - \ No newline at end of file +export default Sublimetext; diff --git a/src/components/Substack.tsx b/src/components/Substack.tsx index a5c0141a6..d14aa1221 100644 --- a/src/components/Substack.tsx +++ b/src/components/Substack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SubstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SubstackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Substack = React.forwardRef(function Substack({color = 'currentColor', size = 24, title = "substack", ...others}, ref) { - const Substack = React.forwardRef(function Substack({color = 'currentColor', size = 24, title = "substack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Substack - \ No newline at end of file +export default Substack; diff --git a/src/components/Subversion.tsx b/src/components/Subversion.tsx index d8d906438..2975de1a0 100644 --- a/src/components/Subversion.tsx +++ b/src/components/Subversion.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SubversionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SubversionProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Subversion = React.forwardRef(function Subversion({color = 'currentColor', size = 24, title = "subversion", ...others}, ref) { - const Subversion = React.forwardRef(function Subversion({color = 'currentColor', size = 24, title = "subversion", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Subversion - \ No newline at end of file +export default Subversion; diff --git a/src/components/Suckless.tsx b/src/components/Suckless.tsx index a70b04b6d..f448867f3 100644 --- a/src/components/Suckless.tsx +++ b/src/components/Suckless.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SucklessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SucklessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Suckless = React.forwardRef(function Suckless({color = 'currentColor', size = 24, title = "suckless", ...others}, ref) { - const Suckless = React.forwardRef(function Suckless({color = 'currentColor', size = 24, title = "suckless", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Suckless - \ No newline at end of file +export default Suckless; diff --git a/src/components/Sumologic.tsx b/src/components/Sumologic.tsx index 4283a69fa..023b17b15 100644 --- a/src/components/Sumologic.tsx +++ b/src/components/Sumologic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SumologicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SumologicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sumologic = React.forwardRef(function Sumologic({color = 'currentColor', size = 24, title = "sumologic", ...others}, ref) { - const Sumologic = React.forwardRef(function Sumologic({color = 'currentColor', size = 24, title = "sumologic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sumologic - \ No newline at end of file +export default Sumologic; diff --git a/src/components/Supabase.tsx b/src/components/Supabase.tsx index a8170d0d1..12c34ccec 100644 --- a/src/components/Supabase.tsx +++ b/src/components/Supabase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SupabaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SupabaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Supabase = React.forwardRef(function Supabase({color = 'currentColor', size = 24, title = "supabase", ...others}, ref) { - const Supabase = React.forwardRef(function Supabase({color = 'currentColor', size = 24, title = "supabase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Supabase - \ No newline at end of file +export default Supabase; diff --git a/src/components/Supermicro.tsx b/src/components/Supermicro.tsx index 20cbe0c1c..9e0b0f37f 100644 --- a/src/components/Supermicro.tsx +++ b/src/components/Supermicro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SupermicroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SupermicroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Supermicro = React.forwardRef(function Supermicro({color = 'currentColor', size = 24, title = "supermicro", ...others}, ref) { - const Supermicro = React.forwardRef(function Supermicro({color = 'currentColor', size = 24, title = "supermicro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Supermicro - \ No newline at end of file +export default Supermicro; diff --git a/src/components/Superuser.tsx b/src/components/Superuser.tsx index f85034e0a..563fcd269 100644 --- a/src/components/Superuser.tsx +++ b/src/components/Superuser.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SuperuserProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SuperuserProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Superuser = React.forwardRef(function Superuser({color = 'currentColor', size = 24, title = "superuser", ...others}, ref) { - const Superuser = React.forwardRef(function Superuser({color = 'currentColor', size = 24, title = "superuser", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Superuser - \ No newline at end of file +export default Superuser; diff --git a/src/components/Surveymonkey.tsx b/src/components/Surveymonkey.tsx index 4ff7364cb..9526905a0 100644 --- a/src/components/Surveymonkey.tsx +++ b/src/components/Surveymonkey.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SurveymonkeyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SurveymonkeyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Surveymonkey = React.forwardRef(function Surveymonkey({color = 'currentColor', size = 24, title = "surveymonkey", ...others}, ref) { - const Surveymonkey = React.forwardRef(function Surveymonkey({color = 'currentColor', size = 24, title = "surveymonkey", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Surveymonkey - \ No newline at end of file +export default Surveymonkey; diff --git a/src/components/Suse.tsx b/src/components/Suse.tsx index 1bfe6a74b..8c808c3a9 100644 --- a/src/components/Suse.tsx +++ b/src/components/Suse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SuseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SuseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Suse = React.forwardRef(function Suse({color = 'currentColor', size = 24, title = "suse", ...others}, ref) { - const Suse = React.forwardRef(function Suse({color = 'currentColor', size = 24, title = "suse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Suse - \ No newline at end of file +export default Suse; diff --git a/src/components/Suzuki.tsx b/src/components/Suzuki.tsx index 87f5858b3..cb55be9ed 100644 --- a/src/components/Suzuki.tsx +++ b/src/components/Suzuki.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SuzukiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SuzukiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Suzuki = React.forwardRef(function Suzuki({color = 'currentColor', size = 24, title = "suzuki", ...others}, ref) { - const Suzuki = React.forwardRef(function Suzuki({color = 'currentColor', size = 24, title = "suzuki", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Suzuki - \ No newline at end of file +export default Suzuki; diff --git a/src/components/Svelte.tsx b/src/components/Svelte.tsx index e50bf5fd9..85a2e91ad 100644 --- a/src/components/Svelte.tsx +++ b/src/components/Svelte.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SvelteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SvelteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Svelte = React.forwardRef(function Svelte({color = 'currentColor', size = 24, title = "svelte", ...others}, ref) { - const Svelte = React.forwardRef(function Svelte({color = 'currentColor', size = 24, title = "svelte", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Svelte - \ No newline at end of file +export default Svelte; diff --git a/src/components/Svg.tsx b/src/components/Svg.tsx index fe89133a1..f92e72455 100644 --- a/src/components/Svg.tsx +++ b/src/components/Svg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SvgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SvgProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Svg = React.forwardRef(function Svg({color = 'currentColor', size = 24, title = "svg", ...others}, ref) { - const Svg = React.forwardRef(function Svg({color = 'currentColor', size = 24, title = "svg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Svg - \ No newline at end of file +export default Svg; diff --git a/src/components/Svgo.tsx b/src/components/Svgo.tsx index c6b5961c6..88fc71c53 100644 --- a/src/components/Svgo.tsx +++ b/src/components/Svgo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SvgoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SvgoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Svgo = React.forwardRef(function Svgo({color = 'currentColor', size = 24, title = "svgo", ...others}, ref) { - const Svgo = React.forwardRef(function Svgo({color = 'currentColor', size = 24, title = "svgo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Svgo - \ No newline at end of file +export default Svgo; diff --git a/src/components/Swagger.tsx b/src/components/Swagger.tsx index 805b17f5a..07f494537 100644 --- a/src/components/Swagger.tsx +++ b/src/components/Swagger.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SwaggerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SwaggerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Swagger = React.forwardRef(function Swagger({color = 'currentColor', size = 24, title = "swagger", ...others}, ref) { - const Swagger = React.forwardRef(function Swagger({color = 'currentColor', size = 24, title = "swagger", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Swagger - \ No newline at end of file +export default Swagger; diff --git a/src/components/Swarm.tsx b/src/components/Swarm.tsx index 5100d7830..93e5bdc87 100644 --- a/src/components/Swarm.tsx +++ b/src/components/Swarm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SwarmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SwarmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Swarm = React.forwardRef(function Swarm({color = 'currentColor', size = 24, title = "swarm", ...others}, ref) { - const Swarm = React.forwardRef(function Swarm({color = 'currentColor', size = 24, title = "swarm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Swarm - \ No newline at end of file +export default Swarm; diff --git a/src/components/Swc.tsx b/src/components/Swc.tsx index 271777547..184d308d0 100644 --- a/src/components/Swc.tsx +++ b/src/components/Swc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SwcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SwcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Swc = React.forwardRef(function Swc({color = 'currentColor', size = 24, title = "swc", ...others}, ref) { - const Swc = React.forwardRef(function Swc({color = 'currentColor', size = 24, title = "swc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Swc - \ No newline at end of file +export default Swc; diff --git a/src/components/Swift.tsx b/src/components/Swift.tsx index 44d9709bf..ff0c33f01 100644 --- a/src/components/Swift.tsx +++ b/src/components/Swift.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SwiftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SwiftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Swift = React.forwardRef(function Swift({color = 'currentColor', size = 24, title = "swift", ...others}, ref) { - const Swift = React.forwardRef(function Swift({color = 'currentColor', size = 24, title = "swift", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Swift - \ No newline at end of file +export default Swift; diff --git a/src/components/Swiggy.tsx b/src/components/Swiggy.tsx index daaa5451a..33a16ea36 100644 --- a/src/components/Swiggy.tsx +++ b/src/components/Swiggy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SwiggyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SwiggyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Swiggy = React.forwardRef(function Swiggy({color = 'currentColor', size = 24, title = "swiggy", ...others}, ref) { - const Swiggy = React.forwardRef(function Swiggy({color = 'currentColor', size = 24, title = "swiggy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Swiggy - \ No newline at end of file +export default Swiggy; diff --git a/src/components/Swiper.tsx b/src/components/Swiper.tsx index d9648c593..9e522a452 100644 --- a/src/components/Swiper.tsx +++ b/src/components/Swiper.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SwiperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SwiperProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Swiper = React.forwardRef(function Swiper({color = 'currentColor', size = 24, title = "swiper", ...others}, ref) { - const Swiper = React.forwardRef(function Swiper({color = 'currentColor', size = 24, title = "swiper", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Swiper - \ No newline at end of file +export default Swiper; diff --git a/src/components/Symantec.tsx b/src/components/Symantec.tsx index 49c69ec67..422b3f0ad 100644 --- a/src/components/Symantec.tsx +++ b/src/components/Symantec.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SymantecProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SymantecProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Symantec = React.forwardRef(function Symantec({color = 'currentColor', size = 24, title = "symantec", ...others}, ref) { - const Symantec = React.forwardRef(function Symantec({color = 'currentColor', size = 24, title = "symantec", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Symantec - \ No newline at end of file +export default Symantec; diff --git a/src/components/Symfony.tsx b/src/components/Symfony.tsx index 314966c04..3e834a83d 100644 --- a/src/components/Symfony.tsx +++ b/src/components/Symfony.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SymfonyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SymfonyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Symfony = React.forwardRef(function Symfony({color = 'currentColor', size = 24, title = "symfony", ...others}, ref) { - const Symfony = React.forwardRef(function Symfony({color = 'currentColor', size = 24, title = "symfony", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Symfony - \ No newline at end of file +export default Symfony; diff --git a/src/components/Symphony.tsx b/src/components/Symphony.tsx index ac73681f2..fa55ca6ce 100644 --- a/src/components/Symphony.tsx +++ b/src/components/Symphony.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SymphonyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SymphonyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Symphony = React.forwardRef(function Symphony({color = 'currentColor', size = 24, title = "symphony", ...others}, ref) { - const Symphony = React.forwardRef(function Symphony({color = 'currentColor', size = 24, title = "symphony", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Symphony - \ No newline at end of file +export default Symphony; diff --git a/src/components/Sympy.tsx b/src/components/Sympy.tsx index aa4570536..cbbb0a794 100644 --- a/src/components/Sympy.tsx +++ b/src/components/Sympy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SympyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SympyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Sympy = React.forwardRef(function Sympy({color = 'currentColor', size = 24, title = "sympy", ...others}, ref) { - const Sympy = React.forwardRef(function Sympy({color = 'currentColor', size = 24, title = "sympy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Sympy - \ No newline at end of file +export default Sympy; diff --git a/src/components/Synology.tsx b/src/components/Synology.tsx index 924e09c60..fd127f129 100644 --- a/src/components/Synology.tsx +++ b/src/components/Synology.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type SynologyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type SynologyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Synology = React.forwardRef(function Synology({color = 'currentColor', size = 24, title = "synology", ...others}, ref) { - const Synology = React.forwardRef(function Synology({color = 'currentColor', size = 24, title = "synology", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Synology - \ No newline at end of file +export default Synology; diff --git a/src/components/Tableau.tsx b/src/components/Tableau.tsx index d07040066..b09026b40 100644 --- a/src/components/Tableau.tsx +++ b/src/components/Tableau.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TableauProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TableauProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tableau = React.forwardRef(function Tableau({color = 'currentColor', size = 24, title = "tableau", ...others}, ref) { - const Tableau = React.forwardRef(function Tableau({color = 'currentColor', size = 24, title = "tableau", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tableau - \ No newline at end of file +export default Tableau; diff --git a/src/components/Tablecheck.tsx b/src/components/Tablecheck.tsx index b78ab70c0..8bd07aab9 100644 --- a/src/components/Tablecheck.tsx +++ b/src/components/Tablecheck.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TablecheckProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TablecheckProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tablecheck = React.forwardRef(function Tablecheck({color = 'currentColor', size = 24, title = "tablecheck", ...others}, ref) { - const Tablecheck = React.forwardRef(function Tablecheck({color = 'currentColor', size = 24, title = "tablecheck", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tablecheck - \ No newline at end of file +export default Tablecheck; diff --git a/src/components/Tacobell.tsx b/src/components/Tacobell.tsx index e21cb9156..af2103b46 100644 --- a/src/components/Tacobell.tsx +++ b/src/components/Tacobell.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TacobellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TacobellProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tacobell = React.forwardRef(function Tacobell({color = 'currentColor', size = 24, title = "tacobell", ...others}, ref) { - const Tacobell = React.forwardRef(function Tacobell({color = 'currentColor', size = 24, title = "tacobell", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tacobell - \ No newline at end of file +export default Tacobell; diff --git a/src/components/Tado.tsx b/src/components/Tado.tsx index f1ce8db65..8dd335dd7 100644 --- a/src/components/Tado.tsx +++ b/src/components/Tado.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TadoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TadoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tado = React.forwardRef(function Tado({color = 'currentColor', size = 24, title = "tado", ...others}, ref) { - const Tado = React.forwardRef(function Tado({color = 'currentColor', size = 24, title = "tado", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tado - \ No newline at end of file +export default Tado; diff --git a/src/components/Taichigraphics.tsx b/src/components/Taichigraphics.tsx new file mode 100644 index 000000000..4a8d224d2 --- /dev/null +++ b/src/components/Taichigraphics.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type TaichigraphicsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Taichigraphics = React.forwardRef(function Taichigraphics({color = 'currentColor', size = 24, title = "taichigraphics", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Taichigraphics; diff --git a/src/components/Taichilang.tsx b/src/components/Taichilang.tsx new file mode 100644 index 000000000..73dcc97cf --- /dev/null +++ b/src/components/Taichilang.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type TaichilangProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Taichilang = React.forwardRef(function Taichilang({color = 'currentColor', size = 24, title = "taichilang", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Taichilang; diff --git a/src/components/Tails.tsx b/src/components/Tails.tsx index 2ead8ab57..d369cacd1 100644 --- a/src/components/Tails.tsx +++ b/src/components/Tails.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TailsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TailsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tails = React.forwardRef(function Tails({color = 'currentColor', size = 24, title = "tails", ...others}, ref) { - const Tails = React.forwardRef(function Tails({color = 'currentColor', size = 24, title = "tails", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tails - \ No newline at end of file +export default Tails; diff --git a/src/components/Tailwindcss.tsx b/src/components/Tailwindcss.tsx index cbefb00d4..349efb3b5 100644 --- a/src/components/Tailwindcss.tsx +++ b/src/components/Tailwindcss.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TailwindcssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TailwindcssProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tailwindcss = React.forwardRef(function Tailwindcss({color = 'currentColor', size = 24, title = "tailwindcss", ...others}, ref) { - const Tailwindcss = React.forwardRef(function Tailwindcss({color = 'currentColor', size = 24, title = "tailwindcss", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tailwindcss - \ No newline at end of file +export default Tailwindcss; diff --git a/src/components/Talend.tsx b/src/components/Talend.tsx index af54ec31e..93a03ecad 100644 --- a/src/components/Talend.tsx +++ b/src/components/Talend.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TalendProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TalendProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Talend = React.forwardRef(function Talend({color = 'currentColor', size = 24, title = "talend", ...others}, ref) { - const Talend = React.forwardRef(function Talend({color = 'currentColor', size = 24, title = "talend", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Talend - \ No newline at end of file +export default Talend; diff --git a/src/components/Talenthouse.tsx b/src/components/Talenthouse.tsx index 072177266..c5c20de4e 100644 --- a/src/components/Talenthouse.tsx +++ b/src/components/Talenthouse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TalenthouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TalenthouseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Talenthouse = React.forwardRef(function Talenthouse({color = 'currentColor', size = 24, title = "talenthouse", ...others}, ref) { - const Talenthouse = React.forwardRef(function Talenthouse({color = 'currentColor', size = 24, title = "talenthouse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Talenthouse - \ No newline at end of file +export default Talenthouse; diff --git a/src/components/Tamiya.tsx b/src/components/Tamiya.tsx new file mode 100644 index 000000000..830f417e3 --- /dev/null +++ b/src/components/Tamiya.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type TamiyaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Tamiya = React.forwardRef(function Tamiya({color = 'currentColor', size = 24, title = "tamiya", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Tamiya; diff --git a/src/components/Tampermonkey.tsx b/src/components/Tampermonkey.tsx index 9320c14d8..b9b1ea279 100644 --- a/src/components/Tampermonkey.tsx +++ b/src/components/Tampermonkey.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TampermonkeyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TampermonkeyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tampermonkey = React.forwardRef(function Tampermonkey({color = 'currentColor', size = 24, title = "tampermonkey", ...others}, ref) { - const Tampermonkey = React.forwardRef(function Tampermonkey({color = 'currentColor', size = 24, title = "tampermonkey", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tampermonkey - \ No newline at end of file +export default Tampermonkey; diff --git a/src/components/Taobao.tsx b/src/components/Taobao.tsx index 90560c721..dcff25d83 100644 --- a/src/components/Taobao.tsx +++ b/src/components/Taobao.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TaobaoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TaobaoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Taobao = React.forwardRef(function Taobao({color = 'currentColor', size = 24, title = "taobao", ...others}, ref) { - const Taobao = React.forwardRef(function Taobao({color = 'currentColor', size = 24, title = "taobao", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Taobao - \ No newline at end of file +export default Taobao; diff --git a/src/components/Tapas.tsx b/src/components/Tapas.tsx index 11c9c042d..0642996d9 100644 --- a/src/components/Tapas.tsx +++ b/src/components/Tapas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TapasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TapasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tapas = React.forwardRef(function Tapas({color = 'currentColor', size = 24, title = "tapas", ...others}, ref) { - const Tapas = React.forwardRef(function Tapas({color = 'currentColor', size = 24, title = "tapas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tapas - \ No newline at end of file +export default Tapas; diff --git a/src/components/Target.tsx b/src/components/Target.tsx index 1b5c19b50..1f687c4d4 100644 --- a/src/components/Target.tsx +++ b/src/components/Target.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TargetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TargetProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Target = React.forwardRef(function Target({color = 'currentColor', size = 24, title = "target", ...others}, ref) { - const Target = React.forwardRef(function Target({color = 'currentColor', size = 24, title = "target", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Target - \ No newline at end of file +export default Target; diff --git a/src/components/Task.tsx b/src/components/Task.tsx index f681e91ed..728d30288 100644 --- a/src/components/Task.tsx +++ b/src/components/Task.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TaskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TaskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Task = React.forwardRef(function Task({color = 'currentColor', size = 24, title = "task", ...others}, ref) { - const Task = React.forwardRef(function Task({color = 'currentColor', size = 24, title = "task", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Task - \ No newline at end of file +export default Task; diff --git a/src/components/Tasmota.tsx b/src/components/Tasmota.tsx index d87db7314..f58154253 100644 --- a/src/components/Tasmota.tsx +++ b/src/components/Tasmota.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TasmotaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TasmotaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tasmota = React.forwardRef(function Tasmota({color = 'currentColor', size = 24, title = "tasmota", ...others}, ref) { - const Tasmota = React.forwardRef(function Tasmota({color = 'currentColor', size = 24, title = "tasmota", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tasmota - \ No newline at end of file +export default Tasmota; diff --git a/src/components/Tata.tsx b/src/components/Tata.tsx index 46ab0cf15..f7f2d5dae 100644 --- a/src/components/Tata.tsx +++ b/src/components/Tata.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TataProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tata = React.forwardRef(function Tata({color = 'currentColor', size = 24, title = "tata", ...others}, ref) { - const Tata = React.forwardRef(function Tata({color = 'currentColor', size = 24, title = "tata", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tata - \ No newline at end of file +export default Tata; diff --git a/src/components/Tauri.tsx b/src/components/Tauri.tsx index c0a6dc6ce..de169aca1 100644 --- a/src/components/Tauri.tsx +++ b/src/components/Tauri.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TauriProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TauriProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tauri = React.forwardRef(function Tauri({color = 'currentColor', size = 24, title = "tauri", ...others}, ref) { - const Tauri = React.forwardRef(function Tauri({color = 'currentColor', size = 24, title = "tauri", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tauri - \ No newline at end of file +export default Tauri; diff --git a/src/components/Taxbuzz.tsx b/src/components/Taxbuzz.tsx index cc678214d..cd11c8a30 100644 --- a/src/components/Taxbuzz.tsx +++ b/src/components/Taxbuzz.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TaxbuzzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TaxbuzzProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Taxbuzz = React.forwardRef(function Taxbuzz({color = 'currentColor', size = 24, title = "taxbuzz", ...others}, ref) { - const Taxbuzz = React.forwardRef(function Taxbuzz({color = 'currentColor', size = 24, title = "taxbuzz", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Taxbuzz - \ No newline at end of file +export default Taxbuzz; diff --git a/src/components/Teamcity.tsx b/src/components/Teamcity.tsx index 303277821..6a64d6d5a 100644 --- a/src/components/Teamcity.tsx +++ b/src/components/Teamcity.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TeamcityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TeamcityProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Teamcity = React.forwardRef(function Teamcity({color = 'currentColor', size = 24, title = "teamcity", ...others}, ref) { - const Teamcity = React.forwardRef(function Teamcity({color = 'currentColor', size = 24, title = "teamcity", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Teamcity - \ No newline at end of file +export default Teamcity; diff --git a/src/components/Teamspeak.tsx b/src/components/Teamspeak.tsx index c657471f5..39923055e 100644 --- a/src/components/Teamspeak.tsx +++ b/src/components/Teamspeak.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TeamspeakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TeamspeakProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Teamspeak = React.forwardRef(function Teamspeak({color = 'currentColor', size = 24, title = "teamspeak", ...others}, ref) { - const Teamspeak = React.forwardRef(function Teamspeak({color = 'currentColor', size = 24, title = "teamspeak", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Teamspeak - \ No newline at end of file +export default Teamspeak; diff --git a/src/components/Teamviewer.tsx b/src/components/Teamviewer.tsx index 42b73d1bc..7ddefece8 100644 --- a/src/components/Teamviewer.tsx +++ b/src/components/Teamviewer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TeamviewerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TeamviewerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Teamviewer = React.forwardRef(function Teamviewer({color = 'currentColor', size = 24, title = "teamviewer", ...others}, ref) { - const Teamviewer = React.forwardRef(function Teamviewer({color = 'currentColor', size = 24, title = "teamviewer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Teamviewer - \ No newline at end of file +export default Teamviewer; diff --git a/src/components/Ted.tsx b/src/components/Ted.tsx index e8ce09c9b..c12ae4c0a 100644 --- a/src/components/Ted.tsx +++ b/src/components/Ted.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ted = React.forwardRef(function Ted({color = 'currentColor', size = 24, title = "ted", ...others}, ref) { - const Ted = React.forwardRef(function Ted({color = 'currentColor', size = 24, title = "ted", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ted - \ No newline at end of file +export default Ted; diff --git a/src/components/Teespring.tsx b/src/components/Teespring.tsx index 2bf185fcb..8c2983116 100644 --- a/src/components/Teespring.tsx +++ b/src/components/Teespring.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TeespringProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TeespringProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Teespring = React.forwardRef(function Teespring({color = 'currentColor', size = 24, title = "teespring", ...others}, ref) { - const Teespring = React.forwardRef(function Teespring({color = 'currentColor', size = 24, title = "teespring", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Teespring - \ No newline at end of file +export default Teespring; diff --git a/src/components/Tekton.tsx b/src/components/Tekton.tsx index 8a23dd070..57218399c 100644 --- a/src/components/Tekton.tsx +++ b/src/components/Tekton.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TektonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TektonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tekton = React.forwardRef(function Tekton({color = 'currentColor', size = 24, title = "tekton", ...others}, ref) { - const Tekton = React.forwardRef(function Tekton({color = 'currentColor', size = 24, title = "tekton", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tekton - \ No newline at end of file +export default Tekton; diff --git a/src/components/Tele5.tsx b/src/components/Tele5.tsx index 188e269e8..273643523 100644 --- a/src/components/Tele5.tsx +++ b/src/components/Tele5.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Tele5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Tele5Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tele5 = React.forwardRef(function Tele5({color = 'currentColor', size = 24, title = "tele5", ...others}, ref) { - const Tele5 = React.forwardRef(function Tele5({color = 'currentColor', size = 24, title = "tele5", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tele5 - \ No newline at end of file +export default Tele5; diff --git a/src/components/Telegram.tsx b/src/components/Telegram.tsx index ef05c1a87..950a058fc 100644 --- a/src/components/Telegram.tsx +++ b/src/components/Telegram.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TelegramProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TelegramProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Telegram = React.forwardRef(function Telegram({color = 'currentColor', size = 24, title = "telegram", ...others}, ref) { - const Telegram = React.forwardRef(function Telegram({color = 'currentColor', size = 24, title = "telegram", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Telegram - \ No newline at end of file +export default Telegram; diff --git a/src/components/Telegraph.tsx b/src/components/Telegraph.tsx index 6fcd4011e..38e49bba9 100644 --- a/src/components/Telegraph.tsx +++ b/src/components/Telegraph.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TelegraphProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TelegraphProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Telegraph = React.forwardRef(function Telegraph({color = 'currentColor', size = 24, title = "telegraph", ...others}, ref) { - const Telegraph = React.forwardRef(function Telegraph({color = 'currentColor', size = 24, title = "telegraph", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Telegraph - \ No newline at end of file +export default Telegraph; diff --git a/src/components/Temporal.tsx b/src/components/Temporal.tsx index b54d9acd4..fd6c4717d 100644 --- a/src/components/Temporal.tsx +++ b/src/components/Temporal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TemporalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TemporalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Temporal = React.forwardRef(function Temporal({color = 'currentColor', size = 24, title = "temporal", ...others}, ref) { - const Temporal = React.forwardRef(function Temporal({color = 'currentColor', size = 24, title = "temporal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Temporal - \ No newline at end of file +export default Temporal; diff --git a/src/components/Tencentqq.tsx b/src/components/Tencentqq.tsx index 23ab0864a..7cabf8fd7 100644 --- a/src/components/Tencentqq.tsx +++ b/src/components/Tencentqq.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TencentqqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TencentqqProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tencentqq = React.forwardRef(function Tencentqq({color = 'currentColor', size = 24, title = "tencentqq", ...others}, ref) { - const Tencentqq = React.forwardRef(function Tencentqq({color = 'currentColor', size = 24, title = "tencentqq", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tencentqq - \ No newline at end of file +export default Tencentqq; diff --git a/src/components/Tensorflow.tsx b/src/components/Tensorflow.tsx index 33708f0bf..00df6ec7b 100644 --- a/src/components/Tensorflow.tsx +++ b/src/components/Tensorflow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TensorflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TensorflowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tensorflow = React.forwardRef(function Tensorflow({color = 'currentColor', size = 24, title = "tensorflow", ...others}, ref) { - const Tensorflow = React.forwardRef(function Tensorflow({color = 'currentColor', size = 24, title = "tensorflow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tensorflow - \ No newline at end of file +export default Tensorflow; diff --git a/src/components/Teradata.tsx b/src/components/Teradata.tsx index a7b018f05..e1d92fa80 100644 --- a/src/components/Teradata.tsx +++ b/src/components/Teradata.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TeradataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TeradataProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Teradata = React.forwardRef(function Teradata({color = 'currentColor', size = 24, title = "teradata", ...others}, ref) { - const Teradata = React.forwardRef(function Teradata({color = 'currentColor', size = 24, title = "teradata", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Teradata - \ No newline at end of file +export default Teradata; diff --git a/src/components/Teratail.tsx b/src/components/Teratail.tsx index 89d9de870..2cf9bf66b 100644 --- a/src/components/Teratail.tsx +++ b/src/components/Teratail.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TeratailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TeratailProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Teratail = React.forwardRef(function Teratail({color = 'currentColor', size = 24, title = "teratail", ...others}, ref) { - const Teratail = React.forwardRef(function Teratail({color = 'currentColor', size = 24, title = "teratail", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Teratail - \ No newline at end of file +export default Teratail; diff --git a/src/components/Terraform.tsx b/src/components/Terraform.tsx index b4096fe1e..2640bb01a 100644 --- a/src/components/Terraform.tsx +++ b/src/components/Terraform.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TerraformProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TerraformProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Terraform = React.forwardRef(function Terraform({color = 'currentColor', size = 24, title = "terraform", ...others}, ref) { - const Terraform = React.forwardRef(function Terraform({color = 'currentColor', size = 24, title = "terraform", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Terraform - \ No newline at end of file +export default Terraform; diff --git a/src/components/Tesco.tsx b/src/components/Tesco.tsx index d447bba0e..8a5c5b46c 100644 --- a/src/components/Tesco.tsx +++ b/src/components/Tesco.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TescoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TescoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tesco = React.forwardRef(function Tesco({color = 'currentColor', size = 24, title = "tesco", ...others}, ref) { - const Tesco = React.forwardRef(function Tesco({color = 'currentColor', size = 24, title = "tesco", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tesco - \ No newline at end of file +export default Tesco; diff --git a/src/components/Tesla.tsx b/src/components/Tesla.tsx index 561d5520b..a934918c8 100644 --- a/src/components/Tesla.tsx +++ b/src/components/Tesla.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TeslaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TeslaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tesla = React.forwardRef(function Tesla({color = 'currentColor', size = 24, title = "tesla", ...others}, ref) { - const Tesla = React.forwardRef(function Tesla({color = 'currentColor', size = 24, title = "tesla", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tesla - \ No newline at end of file +export default Tesla; diff --git a/src/components/Testcafe.tsx b/src/components/Testcafe.tsx index 0cfb28f04..6c59ca8ea 100644 --- a/src/components/Testcafe.tsx +++ b/src/components/Testcafe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TestcafeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TestcafeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Testcafe = React.forwardRef(function Testcafe({color = 'currentColor', size = 24, title = "testcafe", ...others}, ref) { - const Testcafe = React.forwardRef(function Testcafe({color = 'currentColor', size = 24, title = "testcafe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Testcafe - \ No newline at end of file +export default Testcafe; diff --git a/src/components/Testin.tsx b/src/components/Testin.tsx index f25488030..63f3e477a 100644 --- a/src/components/Testin.tsx +++ b/src/components/Testin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TestinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TestinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Testin = React.forwardRef(function Testin({color = 'currentColor', size = 24, title = "testin", ...others}, ref) { - const Testin = React.forwardRef(function Testin({color = 'currentColor', size = 24, title = "testin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Testin - \ No newline at end of file +export default Testin; diff --git a/src/components/Testinglibrary.tsx b/src/components/Testinglibrary.tsx index d1f4b17ed..251def19d 100644 --- a/src/components/Testinglibrary.tsx +++ b/src/components/Testinglibrary.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TestinglibraryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TestinglibraryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Testinglibrary = React.forwardRef(function Testinglibrary({color = 'currentColor', size = 24, title = "testinglibrary", ...others}, ref) { - const Testinglibrary = React.forwardRef(function Testinglibrary({color = 'currentColor', size = 24, title = "testinglibrary", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Testinglibrary - \ No newline at end of file +export default Testinglibrary; diff --git a/src/components/Tether.tsx b/src/components/Tether.tsx index 8873319a2..aadd6a3b4 100644 --- a/src/components/Tether.tsx +++ b/src/components/Tether.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TetherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TetherProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tether = React.forwardRef(function Tether({color = 'currentColor', size = 24, title = "tether", ...others}, ref) { - const Tether = React.forwardRef(function Tether({color = 'currentColor', size = 24, title = "tether", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tether - \ No newline at end of file +export default Tether; diff --git a/src/components/Textpattern.tsx b/src/components/Textpattern.tsx index ff5f6c836..93dff1cf5 100644 --- a/src/components/Textpattern.tsx +++ b/src/components/Textpattern.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TextpatternProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TextpatternProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Textpattern = React.forwardRef(function Textpattern({color = 'currentColor', size = 24, title = "textpattern", ...others}, ref) { - const Textpattern = React.forwardRef(function Textpattern({color = 'currentColor', size = 24, title = "textpattern", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Textpattern - \ No newline at end of file +export default Textpattern; diff --git a/src/components/Thealgorithms.tsx b/src/components/Thealgorithms.tsx index 52b9576db..2fdb540b4 100644 --- a/src/components/Thealgorithms.tsx +++ b/src/components/Thealgorithms.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThealgorithmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThealgorithmsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Thealgorithms = React.forwardRef(function Thealgorithms({color = 'currentColor', size = 24, title = "thealgorithms", ...others}, ref) { - const Thealgorithms = React.forwardRef(function Thealgorithms({color = 'currentColor', size = 24, title = "thealgorithms", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Thealgorithms - \ No newline at end of file +export default Thealgorithms; diff --git a/src/components/Theconversation.tsx b/src/components/Theconversation.tsx index 6c77c160b..a2f5023d2 100644 --- a/src/components/Theconversation.tsx +++ b/src/components/Theconversation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TheconversationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TheconversationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Theconversation = React.forwardRef(function Theconversation({color = 'currentColor', size = 24, title = "theconversation", ...others}, ref) { - const Theconversation = React.forwardRef(function Theconversation({color = 'currentColor', size = 24, title = "theconversation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Theconversation - \ No newline at end of file +export default Theconversation; diff --git a/src/components/Theirishtimes.tsx b/src/components/Theirishtimes.tsx index 3cb9cd19b..267e5ef92 100644 --- a/src/components/Theirishtimes.tsx +++ b/src/components/Theirishtimes.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TheirishtimesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TheirishtimesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Theirishtimes = React.forwardRef(function Theirishtimes({color = 'currentColor', size = 24, title = "theirishtimes", ...others}, ref) { - const Theirishtimes = React.forwardRef(function Theirishtimes({color = 'currentColor', size = 24, title = "theirishtimes", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Theirishtimes - \ No newline at end of file +export default Theirishtimes; diff --git a/src/components/Themighty.tsx b/src/components/Themighty.tsx index 2fb35d9e8..029b07e22 100644 --- a/src/components/Themighty.tsx +++ b/src/components/Themighty.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThemightyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThemightyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Themighty = React.forwardRef(function Themighty({color = 'currentColor', size = 24, title = "themighty", ...others}, ref) { - const Themighty = React.forwardRef(function Themighty({color = 'currentColor', size = 24, title = "themighty", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Themighty - \ No newline at end of file +export default Themighty; diff --git a/src/components/Themodelsresource.tsx b/src/components/Themodelsresource.tsx index be782dd1b..e38777fed 100644 --- a/src/components/Themodelsresource.tsx +++ b/src/components/Themodelsresource.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThemodelsresourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThemodelsresourceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Themodelsresource = React.forwardRef(function Themodelsresource({color = 'currentColor', size = 24, title = "themodelsresource", ...others}, ref) { - const Themodelsresource = React.forwardRef(function Themodelsresource({color = 'currentColor', size = 24, title = "themodelsresource", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Themodelsresource - \ No newline at end of file +export default Themodelsresource; diff --git a/src/components/Themoviedatabase.tsx b/src/components/Themoviedatabase.tsx index 778612945..bce2d7e43 100644 --- a/src/components/Themoviedatabase.tsx +++ b/src/components/Themoviedatabase.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThemoviedatabaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThemoviedatabaseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Themoviedatabase = React.forwardRef(function Themoviedatabase({color = 'currentColor', size = 24, title = "themoviedatabase", ...others}, ref) { - const Themoviedatabase = React.forwardRef(function Themoviedatabase({color = 'currentColor', size = 24, title = "themoviedatabase", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Themoviedatabase - \ No newline at end of file +export default Themoviedatabase; diff --git a/src/components/Thenorthface.tsx b/src/components/Thenorthface.tsx index 4c3d98cfe..b2eec6927 100644 --- a/src/components/Thenorthface.tsx +++ b/src/components/Thenorthface.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThenorthfaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThenorthfaceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Thenorthface = React.forwardRef(function Thenorthface({color = 'currentColor', size = 24, title = "thenorthface", ...others}, ref) { - const Thenorthface = React.forwardRef(function Thenorthface({color = 'currentColor', size = 24, title = "thenorthface", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Thenorthface - \ No newline at end of file +export default Thenorthface; diff --git a/src/components/Theregister.tsx b/src/components/Theregister.tsx index bc6110e4f..55984d9f9 100644 --- a/src/components/Theregister.tsx +++ b/src/components/Theregister.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TheregisterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TheregisterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Theregister = React.forwardRef(function Theregister({color = 'currentColor', size = 24, title = "theregister", ...others}, ref) { - const Theregister = React.forwardRef(function Theregister({color = 'currentColor', size = 24, title = "theregister", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Theregister - \ No newline at end of file +export default Theregister; diff --git a/src/components/Thesoundsresource.tsx b/src/components/Thesoundsresource.tsx index 310a8a7d4..2208f1668 100644 --- a/src/components/Thesoundsresource.tsx +++ b/src/components/Thesoundsresource.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThesoundsresourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThesoundsresourceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Thesoundsresource = React.forwardRef(function Thesoundsresource({color = 'currentColor', size = 24, title = "thesoundsresource", ...others}, ref) { - const Thesoundsresource = React.forwardRef(function Thesoundsresource({color = 'currentColor', size = 24, title = "thesoundsresource", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Thesoundsresource - \ No newline at end of file +export default Thesoundsresource; diff --git a/src/components/Thespritersresource.tsx b/src/components/Thespritersresource.tsx index abd17c1d3..a2f672f8a 100644 --- a/src/components/Thespritersresource.tsx +++ b/src/components/Thespritersresource.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThespritersresourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThespritersresourceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Thespritersresource = React.forwardRef(function Thespritersresource({color = 'currentColor', size = 24, title = "thespritersresource", ...others}, ref) { - const Thespritersresource = React.forwardRef(function Thespritersresource({color = 'currentColor', size = 24, title = "thespritersresource", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Thespritersresource - \ No newline at end of file +export default Thespritersresource; diff --git a/src/components/Thewashingtonpost.tsx b/src/components/Thewashingtonpost.tsx index ab9f75aa2..8a72e2710 100644 --- a/src/components/Thewashingtonpost.tsx +++ b/src/components/Thewashingtonpost.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThewashingtonpostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThewashingtonpostProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Thewashingtonpost = React.forwardRef(function Thewashingtonpost({color = 'currentColor', size = 24, title = "thewashingtonpost", ...others}, ref) { - const Thewashingtonpost = React.forwardRef(function Thewashingtonpost({color = 'currentColor', size = 24, title = "thewashingtonpost", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Thewashingtonpost - \ No newline at end of file +export default Thewashingtonpost; diff --git a/src/components/Thingiverse.tsx b/src/components/Thingiverse.tsx index dca3940da..2358b5676 100644 --- a/src/components/Thingiverse.tsx +++ b/src/components/Thingiverse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThingiverseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThingiverseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Thingiverse = React.forwardRef(function Thingiverse({color = 'currentColor', size = 24, title = "thingiverse", ...others}, ref) { - const Thingiverse = React.forwardRef(function Thingiverse({color = 'currentColor', size = 24, title = "thingiverse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Thingiverse - \ No newline at end of file +export default Thingiverse; diff --git a/src/components/Thinkpad.tsx b/src/components/Thinkpad.tsx index 5f25d307d..12a0529e7 100644 --- a/src/components/Thinkpad.tsx +++ b/src/components/Thinkpad.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThinkpadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThinkpadProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Thinkpad = React.forwardRef(function Thinkpad({color = 'currentColor', size = 24, title = "thinkpad", ...others}, ref) { - const Thinkpad = React.forwardRef(function Thinkpad({color = 'currentColor', size = 24, title = "thinkpad", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Thinkpad - \ No newline at end of file +export default Thinkpad; diff --git a/src/components/Threadless.tsx b/src/components/Threadless.tsx index 8deebc66b..355a4f15c 100644 --- a/src/components/Threadless.tsx +++ b/src/components/Threadless.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThreadlessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThreadlessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Threadless = React.forwardRef(function Threadless({color = 'currentColor', size = 24, title = "threadless", ...others}, ref) { - const Threadless = React.forwardRef(function Threadless({color = 'currentColor', size = 24, title = "threadless", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Threadless - \ No newline at end of file +export default Threadless; diff --git a/src/components/ThreeM.tsx b/src/components/ThreeM.tsx index 6271eaa58..7047f362a 100644 --- a/src/components/ThreeM.tsx +++ b/src/components/ThreeM.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThreeMProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThreeMProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const ThreeM = React.forwardRef(function ThreeM({color = 'currentColor', size = 24, title = "3m", ...others}, ref) { - const ThreeM = React.forwardRef(function ThreeM({color = 'currentColor', size = 24, title = "3m", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default ThreeM - \ No newline at end of file +export default ThreeM; diff --git a/src/components/Threedotjs.tsx b/src/components/Threedotjs.tsx index fdfda0b2d..a63ed3f7e 100644 --- a/src/components/Threedotjs.tsx +++ b/src/components/Threedotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThreedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThreedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Threedotjs = React.forwardRef(function Threedotjs({color = 'currentColor', size = 24, title = "threedotjs", ...others}, ref) { - const Threedotjs = React.forwardRef(function Threedotjs({color = 'currentColor', size = 24, title = "threedotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Threedotjs - \ No newline at end of file +export default Threedotjs; diff --git a/src/components/Threema.tsx b/src/components/Threema.tsx index d4b2ef392..7b217fdd5 100644 --- a/src/components/Threema.tsx +++ b/src/components/Threema.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThreemaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThreemaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Threema = React.forwardRef(function Threema({color = 'currentColor', size = 24, title = "threema", ...others}, ref) { - const Threema = React.forwardRef(function Threema({color = 'currentColor', size = 24, title = "threema", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Threema - \ No newline at end of file +export default Threema; diff --git a/src/components/Thumbtack.tsx b/src/components/Thumbtack.tsx index 0655320c2..651099012 100644 --- a/src/components/Thumbtack.tsx +++ b/src/components/Thumbtack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThumbtackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThumbtackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Thumbtack = React.forwardRef(function Thumbtack({color = 'currentColor', size = 24, title = "thumbtack", ...others}, ref) { - const Thumbtack = React.forwardRef(function Thumbtack({color = 'currentColor', size = 24, title = "thumbtack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Thumbtack - \ No newline at end of file +export default Thumbtack; diff --git a/src/components/Thunderbird.tsx b/src/components/Thunderbird.tsx index eabb3f667..3c9a40f77 100644 --- a/src/components/Thunderbird.tsx +++ b/src/components/Thunderbird.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThunderbirdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThunderbirdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Thunderbird = React.forwardRef(function Thunderbird({color = 'currentColor', size = 24, title = "thunderbird", ...others}, ref) { - const Thunderbird = React.forwardRef(function Thunderbird({color = 'currentColor', size = 24, title = "thunderbird", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Thunderbird - \ No newline at end of file +export default Thunderbird; diff --git a/src/components/Thymeleaf.tsx b/src/components/Thymeleaf.tsx index eb94296eb..ca9d1ddd6 100644 --- a/src/components/Thymeleaf.tsx +++ b/src/components/Thymeleaf.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ThymeleafProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ThymeleafProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Thymeleaf = React.forwardRef(function Thymeleaf({color = 'currentColor', size = 24, title = "thymeleaf", ...others}, ref) { - const Thymeleaf = React.forwardRef(function Thymeleaf({color = 'currentColor', size = 24, title = "thymeleaf", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Thymeleaf - \ No newline at end of file +export default Thymeleaf; diff --git a/src/components/Ticketmaster.tsx b/src/components/Ticketmaster.tsx index 22febae2a..1d8416ff6 100644 --- a/src/components/Ticketmaster.tsx +++ b/src/components/Ticketmaster.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TicketmasterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TicketmasterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ticketmaster = React.forwardRef(function Ticketmaster({color = 'currentColor', size = 24, title = "ticketmaster", ...others}, ref) { - const Ticketmaster = React.forwardRef(function Ticketmaster({color = 'currentColor', size = 24, title = "ticketmaster", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ticketmaster - \ No newline at end of file +export default Ticketmaster; diff --git a/src/components/Tidal.tsx b/src/components/Tidal.tsx index 265742671..275fd9fea 100644 --- a/src/components/Tidal.tsx +++ b/src/components/Tidal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TidalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TidalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tidal = React.forwardRef(function Tidal({color = 'currentColor', size = 24, title = "tidal", ...others}, ref) { - const Tidal = React.forwardRef(function Tidal({color = 'currentColor', size = 24, title = "tidal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tidal - \ No newline at end of file +export default Tidal; diff --git a/src/components/Tide.tsx b/src/components/Tide.tsx index 80e46f814..52d63526f 100644 --- a/src/components/Tide.tsx +++ b/src/components/Tide.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TideProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tide = React.forwardRef(function Tide({color = 'currentColor', size = 24, title = "tide", ...others}, ref) { - const Tide = React.forwardRef(function Tide({color = 'currentColor', size = 24, title = "tide", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tide - \ No newline at end of file +export default Tide; diff --git a/src/components/Tidyverse.tsx b/src/components/Tidyverse.tsx new file mode 100644 index 000000000..a9be3e4f1 --- /dev/null +++ b/src/components/Tidyverse.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type TidyverseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Tidyverse = React.forwardRef(function Tidyverse({color = 'currentColor', size = 24, title = "tidyverse", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Tidyverse; diff --git a/src/components/Tietoevry.tsx b/src/components/Tietoevry.tsx index cfd31bca1..8024c9672 100644 --- a/src/components/Tietoevry.tsx +++ b/src/components/Tietoevry.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TietoevryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TietoevryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tietoevry = React.forwardRef(function Tietoevry({color = 'currentColor', size = 24, title = "tietoevry", ...others}, ref) { - const Tietoevry = React.forwardRef(function Tietoevry({color = 'currentColor', size = 24, title = "tietoevry", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tietoevry - \ No newline at end of file +export default Tietoevry; diff --git a/src/components/Tiktok.tsx b/src/components/Tiktok.tsx index 0a950ad6d..534f99778 100644 --- a/src/components/Tiktok.tsx +++ b/src/components/Tiktok.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TiktokProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TiktokProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tiktok = React.forwardRef(function Tiktok({color = 'currentColor', size = 24, title = "tiktok", ...others}, ref) { - const Tiktok = React.forwardRef(function Tiktok({color = 'currentColor', size = 24, title = "tiktok", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tiktok - \ No newline at end of file +export default Tiktok; diff --git a/src/components/Tile.tsx b/src/components/Tile.tsx index f66566ffa..bf301df47 100644 --- a/src/components/Tile.tsx +++ b/src/components/Tile.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TileProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TileProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tile = React.forwardRef(function Tile({color = 'currentColor', size = 24, title = "tile", ...others}, ref) { - const Tile = React.forwardRef(function Tile({color = 'currentColor', size = 24, title = "tile", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tile - \ No newline at end of file +export default Tile; diff --git a/src/components/Timescale.tsx b/src/components/Timescale.tsx index 168c59b02..f7edec193 100644 --- a/src/components/Timescale.tsx +++ b/src/components/Timescale.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TimescaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TimescaleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Timescale = React.forwardRef(function Timescale({color = 'currentColor', size = 24, title = "timescale", ...others}, ref) { - const Timescale = React.forwardRef(function Timescale({color = 'currentColor', size = 24, title = "timescale", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Timescale - \ No newline at end of file +export default Timescale; diff --git a/src/components/Tinder.tsx b/src/components/Tinder.tsx index c1e5c53b5..14f94fcd2 100644 --- a/src/components/Tinder.tsx +++ b/src/components/Tinder.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TinderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TinderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tinder = React.forwardRef(function Tinder({color = 'currentColor', size = 24, title = "tinder", ...others}, ref) { - const Tinder = React.forwardRef(function Tinder({color = 'currentColor', size = 24, title = "tinder", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tinder - \ No newline at end of file +export default Tinder; diff --git a/src/components/Tinyletter.tsx b/src/components/Tinyletter.tsx index 9b46f075d..6ece40356 100644 --- a/src/components/Tinyletter.tsx +++ b/src/components/Tinyletter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TinyletterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TinyletterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tinyletter = React.forwardRef(function Tinyletter({color = 'currentColor', size = 24, title = "tinyletter", ...others}, ref) { - const Tinyletter = React.forwardRef(function Tinyletter({color = 'currentColor', size = 24, title = "tinyletter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tinyletter - \ No newline at end of file +export default Tinyletter; diff --git a/src/components/Tistory.tsx b/src/components/Tistory.tsx index 16c9af420..1e1b70ed3 100644 --- a/src/components/Tistory.tsx +++ b/src/components/Tistory.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TistoryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TistoryProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tistory = React.forwardRef(function Tistory({color = 'currentColor', size = 24, title = "tistory", ...others}, ref) { - const Tistory = React.forwardRef(function Tistory({color = 'currentColor', size = 24, title = "tistory", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tistory - \ No newline at end of file +export default Tistory; diff --git a/src/components/Tmobile.tsx b/src/components/Tmobile.tsx index 0ccd5611e..43caf0f42 100644 --- a/src/components/Tmobile.tsx +++ b/src/components/Tmobile.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TmobileProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TmobileProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tmobile = React.forwardRef(function Tmobile({color = 'currentColor', size = 24, title = "tmobile", ...others}, ref) { - const Tmobile = React.forwardRef(function Tmobile({color = 'currentColor', size = 24, title = "tmobile", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tmobile - \ No newline at end of file +export default Tmobile; diff --git a/src/components/Tmux.tsx b/src/components/Tmux.tsx index 4f81cef59..5089d2b0b 100644 --- a/src/components/Tmux.tsx +++ b/src/components/Tmux.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TmuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TmuxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tmux = React.forwardRef(function Tmux({color = 'currentColor', size = 24, title = "tmux", ...others}, ref) { - const Tmux = React.forwardRef(function Tmux({color = 'currentColor', size = 24, title = "tmux", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tmux - \ No newline at end of file +export default Tmux; diff --git a/src/components/Todoist.tsx b/src/components/Todoist.tsx index 61d9c866c..911b053ab 100644 --- a/src/components/Todoist.tsx +++ b/src/components/Todoist.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TodoistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TodoistProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Todoist = React.forwardRef(function Todoist({color = 'currentColor', size = 24, title = "todoist", ...others}, ref) { - const Todoist = React.forwardRef(function Todoist({color = 'currentColor', size = 24, title = "todoist", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Todoist - \ No newline at end of file +export default Todoist; diff --git a/src/components/Toggl.tsx b/src/components/Toggl.tsx index f78be5661..1278854c0 100644 --- a/src/components/Toggl.tsx +++ b/src/components/Toggl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TogglProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TogglProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Toggl = React.forwardRef(function Toggl({color = 'currentColor', size = 24, title = "toggl", ...others}, ref) { - const Toggl = React.forwardRef(function Toggl({color = 'currentColor', size = 24, title = "toggl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Toggl - \ No newline at end of file +export default Toggl; diff --git a/src/components/Tokyometro.tsx b/src/components/Tokyometro.tsx index 7ae72e883..11f7179dc 100644 --- a/src/components/Tokyometro.tsx +++ b/src/components/Tokyometro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TokyometroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TokyometroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tokyometro = React.forwardRef(function Tokyometro({color = 'currentColor', size = 24, title = "tokyometro", ...others}, ref) { - const Tokyometro = React.forwardRef(function Tokyometro({color = 'currentColor', size = 24, title = "tokyometro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tokyometro - \ No newline at end of file +export default Tokyometro; diff --git a/src/components/Tomorrowland.tsx b/src/components/Tomorrowland.tsx index fb5e8bd28..5d39172e0 100644 --- a/src/components/Tomorrowland.tsx +++ b/src/components/Tomorrowland.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TomorrowlandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TomorrowlandProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tomorrowland = React.forwardRef(function Tomorrowland({color = 'currentColor', size = 24, title = "tomorrowland", ...others}, ref) { - const Tomorrowland = React.forwardRef(function Tomorrowland({color = 'currentColor', size = 24, title = "tomorrowland", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tomorrowland - \ No newline at end of file +export default Tomorrowland; diff --git a/src/components/Topcoder.tsx b/src/components/Topcoder.tsx index b2a6a90dd..0186d5407 100644 --- a/src/components/Topcoder.tsx +++ b/src/components/Topcoder.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TopcoderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TopcoderProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Topcoder = React.forwardRef(function Topcoder({color = 'currentColor', size = 24, title = "topcoder", ...others}, ref) { - const Topcoder = React.forwardRef(function Topcoder({color = 'currentColor', size = 24, title = "topcoder", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Topcoder - \ No newline at end of file +export default Topcoder; diff --git a/src/components/Toptal.tsx b/src/components/Toptal.tsx index 3412ba061..89e9f0d82 100644 --- a/src/components/Toptal.tsx +++ b/src/components/Toptal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ToptalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ToptalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Toptal = React.forwardRef(function Toptal({color = 'currentColor', size = 24, title = "toptal", ...others}, ref) { - const Toptal = React.forwardRef(function Toptal({color = 'currentColor', size = 24, title = "toptal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Toptal - \ No newline at end of file +export default Toptal; diff --git a/src/components/Torbrowser.tsx b/src/components/Torbrowser.tsx index 65244b2e0..6f6a1eca2 100644 --- a/src/components/Torbrowser.tsx +++ b/src/components/Torbrowser.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TorbrowserProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TorbrowserProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Torbrowser = React.forwardRef(function Torbrowser({color = 'currentColor', size = 24, title = "torbrowser", ...others}, ref) { - const Torbrowser = React.forwardRef(function Torbrowser({color = 'currentColor', size = 24, title = "torbrowser", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Torbrowser - \ No newline at end of file +export default Torbrowser; diff --git a/src/components/Torproject.tsx b/src/components/Torproject.tsx index 0b4899b88..90a6c71ff 100644 --- a/src/components/Torproject.tsx +++ b/src/components/Torproject.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TorprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TorprojectProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Torproject = React.forwardRef(function Torproject({color = 'currentColor', size = 24, title = "torproject", ...others}, ref) { - const Torproject = React.forwardRef(function Torproject({color = 'currentColor', size = 24, title = "torproject", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Torproject - \ No newline at end of file +export default Torproject; diff --git a/src/components/Toshiba.tsx b/src/components/Toshiba.tsx index d950aa1cb..ec610d764 100644 --- a/src/components/Toshiba.tsx +++ b/src/components/Toshiba.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ToshibaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ToshibaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Toshiba = React.forwardRef(function Toshiba({color = 'currentColor', size = 24, title = "toshiba", ...others}, ref) { - const Toshiba = React.forwardRef(function Toshiba({color = 'currentColor', size = 24, title = "toshiba", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Toshiba - \ No newline at end of file +export default Toshiba; diff --git a/src/components/Toyota.tsx b/src/components/Toyota.tsx index 8fdb85915..06065a42e 100644 --- a/src/components/Toyota.tsx +++ b/src/components/Toyota.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ToyotaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ToyotaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Toyota = React.forwardRef(function Toyota({color = 'currentColor', size = 24, title = "toyota", ...others}, ref) { - const Toyota = React.forwardRef(function Toyota({color = 'currentColor', size = 24, title = "toyota", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Toyota - \ No newline at end of file +export default Toyota; diff --git a/src/components/Tplink.tsx b/src/components/Tplink.tsx index d537f2ba7..c0c70f7b1 100644 --- a/src/components/Tplink.tsx +++ b/src/components/Tplink.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TplinkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TplinkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tplink = React.forwardRef(function Tplink({color = 'currentColor', size = 24, title = "tplink", ...others}, ref) { - const Tplink = React.forwardRef(function Tplink({color = 'currentColor', size = 24, title = "tplink", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tplink - \ No newline at end of file +export default Tplink; diff --git a/src/components/Tqdm.tsx b/src/components/Tqdm.tsx index 422083949..c4c6ee0f4 100644 --- a/src/components/Tqdm.tsx +++ b/src/components/Tqdm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TqdmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TqdmProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tqdm = React.forwardRef(function Tqdm({color = 'currentColor', size = 24, title = "tqdm", ...others}, ref) { - const Tqdm = React.forwardRef(function Tqdm({color = 'currentColor', size = 24, title = "tqdm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tqdm - \ No newline at end of file +export default Tqdm; diff --git a/src/components/Traefikmesh.tsx b/src/components/Traefikmesh.tsx index 04fdefaad..9292778bb 100644 --- a/src/components/Traefikmesh.tsx +++ b/src/components/Traefikmesh.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TraefikmeshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TraefikmeshProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Traefikmesh = React.forwardRef(function Traefikmesh({color = 'currentColor', size = 24, title = "traefikmesh", ...others}, ref) { - const Traefikmesh = React.forwardRef(function Traefikmesh({color = 'currentColor', size = 24, title = "traefikmesh", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Traefikmesh - \ No newline at end of file +export default Traefikmesh; diff --git a/src/components/Traefikproxy.tsx b/src/components/Traefikproxy.tsx index 7549767ff..da578be14 100644 --- a/src/components/Traefikproxy.tsx +++ b/src/components/Traefikproxy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TraefikproxyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TraefikproxyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Traefikproxy = React.forwardRef(function Traefikproxy({color = 'currentColor', size = 24, title = "traefikproxy", ...others}, ref) { - const Traefikproxy = React.forwardRef(function Traefikproxy({color = 'currentColor', size = 24, title = "traefikproxy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Traefikproxy - \ No newline at end of file +export default Traefikproxy; diff --git a/src/components/Trainerroad.tsx b/src/components/Trainerroad.tsx index 3c1298b39..9f714a3a9 100644 --- a/src/components/Trainerroad.tsx +++ b/src/components/Trainerroad.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TrainerroadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TrainerroadProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Trainerroad = React.forwardRef(function Trainerroad({color = 'currentColor', size = 24, title = "trainerroad", ...others}, ref) { - const Trainerroad = React.forwardRef(function Trainerroad({color = 'currentColor', size = 24, title = "trainerroad", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Trainerroad - \ No newline at end of file +export default Trainerroad; diff --git a/src/components/Trakt.tsx b/src/components/Trakt.tsx index 67b715519..cc34c3d42 100644 --- a/src/components/Trakt.tsx +++ b/src/components/Trakt.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TraktProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TraktProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Trakt = React.forwardRef(function Trakt({color = 'currentColor', size = 24, title = "trakt", ...others}, ref) { - const Trakt = React.forwardRef(function Trakt({color = 'currentColor', size = 24, title = "trakt", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Trakt - \ No newline at end of file +export default Trakt; diff --git a/src/components/Transportforireland.tsx b/src/components/Transportforireland.tsx index 10c11dfa2..816de2cfd 100644 --- a/src/components/Transportforireland.tsx +++ b/src/components/Transportforireland.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TransportforirelandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TransportforirelandProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Transportforireland = React.forwardRef(function Transportforireland({color = 'currentColor', size = 24, title = "transportforireland", ...others}, ref) { - const Transportforireland = React.forwardRef(function Transportforireland({color = 'currentColor', size = 24, title = "transportforireland", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Transportforireland - \ No newline at end of file +export default Transportforireland; diff --git a/src/components/Transportforlondon.tsx b/src/components/Transportforlondon.tsx index d1c7ad9e0..5128c9a27 100644 --- a/src/components/Transportforlondon.tsx +++ b/src/components/Transportforlondon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TransportforlondonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TransportforlondonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Transportforlondon = React.forwardRef(function Transportforlondon({color = 'currentColor', size = 24, title = "transportforlondon", ...others}, ref) { - const Transportforlondon = React.forwardRef(function Transportforlondon({color = 'currentColor', size = 24, title = "transportforlondon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Transportforlondon - \ No newline at end of file +export default Transportforlondon; diff --git a/src/components/Travisci.tsx b/src/components/Travisci.tsx index 787d89b61..08414dfd6 100644 --- a/src/components/Travisci.tsx +++ b/src/components/Travisci.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TravisciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TravisciProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Travisci = React.forwardRef(function Travisci({color = 'currentColor', size = 24, title = "travisci", ...others}, ref) { - const Travisci = React.forwardRef(function Travisci({color = 'currentColor', size = 24, title = "travisci", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Travisci - \ No newline at end of file +export default Travisci; diff --git a/src/components/Treehouse.tsx b/src/components/Treehouse.tsx index 3e9e32dda..8f04e15dc 100644 --- a/src/components/Treehouse.tsx +++ b/src/components/Treehouse.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TreehouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TreehouseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Treehouse = React.forwardRef(function Treehouse({color = 'currentColor', size = 24, title = "treehouse", ...others}, ref) { - const Treehouse = React.forwardRef(function Treehouse({color = 'currentColor', size = 24, title = "treehouse", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Treehouse - \ No newline at end of file +export default Treehouse; diff --git a/src/components/Trello.tsx b/src/components/Trello.tsx index 68fde01ce..55e251c0d 100644 --- a/src/components/Trello.tsx +++ b/src/components/Trello.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TrelloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TrelloProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Trello = React.forwardRef(function Trello({color = 'currentColor', size = 24, title = "trello", ...others}, ref) { - const Trello = React.forwardRef(function Trello({color = 'currentColor', size = 24, title = "trello", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Trello - \ No newline at end of file +export default Trello; diff --git a/src/components/Trendmicro.tsx b/src/components/Trendmicro.tsx index 6d47640fe..811346fd7 100644 --- a/src/components/Trendmicro.tsx +++ b/src/components/Trendmicro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TrendmicroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TrendmicroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Trendmicro = React.forwardRef(function Trendmicro({color = 'currentColor', size = 24, title = "trendmicro", ...others}, ref) { - const Trendmicro = React.forwardRef(function Trendmicro({color = 'currentColor', size = 24, title = "trendmicro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Trendmicro - \ No newline at end of file +export default Trendmicro; diff --git a/src/components/Treyarch.tsx b/src/components/Treyarch.tsx index cee7c1f01..3dc27f921 100644 --- a/src/components/Treyarch.tsx +++ b/src/components/Treyarch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TreyarchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TreyarchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Treyarch = React.forwardRef(function Treyarch({color = 'currentColor', size = 24, title = "treyarch", ...others}, ref) { - const Treyarch = React.forwardRef(function Treyarch({color = 'currentColor', size = 24, title = "treyarch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Treyarch - \ No newline at end of file +export default Treyarch; diff --git a/src/components/Triller.tsx b/src/components/Triller.tsx index c8246e0de..f8933e88f 100644 --- a/src/components/Triller.tsx +++ b/src/components/Triller.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TrillerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TrillerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Triller = React.forwardRef(function Triller({color = 'currentColor', size = 24, title = "triller", ...others}, ref) { - const Triller = React.forwardRef(function Triller({color = 'currentColor', size = 24, title = "triller", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Triller - \ No newline at end of file +export default Triller; diff --git a/src/components/Trino.tsx b/src/components/Trino.tsx index 8a19e7616..d70c97b31 100644 --- a/src/components/Trino.tsx +++ b/src/components/Trino.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TrinoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TrinoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Trino = React.forwardRef(function Trino({color = 'currentColor', size = 24, title = "trino", ...others}, ref) { - const Trino = React.forwardRef(function Trino({color = 'currentColor', size = 24, title = "trino", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Trino - \ No newline at end of file +export default Trino; diff --git a/src/components/Tripadvisor.tsx b/src/components/Tripadvisor.tsx index 14daf5ba3..ccf2836b5 100644 --- a/src/components/Tripadvisor.tsx +++ b/src/components/Tripadvisor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TripadvisorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TripadvisorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tripadvisor = React.forwardRef(function Tripadvisor({color = 'currentColor', size = 24, title = "tripadvisor", ...others}, ref) { - const Tripadvisor = React.forwardRef(function Tripadvisor({color = 'currentColor', size = 24, title = "tripadvisor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tripadvisor - \ No newline at end of file +export default Tripadvisor; diff --git a/src/components/Tripdotcom.tsx b/src/components/Tripdotcom.tsx index 551174256..2fba8a3e2 100644 --- a/src/components/Tripdotcom.tsx +++ b/src/components/Tripdotcom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TripdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TripdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tripdotcom = React.forwardRef(function Tripdotcom({color = 'currentColor', size = 24, title = "tripdotcom", ...others}, ref) { - const Tripdotcom = React.forwardRef(function Tripdotcom({color = 'currentColor', size = 24, title = "tripdotcom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tripdotcom - \ No newline at end of file +export default Tripdotcom; diff --git a/src/components/Trove.tsx b/src/components/Trove.tsx index 40c88a601..8dcfaa555 100644 --- a/src/components/Trove.tsx +++ b/src/components/Trove.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TroveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TroveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Trove = React.forwardRef(function Trove({color = 'currentColor', size = 24, title = "trove", ...others}, ref) { - const Trove = React.forwardRef(function Trove({color = 'currentColor', size = 24, title = "trove", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Trove - \ No newline at end of file +export default Trove; diff --git a/src/components/Trpc.tsx b/src/components/Trpc.tsx index 9c1a6fe62..293aea872 100644 --- a/src/components/Trpc.tsx +++ b/src/components/Trpc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TrpcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TrpcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Trpc = React.forwardRef(function Trpc({color = 'currentColor', size = 24, title = "trpc", ...others}, ref) { - const Trpc = React.forwardRef(function Trpc({color = 'currentColor', size = 24, title = "trpc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Trpc - \ No newline at end of file +export default Trpc; diff --git a/src/components/Truenas.tsx b/src/components/Truenas.tsx index 4d411b98f..b9d9c395f 100644 --- a/src/components/Truenas.tsx +++ b/src/components/Truenas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TruenasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TruenasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Truenas = React.forwardRef(function Truenas({color = 'currentColor', size = 24, title = "truenas", ...others}, ref) { - const Truenas = React.forwardRef(function Truenas({color = 'currentColor', size = 24, title = "truenas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Truenas - \ No newline at end of file +export default Truenas; diff --git a/src/components/Trulia.tsx b/src/components/Trulia.tsx index f9ac313a4..fcf6b8285 100644 --- a/src/components/Trulia.tsx +++ b/src/components/Trulia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TruliaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TruliaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Trulia = React.forwardRef(function Trulia({color = 'currentColor', size = 24, title = "trulia", ...others}, ref) { - const Trulia = React.forwardRef(function Trulia({color = 'currentColor', size = 24, title = "trulia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Trulia - \ No newline at end of file +export default Trulia; diff --git a/src/components/Trustedshops.tsx b/src/components/Trustedshops.tsx index 59ce14623..ab2564299 100644 --- a/src/components/Trustedshops.tsx +++ b/src/components/Trustedshops.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TrustedshopsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TrustedshopsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Trustedshops = React.forwardRef(function Trustedshops({color = 'currentColor', size = 24, title = "trustedshops", ...others}, ref) { - const Trustedshops = React.forwardRef(function Trustedshops({color = 'currentColor', size = 24, title = "trustedshops", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Trustedshops - \ No newline at end of file +export default Trustedshops; diff --git a/src/components/Trustpilot.tsx b/src/components/Trustpilot.tsx index 79aca325a..450164293 100644 --- a/src/components/Trustpilot.tsx +++ b/src/components/Trustpilot.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TrustpilotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TrustpilotProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Trustpilot = React.forwardRef(function Trustpilot({color = 'currentColor', size = 24, title = "trustpilot", ...others}, ref) { - const Trustpilot = React.forwardRef(function Trustpilot({color = 'currentColor', size = 24, title = "trustpilot", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Trustpilot - \ No newline at end of file +export default Trustpilot; diff --git a/src/components/Tryhackme.tsx b/src/components/Tryhackme.tsx index 6da8eb4a9..6ae7be5af 100644 --- a/src/components/Tryhackme.tsx +++ b/src/components/Tryhackme.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TryhackmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TryhackmeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tryhackme = React.forwardRef(function Tryhackme({color = 'currentColor', size = 24, title = "tryhackme", ...others}, ref) { - const Tryhackme = React.forwardRef(function Tryhackme({color = 'currentColor', size = 24, title = "tryhackme", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tryhackme - \ No newline at end of file +export default Tryhackme; diff --git a/src/components/Tryitonline.tsx b/src/components/Tryitonline.tsx index 7973d3360..2893860e1 100644 --- a/src/components/Tryitonline.tsx +++ b/src/components/Tryitonline.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TryitonlineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TryitonlineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tryitonline = React.forwardRef(function Tryitonline({color = 'currentColor', size = 24, title = "tryitonline", ...others}, ref) { - const Tryitonline = React.forwardRef(function Tryitonline({color = 'currentColor', size = 24, title = "tryitonline", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tryitonline - \ No newline at end of file +export default Tryitonline; diff --git a/src/components/Tsnode.tsx b/src/components/Tsnode.tsx index 52798c0b5..0f5ec9d13 100644 --- a/src/components/Tsnode.tsx +++ b/src/components/Tsnode.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TsnodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TsnodeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tsnode = React.forwardRef(function Tsnode({color = 'currentColor', size = 24, title = "tsnode", ...others}, ref) { - const Tsnode = React.forwardRef(function Tsnode({color = 'currentColor', size = 24, title = "tsnode", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tsnode - \ No newline at end of file +export default Tsnode; diff --git a/src/components/Tubi.tsx b/src/components/Tubi.tsx index 81b30db9f..af4f710d8 100644 --- a/src/components/Tubi.tsx +++ b/src/components/Tubi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TubiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TubiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tubi = React.forwardRef(function Tubi({color = 'currentColor', size = 24, title = "tubi", ...others}, ref) { - const Tubi = React.forwardRef(function Tubi({color = 'currentColor', size = 24, title = "tubi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tubi - \ No newline at end of file +export default Tubi; diff --git a/src/components/Tui.tsx b/src/components/Tui.tsx index a0897f092..a83de2e83 100644 --- a/src/components/Tui.tsx +++ b/src/components/Tui.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TuiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tui = React.forwardRef(function Tui({color = 'currentColor', size = 24, title = "tui", ...others}, ref) { - const Tui = React.forwardRef(function Tui({color = 'currentColor', size = 24, title = "tui", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tui - \ No newline at end of file +export default Tui; diff --git a/src/components/Tumblr.tsx b/src/components/Tumblr.tsx index 765b4b03f..d1d054bdf 100644 --- a/src/components/Tumblr.tsx +++ b/src/components/Tumblr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TumblrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TumblrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tumblr = React.forwardRef(function Tumblr({color = 'currentColor', size = 24, title = "tumblr", ...others}, ref) { - const Tumblr = React.forwardRef(function Tumblr({color = 'currentColor', size = 24, title = "tumblr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tumblr - \ No newline at end of file +export default Tumblr; diff --git a/src/components/Tunein.tsx b/src/components/Tunein.tsx index 805575072..963bc07b5 100644 --- a/src/components/Tunein.tsx +++ b/src/components/Tunein.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TuneinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TuneinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tunein = React.forwardRef(function Tunein({color = 'currentColor', size = 24, title = "tunein", ...others}, ref) { - const Tunein = React.forwardRef(function Tunein({color = 'currentColor', size = 24, title = "tunein", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tunein - \ No newline at end of file +export default Tunein; diff --git a/src/components/Turborepo.tsx b/src/components/Turborepo.tsx index 4c795d34c..e13f3c0fe 100644 --- a/src/components/Turborepo.tsx +++ b/src/components/Turborepo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TurborepoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TurborepoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Turborepo = React.forwardRef(function Turborepo({color = 'currentColor', size = 24, title = "turborepo", ...others}, ref) { - const Turborepo = React.forwardRef(function Turborepo({color = 'currentColor', size = 24, title = "turborepo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Turborepo - \ No newline at end of file +export default Turborepo; diff --git a/src/components/Turbosquid.tsx b/src/components/Turbosquid.tsx index b5ba12c94..4da7a9f67 100644 --- a/src/components/Turbosquid.tsx +++ b/src/components/Turbosquid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TurbosquidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TurbosquidProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Turbosquid = React.forwardRef(function Turbosquid({color = 'currentColor', size = 24, title = "turbosquid", ...others}, ref) { - const Turbosquid = React.forwardRef(function Turbosquid({color = 'currentColor', size = 24, title = "turbosquid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Turbosquid - \ No newline at end of file +export default Turbosquid; diff --git a/src/components/Turkishairlines.tsx b/src/components/Turkishairlines.tsx index 353aec860..4d49ac4ba 100644 --- a/src/components/Turkishairlines.tsx +++ b/src/components/Turkishairlines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TurkishairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TurkishairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Turkishairlines = React.forwardRef(function Turkishairlines({color = 'currentColor', size = 24, title = "turkishairlines", ...others}, ref) { - const Turkishairlines = React.forwardRef(function Turkishairlines({color = 'currentColor', size = 24, title = "turkishairlines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Turkishairlines - \ No newline at end of file +export default Turkishairlines; diff --git a/src/components/Tutanota.tsx b/src/components/Tutanota.tsx index 5a36c56b7..cfb68af5a 100644 --- a/src/components/Tutanota.tsx +++ b/src/components/Tutanota.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TutanotaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TutanotaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tutanota = React.forwardRef(function Tutanota({color = 'currentColor', size = 24, title = "tutanota", ...others}, ref) { - const Tutanota = React.forwardRef(function Tutanota({color = 'currentColor', size = 24, title = "tutanota", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tutanota - \ No newline at end of file +export default Tutanota; diff --git a/src/components/Tvtime.tsx b/src/components/Tvtime.tsx index 00498ef46..f0e9bdda1 100644 --- a/src/components/Tvtime.tsx +++ b/src/components/Tvtime.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TvtimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TvtimeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Tvtime = React.forwardRef(function Tvtime({color = 'currentColor', size = 24, title = "tvtime", ...others}, ref) { - const Tvtime = React.forwardRef(function Tvtime({color = 'currentColor', size = 24, title = "tvtime", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Tvtime - \ No newline at end of file +export default Tvtime; diff --git a/src/components/Twilio.tsx b/src/components/Twilio.tsx index 4bc47ed70..d1fdecbea 100644 --- a/src/components/Twilio.tsx +++ b/src/components/Twilio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TwilioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TwilioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Twilio = React.forwardRef(function Twilio({color = 'currentColor', size = 24, title = "twilio", ...others}, ref) { - const Twilio = React.forwardRef(function Twilio({color = 'currentColor', size = 24, title = "twilio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Twilio - \ No newline at end of file +export default Twilio; diff --git a/src/components/Twitch.tsx b/src/components/Twitch.tsx index 158046482..e9e6dfa4b 100644 --- a/src/components/Twitch.tsx +++ b/src/components/Twitch.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TwitchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TwitchProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Twitch = React.forwardRef(function Twitch({color = 'currentColor', size = 24, title = "twitch", ...others}, ref) { - const Twitch = React.forwardRef(function Twitch({color = 'currentColor', size = 24, title = "twitch", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Twitch - \ No newline at end of file +export default Twitch; diff --git a/src/components/Twitter.tsx b/src/components/Twitter.tsx index fc2a591a9..89151b807 100644 --- a/src/components/Twitter.tsx +++ b/src/components/Twitter.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TwitterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TwitterProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Twitter = React.forwardRef(function Twitter({color = 'currentColor', size = 24, title = "twitter", ...others}, ref) { - const Twitter = React.forwardRef(function Twitter({color = 'currentColor', size = 24, title = "twitter", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Twitter - \ No newline at end of file +export default Twitter; diff --git a/src/components/Twoo.tsx b/src/components/Twoo.tsx index 60b4ec936..2ea0533c2 100644 --- a/src/components/Twoo.tsx +++ b/src/components/Twoo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TwooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TwooProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Twoo = React.forwardRef(function Twoo({color = 'currentColor', size = 24, title = "twoo", ...others}, ref) { - const Twoo = React.forwardRef(function Twoo({color = 'currentColor', size = 24, title = "twoo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Twoo - \ No newline at end of file +export default Twoo; diff --git a/src/components/Typeform.tsx b/src/components/Typeform.tsx index fcc1ec785..b7732c50a 100644 --- a/src/components/Typeform.tsx +++ b/src/components/Typeform.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TypeformProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TypeformProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Typeform = React.forwardRef(function Typeform({color = 'currentColor', size = 24, title = "typeform", ...others}, ref) { - const Typeform = React.forwardRef(function Typeform({color = 'currentColor', size = 24, title = "typeform", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Typeform - \ No newline at end of file +export default Typeform; diff --git a/src/components/Typescript.tsx b/src/components/Typescript.tsx index ed5cb747b..19dfc3ed1 100644 --- a/src/components/Typescript.tsx +++ b/src/components/Typescript.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TypescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TypescriptProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Typescript = React.forwardRef(function Typescript({color = 'currentColor', size = 24, title = "typescript", ...others}, ref) { - const Typescript = React.forwardRef(function Typescript({color = 'currentColor', size = 24, title = "typescript", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Typescript - \ No newline at end of file +export default Typescript; diff --git a/src/components/TypoThree.tsx b/src/components/TypoThree.tsx index cd84cd5b6..692a9c47a 100644 --- a/src/components/TypoThree.tsx +++ b/src/components/TypoThree.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type TypoThreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type TypoThreeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const TypoThree = React.forwardRef(function TypoThree({color = 'currentColor', size = 24, title = "typo3", ...others}, ref) { - const TypoThree = React.forwardRef(function TypoThree({color = 'currentColor', size = 24, title = "typo3", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default TypoThree - \ No newline at end of file +export default TypoThree; diff --git a/src/components/Uber.tsx b/src/components/Uber.tsx index 3c5d3ecc3..5f963b9e3 100644 --- a/src/components/Uber.tsx +++ b/src/components/Uber.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UberProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UberProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Uber = React.forwardRef(function Uber({color = 'currentColor', size = 24, title = "uber", ...others}, ref) { - const Uber = React.forwardRef(function Uber({color = 'currentColor', size = 24, title = "uber", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Uber - \ No newline at end of file +export default Uber; diff --git a/src/components/Ubereats.tsx b/src/components/Ubereats.tsx index 084df645e..9b79d0971 100644 --- a/src/components/Ubereats.tsx +++ b/src/components/Ubereats.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UbereatsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UbereatsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ubereats = React.forwardRef(function Ubereats({color = 'currentColor', size = 24, title = "ubereats", ...others}, ref) { - const Ubereats = React.forwardRef(function Ubereats({color = 'currentColor', size = 24, title = "ubereats", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ubereats - \ No newline at end of file +export default Ubereats; diff --git a/src/components/Ubiquiti.tsx b/src/components/Ubiquiti.tsx index ac7a7d154..e40e9b30a 100644 --- a/src/components/Ubiquiti.tsx +++ b/src/components/Ubiquiti.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UbiquitiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UbiquitiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ubiquiti = React.forwardRef(function Ubiquiti({color = 'currentColor', size = 24, title = "ubiquiti", ...others}, ref) { - const Ubiquiti = React.forwardRef(function Ubiquiti({color = 'currentColor', size = 24, title = "ubiquiti", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ubiquiti - \ No newline at end of file +export default Ubiquiti; diff --git a/src/components/Ubisoft.tsx b/src/components/Ubisoft.tsx index fb20c78cb..9db44467f 100644 --- a/src/components/Ubisoft.tsx +++ b/src/components/Ubisoft.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UbisoftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UbisoftProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ubisoft = React.forwardRef(function Ubisoft({color = 'currentColor', size = 24, title = "ubisoft", ...others}, ref) { - const Ubisoft = React.forwardRef(function Ubisoft({color = 'currentColor', size = 24, title = "ubisoft", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ubisoft - \ No newline at end of file +export default Ubisoft; diff --git a/src/components/Ublockorigin.tsx b/src/components/Ublockorigin.tsx index 470c41d55..0a2036961 100644 --- a/src/components/Ublockorigin.tsx +++ b/src/components/Ublockorigin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UblockoriginProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UblockoriginProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ublockorigin = React.forwardRef(function Ublockorigin({color = 'currentColor', size = 24, title = "ublockorigin", ...others}, ref) { - const Ublockorigin = React.forwardRef(function Ublockorigin({color = 'currentColor', size = 24, title = "ublockorigin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ublockorigin - \ No newline at end of file +export default Ublockorigin; diff --git a/src/components/Ubuntu.tsx b/src/components/Ubuntu.tsx index 0b331a115..c414fec25 100644 --- a/src/components/Ubuntu.tsx +++ b/src/components/Ubuntu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UbuntuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UbuntuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ubuntu = React.forwardRef(function Ubuntu({color = 'currentColor', size = 24, title = "ubuntu", ...others}, ref) { - const Ubuntu = React.forwardRef(function Ubuntu({color = 'currentColor', size = 24, title = "ubuntu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ubuntu - \ No newline at end of file +export default Ubuntu; diff --git a/src/components/Udacity.tsx b/src/components/Udacity.tsx index f3406311e..6e048c8de 100644 --- a/src/components/Udacity.tsx +++ b/src/components/Udacity.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UdacityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UdacityProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Udacity = React.forwardRef(function Udacity({color = 'currentColor', size = 24, title = "udacity", ...others}, ref) { - const Udacity = React.forwardRef(function Udacity({color = 'currentColor', size = 24, title = "udacity", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Udacity - \ No newline at end of file +export default Udacity; diff --git a/src/components/Udemy.tsx b/src/components/Udemy.tsx index f9672ae2d..0dd5f41b7 100644 --- a/src/components/Udemy.tsx +++ b/src/components/Udemy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UdemyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UdemyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Udemy = React.forwardRef(function Udemy({color = 'currentColor', size = 24, title = "udemy", ...others}, ref) { - const Udemy = React.forwardRef(function Udemy({color = 'currentColor', size = 24, title = "udemy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Udemy - \ No newline at end of file +export default Udemy; diff --git a/src/components/Ufc.tsx b/src/components/Ufc.tsx index 31261419e..342be7be8 100644 --- a/src/components/Ufc.tsx +++ b/src/components/Ufc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UfcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UfcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ufc = React.forwardRef(function Ufc({color = 'currentColor', size = 24, title = "ufc", ...others}, ref) { - const Ufc = React.forwardRef(function Ufc({color = 'currentColor', size = 24, title = "ufc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ufc - \ No newline at end of file +export default Ufc; diff --git a/src/components/Uikit.tsx b/src/components/Uikit.tsx index a05b70e38..a9458d26d 100644 --- a/src/components/Uikit.tsx +++ b/src/components/Uikit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UikitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UikitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Uikit = React.forwardRef(function Uikit({color = 'currentColor', size = 24, title = "uikit", ...others}, ref) { - const Uikit = React.forwardRef(function Uikit({color = 'currentColor', size = 24, title = "uikit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Uikit - \ No newline at end of file +export default Uikit; diff --git a/src/components/Ulule.tsx b/src/components/Ulule.tsx index dfcc7250a..c2541ef91 100644 --- a/src/components/Ulule.tsx +++ b/src/components/Ulule.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UluleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UluleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ulule = React.forwardRef(function Ulule({color = 'currentColor', size = 24, title = "ulule", ...others}, ref) { - const Ulule = React.forwardRef(function Ulule({color = 'currentColor', size = 24, title = "ulule", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ulule - \ No newline at end of file +export default Ulule; diff --git a/src/components/Umbraco.tsx b/src/components/Umbraco.tsx index 74a4f0988..94d4a07ac 100644 --- a/src/components/Umbraco.tsx +++ b/src/components/Umbraco.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UmbracoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UmbracoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Umbraco = React.forwardRef(function Umbraco({color = 'currentColor', size = 24, title = "umbraco", ...others}, ref) { - const Umbraco = React.forwardRef(function Umbraco({color = 'currentColor', size = 24, title = "umbraco", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Umbraco - \ No newline at end of file +export default Umbraco; diff --git a/src/components/Unacademy.tsx b/src/components/Unacademy.tsx index 32219c1a8..d220eb956 100644 --- a/src/components/Unacademy.tsx +++ b/src/components/Unacademy.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnacademyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnacademyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Unacademy = React.forwardRef(function Unacademy({color = 'currentColor', size = 24, title = "unacademy", ...others}, ref) { - const Unacademy = React.forwardRef(function Unacademy({color = 'currentColor', size = 24, title = "unacademy", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Unacademy - \ No newline at end of file +export default Unacademy; diff --git a/src/components/Underarmour.tsx b/src/components/Underarmour.tsx index 07175106a..188478717 100644 --- a/src/components/Underarmour.tsx +++ b/src/components/Underarmour.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnderarmourProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnderarmourProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Underarmour = React.forwardRef(function Underarmour({color = 'currentColor', size = 24, title = "underarmour", ...others}, ref) { - const Underarmour = React.forwardRef(function Underarmour({color = 'currentColor', size = 24, title = "underarmour", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Underarmour - \ No newline at end of file +export default Underarmour; diff --git a/src/components/Underscoredotjs.tsx b/src/components/Underscoredotjs.tsx index af9dce14e..3e62b496c 100644 --- a/src/components/Underscoredotjs.tsx +++ b/src/components/Underscoredotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnderscoredotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnderscoredotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Underscoredotjs = React.forwardRef(function Underscoredotjs({color = 'currentColor', size = 24, title = "underscoredotjs", ...others}, ref) { - const Underscoredotjs = React.forwardRef(function Underscoredotjs({color = 'currentColor', size = 24, title = "underscoredotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Underscoredotjs - \ No newline at end of file +export default Underscoredotjs; diff --git a/src/components/Undertale.tsx b/src/components/Undertale.tsx index 3a2abe2b2..e66a61fba 100644 --- a/src/components/Undertale.tsx +++ b/src/components/Undertale.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UndertaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UndertaleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Undertale = React.forwardRef(function Undertale({color = 'currentColor', size = 24, title = "undertale", ...others}, ref) { - const Undertale = React.forwardRef(function Undertale({color = 'currentColor', size = 24, title = "undertale", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Undertale - \ No newline at end of file +export default Undertale; diff --git a/src/components/Unicode.tsx b/src/components/Unicode.tsx index 8f082bef1..7ba7d3121 100644 --- a/src/components/Unicode.tsx +++ b/src/components/Unicode.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnicodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnicodeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Unicode = React.forwardRef(function Unicode({color = 'currentColor', size = 24, title = "unicode", ...others}, ref) { - const Unicode = React.forwardRef(function Unicode({color = 'currentColor', size = 24, title = "unicode", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Unicode - \ No newline at end of file +export default Unicode; diff --git a/src/components/Unilever.tsx b/src/components/Unilever.tsx index ce8dd6bf4..de89aef87 100644 --- a/src/components/Unilever.tsx +++ b/src/components/Unilever.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnileverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnileverProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Unilever = React.forwardRef(function Unilever({color = 'currentColor', size = 24, title = "unilever", ...others}, ref) { - const Unilever = React.forwardRef(function Unilever({color = 'currentColor', size = 24, title = "unilever", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Unilever - \ No newline at end of file +export default Unilever; diff --git a/src/components/Unitedairlines.tsx b/src/components/Unitedairlines.tsx index 4466359b6..cf0d17898 100644 --- a/src/components/Unitedairlines.tsx +++ b/src/components/Unitedairlines.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnitedairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnitedairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Unitedairlines = React.forwardRef(function Unitedairlines({color = 'currentColor', size = 24, title = "unitedairlines", ...others}, ref) { - const Unitedairlines = React.forwardRef(function Unitedairlines({color = 'currentColor', size = 24, title = "unitedairlines", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Unitedairlines - \ No newline at end of file +export default Unitedairlines; diff --git a/src/components/Unity.tsx b/src/components/Unity.tsx index 58dc780f9..3ae8fc5ee 100644 --- a/src/components/Unity.tsx +++ b/src/components/Unity.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnityProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Unity = React.forwardRef(function Unity({color = 'currentColor', size = 24, title = "unity", ...others}, ref) { - const Unity = React.forwardRef(function Unity({color = 'currentColor', size = 24, title = "unity", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Unity - \ No newline at end of file +export default Unity; diff --git a/src/components/Unlicense.tsx b/src/components/Unlicense.tsx index d7ced1d6f..0f9b70735 100644 --- a/src/components/Unlicense.tsx +++ b/src/components/Unlicense.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnlicenseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnlicenseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Unlicense = React.forwardRef(function Unlicense({color = 'currentColor', size = 24, title = "unlicense", ...others}, ref) { - const Unlicense = React.forwardRef(function Unlicense({color = 'currentColor', size = 24, title = "unlicense", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Unlicense - \ No newline at end of file +export default Unlicense; diff --git a/src/components/Unocss.tsx b/src/components/Unocss.tsx index 581ddb7e2..9fe048dd7 100644 --- a/src/components/Unocss.tsx +++ b/src/components/Unocss.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnocssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnocssProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Unocss = React.forwardRef(function Unocss({color = 'currentColor', size = 24, title = "unocss", ...others}, ref) { - const Unocss = React.forwardRef(function Unocss({color = 'currentColor', size = 24, title = "unocss", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Unocss - \ No newline at end of file +export default Unocss; diff --git a/src/components/Unraid.tsx b/src/components/Unraid.tsx index 517dca2cf..4ce10e5cd 100644 --- a/src/components/Unraid.tsx +++ b/src/components/Unraid.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnraidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnraidProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Unraid = React.forwardRef(function Unraid({color = 'currentColor', size = 24, title = "unraid", ...others}, ref) { - const Unraid = React.forwardRef(function Unraid({color = 'currentColor', size = 24, title = "unraid", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Unraid - \ No newline at end of file +export default Unraid; diff --git a/src/components/Unrealengine.tsx b/src/components/Unrealengine.tsx index f9d0a3b01..a946f3bc6 100644 --- a/src/components/Unrealengine.tsx +++ b/src/components/Unrealengine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnrealengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnrealengineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Unrealengine = React.forwardRef(function Unrealengine({color = 'currentColor', size = 24, title = "unrealengine", ...others}, ref) { - const Unrealengine = React.forwardRef(function Unrealengine({color = 'currentColor', size = 24, title = "unrealengine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Unrealengine - \ No newline at end of file +export default Unrealengine; diff --git a/src/components/Unsplash.tsx b/src/components/Unsplash.tsx index ef955748f..731c47c5d 100644 --- a/src/components/Unsplash.tsx +++ b/src/components/Unsplash.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UnsplashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UnsplashProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Unsplash = React.forwardRef(function Unsplash({color = 'currentColor', size = 24, title = "unsplash", ...others}, ref) { - const Unsplash = React.forwardRef(function Unsplash({color = 'currentColor', size = 24, title = "unsplash", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Unsplash - \ No newline at end of file +export default Unsplash; diff --git a/src/components/Untangle.tsx b/src/components/Untangle.tsx index 61f75a02a..ab8799bf5 100644 --- a/src/components/Untangle.tsx +++ b/src/components/Untangle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UntangleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UntangleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Untangle = React.forwardRef(function Untangle({color = 'currentColor', size = 24, title = "untangle", ...others}, ref) { - const Untangle = React.forwardRef(function Untangle({color = 'currentColor', size = 24, title = "untangle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Untangle - \ No newline at end of file +export default Untangle; diff --git a/src/components/Untappd.tsx b/src/components/Untappd.tsx index 6c64f7c73..6968a1556 100644 --- a/src/components/Untappd.tsx +++ b/src/components/Untappd.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UntappdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UntappdProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Untappd = React.forwardRef(function Untappd({color = 'currentColor', size = 24, title = "untappd", ...others}, ref) { - const Untappd = React.forwardRef(function Untappd({color = 'currentColor', size = 24, title = "untappd", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Untappd - \ No newline at end of file +export default Untappd; diff --git a/src/components/Upcloud.tsx b/src/components/Upcloud.tsx index 239706bb9..6bc3f9cea 100644 --- a/src/components/Upcloud.tsx +++ b/src/components/Upcloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UpcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UpcloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Upcloud = React.forwardRef(function Upcloud({color = 'currentColor', size = 24, title = "upcloud", ...others}, ref) { - const Upcloud = React.forwardRef(function Upcloud({color = 'currentColor', size = 24, title = "upcloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Upcloud - \ No newline at end of file +export default Upcloud; diff --git a/src/components/Uplabs.tsx b/src/components/Uplabs.tsx index efe146705..9942ad09b 100644 --- a/src/components/Uplabs.tsx +++ b/src/components/Uplabs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UplabsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UplabsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Uplabs = React.forwardRef(function Uplabs({color = 'currentColor', size = 24, title = "uplabs", ...others}, ref) { - const Uplabs = React.forwardRef(function Uplabs({color = 'currentColor', size = 24, title = "uplabs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Uplabs - \ No newline at end of file +export default Uplabs; diff --git a/src/components/Uploaded.tsx b/src/components/Uploaded.tsx index 398510a55..78c871343 100644 --- a/src/components/Uploaded.tsx +++ b/src/components/Uploaded.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UploadedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UploadedProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Uploaded = React.forwardRef(function Uploaded({color = 'currentColor', size = 24, title = "uploaded", ...others}, ref) { - const Uploaded = React.forwardRef(function Uploaded({color = 'currentColor', size = 24, title = "uploaded", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Uploaded - \ No newline at end of file +export default Uploaded; diff --git a/src/components/Ups.tsx b/src/components/Ups.tsx index ac5216c44..d5b8772fe 100644 --- a/src/components/Ups.tsx +++ b/src/components/Ups.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UpsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UpsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ups = React.forwardRef(function Ups({color = 'currentColor', size = 24, title = "ups", ...others}, ref) { - const Ups = React.forwardRef(function Ups({color = 'currentColor', size = 24, title = "ups", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ups - \ No newline at end of file +export default Ups; diff --git a/src/components/Upstash.tsx b/src/components/Upstash.tsx index 4391c4f6c..d916cc57b 100644 --- a/src/components/Upstash.tsx +++ b/src/components/Upstash.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UpstashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UpstashProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Upstash = React.forwardRef(function Upstash({color = 'currentColor', size = 24, title = "upstash", ...others}, ref) { - const Upstash = React.forwardRef(function Upstash({color = 'currentColor', size = 24, title = "upstash", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Upstash - \ No newline at end of file +export default Upstash; diff --git a/src/components/Uptimekuma.tsx b/src/components/Uptimekuma.tsx index 242d7e810..0fbc1378a 100644 --- a/src/components/Uptimekuma.tsx +++ b/src/components/Uptimekuma.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UptimekumaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UptimekumaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Uptimekuma = React.forwardRef(function Uptimekuma({color = 'currentColor', size = 24, title = "uptimekuma", ...others}, ref) { - const Uptimekuma = React.forwardRef(function Uptimekuma({color = 'currentColor', size = 24, title = "uptimekuma", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Uptimekuma - \ No newline at end of file +export default Uptimekuma; diff --git a/src/components/Uptobox.tsx b/src/components/Uptobox.tsx index 45904bce7..ba97ef6dd 100644 --- a/src/components/Uptobox.tsx +++ b/src/components/Uptobox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UptoboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UptoboxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Uptobox = React.forwardRef(function Uptobox({color = 'currentColor', size = 24, title = "uptobox", ...others}, ref) { - const Uptobox = React.forwardRef(function Uptobox({color = 'currentColor', size = 24, title = "uptobox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Uptobox - \ No newline at end of file +export default Uptobox; diff --git a/src/components/Upwork.tsx b/src/components/Upwork.tsx index e8bcedf71..d9d6d2b20 100644 --- a/src/components/Upwork.tsx +++ b/src/components/Upwork.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UpworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UpworkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Upwork = React.forwardRef(function Upwork({color = 'currentColor', size = 24, title = "upwork", ...others}, ref) { - const Upwork = React.forwardRef(function Upwork({color = 'currentColor', size = 24, title = "upwork", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Upwork - \ No newline at end of file +export default Upwork; diff --git a/src/components/Usps.tsx b/src/components/Usps.tsx index 524fb2a47..b4ebe941e 100644 --- a/src/components/Usps.tsx +++ b/src/components/Usps.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type UspsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type UspsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Usps = React.forwardRef(function Usps({color = 'currentColor', size = 24, title = "usps", ...others}, ref) { - const Usps = React.forwardRef(function Usps({color = 'currentColor', size = 24, title = "usps", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Usps - \ No newline at end of file +export default Usps; diff --git a/src/components/V.tsx b/src/components/V.tsx index 36af44320..6254abdfb 100644 --- a/src/components/V.tsx +++ b/src/components/V.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const V = React.forwardRef(function V({color = 'currentColor', size = 24, title = "v", ...others}, ref) { - const V = React.forwardRef(function V({color = 'currentColor', size = 24, title = "v", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default V - \ No newline at end of file +export default V; diff --git a/src/components/V8.tsx b/src/components/V8.tsx index a50d3e15f..94ac244f9 100644 --- a/src/components/V8.tsx +++ b/src/components/V8.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type V8Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type V8Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const V8 = React.forwardRef(function V8({color = 'currentColor', size = 24, title = "v8", ...others}, ref) { - const V8 = React.forwardRef(function V8({color = 'currentColor', size = 24, title = "v8", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default V8 - \ No newline at end of file +export default V8; diff --git a/src/components/VTwoEx.tsx b/src/components/VTwoEx.tsx index 906ce01a4..18229f43d 100644 --- a/src/components/VTwoEx.tsx +++ b/src/components/VTwoEx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VTwoExProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VTwoExProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const VTwoEx = React.forwardRef(function VTwoEx({color = 'currentColor', size = 24, title = "v2ex", ...others}, ref) { - const VTwoEx = React.forwardRef(function VTwoEx({color = 'currentColor', size = 24, title = "v2ex", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default VTwoEx - \ No newline at end of file +export default VTwoEx; diff --git a/src/components/Vaadin.tsx b/src/components/Vaadin.tsx index 3ff83e12d..0346c2552 100644 --- a/src/components/Vaadin.tsx +++ b/src/components/Vaadin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VaadinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VaadinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vaadin = React.forwardRef(function Vaadin({color = 'currentColor', size = 24, title = "vaadin", ...others}, ref) { - const Vaadin = React.forwardRef(function Vaadin({color = 'currentColor', size = 24, title = "vaadin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vaadin - \ No newline at end of file +export default Vaadin; diff --git a/src/components/Vagrant.tsx b/src/components/Vagrant.tsx index e62c88e55..592701b62 100644 --- a/src/components/Vagrant.tsx +++ b/src/components/Vagrant.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VagrantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VagrantProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vagrant = React.forwardRef(function Vagrant({color = 'currentColor', size = 24, title = "vagrant", ...others}, ref) { - const Vagrant = React.forwardRef(function Vagrant({color = 'currentColor', size = 24, title = "vagrant", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vagrant - \ No newline at end of file +export default Vagrant; diff --git a/src/components/Valorant.tsx b/src/components/Valorant.tsx index cf76a48fb..4c75e9833 100644 --- a/src/components/Valorant.tsx +++ b/src/components/Valorant.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ValorantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ValorantProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Valorant = React.forwardRef(function Valorant({color = 'currentColor', size = 24, title = "valorant", ...others}, ref) { - const Valorant = React.forwardRef(function Valorant({color = 'currentColor', size = 24, title = "valorant", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Valorant - \ No newline at end of file +export default Valorant; diff --git a/src/components/Valve.tsx b/src/components/Valve.tsx index ecb44a314..38bf33dcf 100644 --- a/src/components/Valve.tsx +++ b/src/components/Valve.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ValveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ValveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Valve = React.forwardRef(function Valve({color = 'currentColor', size = 24, title = "valve", ...others}, ref) { - const Valve = React.forwardRef(function Valve({color = 'currentColor', size = 24, title = "valve", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Valve - \ No newline at end of file +export default Valve; diff --git a/src/components/Vapor.tsx b/src/components/Vapor.tsx index 6e9108573..57f0ad5dc 100644 --- a/src/components/Vapor.tsx +++ b/src/components/Vapor.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VaporProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VaporProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vapor = React.forwardRef(function Vapor({color = 'currentColor', size = 24, title = "vapor", ...others}, ref) { - const Vapor = React.forwardRef(function Vapor({color = 'currentColor', size = 24, title = "vapor", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vapor - \ No newline at end of file +export default Vapor; diff --git a/src/components/Vault.tsx b/src/components/Vault.tsx index 170cfa3c8..add027415 100644 --- a/src/components/Vault.tsx +++ b/src/components/Vault.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VaultProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VaultProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vault = React.forwardRef(function Vault({color = 'currentColor', size = 24, title = "vault", ...others}, ref) { - const Vault = React.forwardRef(function Vault({color = 'currentColor', size = 24, title = "vault", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vault - \ No newline at end of file +export default Vault; diff --git a/src/components/Vauxhall.tsx b/src/components/Vauxhall.tsx index 596ee7413..b79040eca 100644 --- a/src/components/Vauxhall.tsx +++ b/src/components/Vauxhall.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VauxhallProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VauxhallProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vauxhall = React.forwardRef(function Vauxhall({color = 'currentColor', size = 24, title = "vauxhall", ...others}, ref) { - const Vauxhall = React.forwardRef(function Vauxhall({color = 'currentColor', size = 24, title = "vauxhall", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vauxhall - \ No newline at end of file +export default Vauxhall; diff --git a/src/components/Vbulletin.tsx b/src/components/Vbulletin.tsx index c09cfd7ee..e25c951b9 100644 --- a/src/components/Vbulletin.tsx +++ b/src/components/Vbulletin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VbulletinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VbulletinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vbulletin = React.forwardRef(function Vbulletin({color = 'currentColor', size = 24, title = "vbulletin", ...others}, ref) { - const Vbulletin = React.forwardRef(function Vbulletin({color = 'currentColor', size = 24, title = "vbulletin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vbulletin - \ No newline at end of file +export default Vbulletin; diff --git a/src/components/Vectorlogozone.tsx b/src/components/Vectorlogozone.tsx index 1acbc5c27..46839f831 100644 --- a/src/components/Vectorlogozone.tsx +++ b/src/components/Vectorlogozone.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VectorlogozoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VectorlogozoneProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vectorlogozone = React.forwardRef(function Vectorlogozone({color = 'currentColor', size = 24, title = "vectorlogozone", ...others}, ref) { - const Vectorlogozone = React.forwardRef(function Vectorlogozone({color = 'currentColor', size = 24, title = "vectorlogozone", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vectorlogozone - \ No newline at end of file +export default Vectorlogozone; diff --git a/src/components/Vectorworks.tsx b/src/components/Vectorworks.tsx index 669f485d8..a1d6d387d 100644 --- a/src/components/Vectorworks.tsx +++ b/src/components/Vectorworks.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VectorworksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VectorworksProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vectorworks = React.forwardRef(function Vectorworks({color = 'currentColor', size = 24, title = "vectorworks", ...others}, ref) { - const Vectorworks = React.forwardRef(function Vectorworks({color = 'currentColor', size = 24, title = "vectorworks", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vectorworks - \ No newline at end of file +export default Vectorworks; diff --git a/src/components/Veeam.tsx b/src/components/Veeam.tsx index a22421054..d3cfab580 100644 --- a/src/components/Veeam.tsx +++ b/src/components/Veeam.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VeeamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VeeamProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Veeam = React.forwardRef(function Veeam({color = 'currentColor', size = 24, title = "veeam", ...others}, ref) { - const Veeam = React.forwardRef(function Veeam({color = 'currentColor', size = 24, title = "veeam", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Veeam - \ No newline at end of file +export default Veeam; diff --git a/src/components/Veepee.tsx b/src/components/Veepee.tsx index 4efa9ce29..7a6bf9e15 100644 --- a/src/components/Veepee.tsx +++ b/src/components/Veepee.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VeepeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VeepeeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Veepee = React.forwardRef(function Veepee({color = 'currentColor', size = 24, title = "veepee", ...others}, ref) { - const Veepee = React.forwardRef(function Veepee({color = 'currentColor', size = 24, title = "veepee", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Veepee - \ No newline at end of file +export default Veepee; diff --git a/src/components/Velog.tsx b/src/components/Velog.tsx index e5faf29af..13acc6345 100644 --- a/src/components/Velog.tsx +++ b/src/components/Velog.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VelogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VelogProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Velog = React.forwardRef(function Velog({color = 'currentColor', size = 24, title = "velog", ...others}, ref) { - const Velog = React.forwardRef(function Velog({color = 'currentColor', size = 24, title = "velog", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Velog - \ No newline at end of file +export default Velog; diff --git a/src/components/Venmo.tsx b/src/components/Venmo.tsx index e61e73031..4b79568b1 100644 --- a/src/components/Venmo.tsx +++ b/src/components/Venmo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VenmoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VenmoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Venmo = React.forwardRef(function Venmo({color = 'currentColor', size = 24, title = "venmo", ...others}, ref) { - const Venmo = React.forwardRef(function Venmo({color = 'currentColor', size = 24, title = "venmo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Venmo - \ No newline at end of file +export default Venmo; diff --git a/src/components/Vercel.tsx b/src/components/Vercel.tsx index 6455f1338..0fef9ae92 100644 --- a/src/components/Vercel.tsx +++ b/src/components/Vercel.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VercelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VercelProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vercel = React.forwardRef(function Vercel({color = 'currentColor', size = 24, title = "vercel", ...others}, ref) { - const Vercel = React.forwardRef(function Vercel({color = 'currentColor', size = 24, title = "vercel", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vercel - \ No newline at end of file +export default Vercel; diff --git a/src/components/Verdaccio.tsx b/src/components/Verdaccio.tsx index a0efcefa0..fe3511a06 100644 --- a/src/components/Verdaccio.tsx +++ b/src/components/Verdaccio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VerdaccioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VerdaccioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Verdaccio = React.forwardRef(function Verdaccio({color = 'currentColor', size = 24, title = "verdaccio", ...others}, ref) { - const Verdaccio = React.forwardRef(function Verdaccio({color = 'currentColor', size = 24, title = "verdaccio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Verdaccio - \ No newline at end of file +export default Verdaccio; diff --git a/src/components/Veritas.tsx b/src/components/Veritas.tsx index 93b7faa46..e84004793 100644 --- a/src/components/Veritas.tsx +++ b/src/components/Veritas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VeritasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VeritasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Veritas = React.forwardRef(function Veritas({color = 'currentColor', size = 24, title = "veritas", ...others}, ref) { - const Veritas = React.forwardRef(function Veritas({color = 'currentColor', size = 24, title = "veritas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Veritas - \ No newline at end of file +export default Veritas; diff --git a/src/components/Verizon.tsx b/src/components/Verizon.tsx index 1d55da11f..54704d1c2 100644 --- a/src/components/Verizon.tsx +++ b/src/components/Verizon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VerizonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VerizonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Verizon = React.forwardRef(function Verizon({color = 'currentColor', size = 24, title = "verizon", ...others}, ref) { - const Verizon = React.forwardRef(function Verizon({color = 'currentColor', size = 24, title = "verizon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Verizon - \ No newline at end of file +export default Verizon; diff --git a/src/components/Vexxhost.tsx b/src/components/Vexxhost.tsx index bfa4c1bf2..9cf4b8525 100644 --- a/src/components/Vexxhost.tsx +++ b/src/components/Vexxhost.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VexxhostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VexxhostProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vexxhost = React.forwardRef(function Vexxhost({color = 'currentColor', size = 24, title = "vexxhost", ...others}, ref) { - const Vexxhost = React.forwardRef(function Vexxhost({color = 'currentColor', size = 24, title = "vexxhost", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vexxhost - \ No newline at end of file +export default Vexxhost; diff --git a/src/components/Vfairs.tsx b/src/components/Vfairs.tsx index aeef2fe31..13c7785ed 100644 --- a/src/components/Vfairs.tsx +++ b/src/components/Vfairs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VfairsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VfairsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vfairs = React.forwardRef(function Vfairs({color = 'currentColor', size = 24, title = "vfairs", ...others}, ref) { - const Vfairs = React.forwardRef(function Vfairs({color = 'currentColor', size = 24, title = "vfairs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vfairs - \ No newline at end of file +export default Vfairs; diff --git a/src/components/Viadeo.tsx b/src/components/Viadeo.tsx index 91cabf2f0..cac1a5ed4 100644 --- a/src/components/Viadeo.tsx +++ b/src/components/Viadeo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ViadeoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ViadeoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Viadeo = React.forwardRef(function Viadeo({color = 'currentColor', size = 24, title = "viadeo", ...others}, ref) { - const Viadeo = React.forwardRef(function Viadeo({color = 'currentColor', size = 24, title = "viadeo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Viadeo - \ No newline at end of file +export default Viadeo; diff --git a/src/components/Viber.tsx b/src/components/Viber.tsx index fba80ec60..b23aaf62f 100644 --- a/src/components/Viber.tsx +++ b/src/components/Viber.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ViberProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ViberProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Viber = React.forwardRef(function Viber({color = 'currentColor', size = 24, title = "viber", ...others}, ref) { - const Viber = React.forwardRef(function Viber({color = 'currentColor', size = 24, title = "viber", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Viber - \ No newline at end of file +export default Viber; diff --git a/src/components/Vim.tsx b/src/components/Vim.tsx index c15603248..842f006fb 100644 --- a/src/components/Vim.tsx +++ b/src/components/Vim.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VimProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vim = React.forwardRef(function Vim({color = 'currentColor', size = 24, title = "vim", ...others}, ref) { - const Vim = React.forwardRef(function Vim({color = 'currentColor', size = 24, title = "vim", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vim - \ No newline at end of file +export default Vim; diff --git a/src/components/Vimeo.tsx b/src/components/Vimeo.tsx index f145c93e7..9f7b4e17e 100644 --- a/src/components/Vimeo.tsx +++ b/src/components/Vimeo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VimeoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VimeoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vimeo = React.forwardRef(function Vimeo({color = 'currentColor', size = 24, title = "vimeo", ...others}, ref) { - const Vimeo = React.forwardRef(function Vimeo({color = 'currentColor', size = 24, title = "vimeo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vimeo - \ No newline at end of file +export default Vimeo; diff --git a/src/components/Vimeolivestream.tsx b/src/components/Vimeolivestream.tsx index 797e0d828..4401a518b 100644 --- a/src/components/Vimeolivestream.tsx +++ b/src/components/Vimeolivestream.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VimeolivestreamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VimeolivestreamProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vimeolivestream = React.forwardRef(function Vimeolivestream({color = 'currentColor', size = 24, title = "vimeolivestream", ...others}, ref) { - const Vimeolivestream = React.forwardRef(function Vimeolivestream({color = 'currentColor', size = 24, title = "vimeolivestream", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vimeolivestream - \ No newline at end of file +export default Vimeolivestream; diff --git a/src/components/Virgin.tsx b/src/components/Virgin.tsx index d360e0fe8..62c2c3108 100644 --- a/src/components/Virgin.tsx +++ b/src/components/Virgin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VirginProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VirginProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Virgin = React.forwardRef(function Virgin({color = 'currentColor', size = 24, title = "virgin", ...others}, ref) { - const Virgin = React.forwardRef(function Virgin({color = 'currentColor', size = 24, title = "virgin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Virgin - \ No newline at end of file +export default Virgin; diff --git a/src/components/Virginmedia.tsx b/src/components/Virginmedia.tsx index 8823242f7..13c93c72f 100644 --- a/src/components/Virginmedia.tsx +++ b/src/components/Virginmedia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VirginmediaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VirginmediaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Virginmedia = React.forwardRef(function Virginmedia({color = 'currentColor', size = 24, title = "virginmedia", ...others}, ref) { - const Virginmedia = React.forwardRef(function Virginmedia({color = 'currentColor', size = 24, title = "virginmedia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Virginmedia - \ No newline at end of file +export default Virginmedia; diff --git a/src/components/Virtualbox.tsx b/src/components/Virtualbox.tsx index 4684960cc..4131c88a1 100644 --- a/src/components/Virtualbox.tsx +++ b/src/components/Virtualbox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VirtualboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VirtualboxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Virtualbox = React.forwardRef(function Virtualbox({color = 'currentColor', size = 24, title = "virtualbox", ...others}, ref) { - const Virtualbox = React.forwardRef(function Virtualbox({color = 'currentColor', size = 24, title = "virtualbox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Virtualbox - \ No newline at end of file +export default Virtualbox; diff --git a/src/components/Virustotal.tsx b/src/components/Virustotal.tsx index fd4c268fd..855eb370c 100644 --- a/src/components/Virustotal.tsx +++ b/src/components/Virustotal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VirustotalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VirustotalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Virustotal = React.forwardRef(function Virustotal({color = 'currentColor', size = 24, title = "virustotal", ...others}, ref) { - const Virustotal = React.forwardRef(function Virustotal({color = 'currentColor', size = 24, title = "virustotal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Virustotal - \ No newline at end of file +export default Virustotal; diff --git a/src/components/Visa.tsx b/src/components/Visa.tsx index 6c7ef5a8c..0be2ff695 100644 --- a/src/components/Visa.tsx +++ b/src/components/Visa.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VisaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VisaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Visa = React.forwardRef(function Visa({color = 'currentColor', size = 24, title = "visa", ...others}, ref) { - const Visa = React.forwardRef(function Visa({color = 'currentColor', size = 24, title = "visa", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Visa - \ No newline at end of file +export default Visa; diff --git a/src/components/Visualstudio.tsx b/src/components/Visualstudio.tsx index bb66f1e7d..11026c95f 100644 --- a/src/components/Visualstudio.tsx +++ b/src/components/Visualstudio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VisualstudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VisualstudioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Visualstudio = React.forwardRef(function Visualstudio({color = 'currentColor', size = 24, title = "visualstudio", ...others}, ref) { - const Visualstudio = React.forwardRef(function Visualstudio({color = 'currentColor', size = 24, title = "visualstudio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Visualstudio - \ No newline at end of file +export default Visualstudio; diff --git a/src/components/Visualstudiocode.tsx b/src/components/Visualstudiocode.tsx index 9e64d2f2f..a867c8510 100644 --- a/src/components/Visualstudiocode.tsx +++ b/src/components/Visualstudiocode.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VisualstudiocodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VisualstudiocodeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Visualstudiocode = React.forwardRef(function Visualstudiocode({color = 'currentColor', size = 24, title = "visualstudiocode", ...others}, ref) { - const Visualstudiocode = React.forwardRef(function Visualstudiocode({color = 'currentColor', size = 24, title = "visualstudiocode", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Visualstudiocode - \ No newline at end of file +export default Visualstudiocode; diff --git a/src/components/Vite.tsx b/src/components/Vite.tsx index 115aad2f0..3b8220d20 100644 --- a/src/components/Vite.tsx +++ b/src/components/Vite.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ViteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ViteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vite = React.forwardRef(function Vite({color = 'currentColor', size = 24, title = "vite", ...others}, ref) { - const Vite = React.forwardRef(function Vite({color = 'currentColor', size = 24, title = "vite", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vite - \ No newline at end of file +export default Vite; diff --git a/src/components/Vitess.tsx b/src/components/Vitess.tsx index 336033d30..5eeba9f0f 100644 --- a/src/components/Vitess.tsx +++ b/src/components/Vitess.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VitessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VitessProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vitess = React.forwardRef(function Vitess({color = 'currentColor', size = 24, title = "vitess", ...others}, ref) { - const Vitess = React.forwardRef(function Vitess({color = 'currentColor', size = 24, title = "vitess", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vitess - \ No newline at end of file +export default Vitess; diff --git a/src/components/Vitest.tsx b/src/components/Vitest.tsx new file mode 100644 index 000000000..9bdd1c366 --- /dev/null +++ b/src/components/Vitest.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type VitestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Vitest = React.forwardRef(function Vitest({color = 'currentColor', size = 24, title = "vitest", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Vitest; diff --git a/src/components/Vivaldi.tsx b/src/components/Vivaldi.tsx index 1d17cb704..8491b9225 100644 --- a/src/components/Vivaldi.tsx +++ b/src/components/Vivaldi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VivaldiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VivaldiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vivaldi = React.forwardRef(function Vivaldi({color = 'currentColor', size = 24, title = "vivaldi", ...others}, ref) { - const Vivaldi = React.forwardRef(function Vivaldi({color = 'currentColor', size = 24, title = "vivaldi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vivaldi - \ No newline at end of file +export default Vivaldi; diff --git a/src/components/Vivino.tsx b/src/components/Vivino.tsx index 88537e3e7..1622dde49 100644 --- a/src/components/Vivino.tsx +++ b/src/components/Vivino.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VivinoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VivinoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vivino = React.forwardRef(function Vivino({color = 'currentColor', size = 24, title = "vivino", ...others}, ref) { - const Vivino = React.forwardRef(function Vivino({color = 'currentColor', size = 24, title = "vivino", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vivino - \ No newline at end of file +export default Vivino; diff --git a/src/components/Vk.tsx b/src/components/Vk.tsx index e0b301a5c..b64686ef6 100644 --- a/src/components/Vk.tsx +++ b/src/components/Vk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vk = React.forwardRef(function Vk({color = 'currentColor', size = 24, title = "vk", ...others}, ref) { - const Vk = React.forwardRef(function Vk({color = 'currentColor', size = 24, title = "vk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vk - \ No newline at end of file +export default Vk; diff --git a/src/components/Vlcmediaplayer.tsx b/src/components/Vlcmediaplayer.tsx index ca2b84f9d..88048913f 100644 --- a/src/components/Vlcmediaplayer.tsx +++ b/src/components/Vlcmediaplayer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VlcmediaplayerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VlcmediaplayerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vlcmediaplayer = React.forwardRef(function Vlcmediaplayer({color = 'currentColor', size = 24, title = "vlcmediaplayer", ...others}, ref) { - const Vlcmediaplayer = React.forwardRef(function Vlcmediaplayer({color = 'currentColor', size = 24, title = "vlcmediaplayer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vlcmediaplayer - \ No newline at end of file +export default Vlcmediaplayer; diff --git a/src/components/Vmware.tsx b/src/components/Vmware.tsx index 00e2535e6..60cf70de5 100644 --- a/src/components/Vmware.tsx +++ b/src/components/Vmware.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VmwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VmwareProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vmware = React.forwardRef(function Vmware({color = 'currentColor', size = 24, title = "vmware", ...others}, ref) { - const Vmware = React.forwardRef(function Vmware({color = 'currentColor', size = 24, title = "vmware", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vmware - \ No newline at end of file +export default Vmware; diff --git a/src/components/Vodafone.tsx b/src/components/Vodafone.tsx index 858d5230a..601c5afcb 100644 --- a/src/components/Vodafone.tsx +++ b/src/components/Vodafone.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VodafoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VodafoneProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vodafone = React.forwardRef(function Vodafone({color = 'currentColor', size = 24, title = "vodafone", ...others}, ref) { - const Vodafone = React.forwardRef(function Vodafone({color = 'currentColor', size = 24, title = "vodafone", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vodafone - \ No newline at end of file +export default Vodafone; diff --git a/src/components/Volkswagen.tsx b/src/components/Volkswagen.tsx index c0914f440..f98b5493e 100644 --- a/src/components/Volkswagen.tsx +++ b/src/components/Volkswagen.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VolkswagenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VolkswagenProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Volkswagen = React.forwardRef(function Volkswagen({color = 'currentColor', size = 24, title = "volkswagen", ...others}, ref) { - const Volkswagen = React.forwardRef(function Volkswagen({color = 'currentColor', size = 24, title = "volkswagen", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Volkswagen - \ No newline at end of file +export default Volkswagen; diff --git a/src/components/Volvo.tsx b/src/components/Volvo.tsx index 13757e70d..40c3ff076 100644 --- a/src/components/Volvo.tsx +++ b/src/components/Volvo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VolvoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VolvoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Volvo = React.forwardRef(function Volvo({color = 'currentColor', size = 24, title = "volvo", ...others}, ref) { - const Volvo = React.forwardRef(function Volvo({color = 'currentColor', size = 24, title = "volvo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Volvo - \ No newline at end of file +export default Volvo; diff --git a/src/components/Vonage.tsx b/src/components/Vonage.tsx index 5cbaed03d..8a3cdc8b9 100644 --- a/src/components/Vonage.tsx +++ b/src/components/Vonage.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VonageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VonageProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vonage = React.forwardRef(function Vonage({color = 'currentColor', size = 24, title = "vonage", ...others}, ref) { - const Vonage = React.forwardRef(function Vonage({color = 'currentColor', size = 24, title = "vonage", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vonage - \ No newline at end of file +export default Vonage; diff --git a/src/components/Vowpalwabbit.tsx b/src/components/Vowpalwabbit.tsx index 789e37f7c..fd35e4b6f 100644 --- a/src/components/Vowpalwabbit.tsx +++ b/src/components/Vowpalwabbit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VowpalwabbitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VowpalwabbitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vowpalwabbit = React.forwardRef(function Vowpalwabbit({color = 'currentColor', size = 24, title = "vowpalwabbit", ...others}, ref) { - const Vowpalwabbit = React.forwardRef(function Vowpalwabbit({color = 'currentColor', size = 24, title = "vowpalwabbit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vowpalwabbit - \ No newline at end of file +export default Vowpalwabbit; diff --git a/src/components/Vox.tsx b/src/components/Vox.tsx index 8daf74790..e51e176f8 100644 --- a/src/components/Vox.tsx +++ b/src/components/Vox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VoxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vox = React.forwardRef(function Vox({color = 'currentColor', size = 24, title = "vox", ...others}, ref) { - const Vox = React.forwardRef(function Vox({color = 'currentColor', size = 24, title = "vox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vox - \ No newline at end of file +export default Vox; diff --git a/src/components/Vsco.tsx b/src/components/Vsco.tsx index f9121b0de..1518e622d 100644 --- a/src/components/Vsco.tsx +++ b/src/components/Vsco.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VscoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VscoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vsco = React.forwardRef(function Vsco({color = 'currentColor', size = 24, title = "vsco", ...others}, ref) { - const Vsco = React.forwardRef(function Vsco({color = 'currentColor', size = 24, title = "vsco", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vsco - \ No newline at end of file +export default Vsco; diff --git a/src/components/Vscodium.tsx b/src/components/Vscodium.tsx new file mode 100644 index 000000000..366bafd99 --- /dev/null +++ b/src/components/Vscodium.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type VscodiumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Vscodium = React.forwardRef(function Vscodium({color = 'currentColor', size = 24, title = "vscodium", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Vscodium; diff --git a/src/components/Vtex.tsx b/src/components/Vtex.tsx index 43c830a74..c8910c2ea 100644 --- a/src/components/Vtex.tsx +++ b/src/components/Vtex.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VtexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VtexProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vtex = React.forwardRef(function Vtex({color = 'currentColor', size = 24, title = "vtex", ...others}, ref) { - const Vtex = React.forwardRef(function Vtex({color = 'currentColor', size = 24, title = "vtex", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vtex - \ No newline at end of file +export default Vtex; diff --git a/src/components/Vuedotjs.tsx b/src/components/Vuedotjs.tsx index 1e238eed4..8abc4c76f 100644 --- a/src/components/Vuedotjs.tsx +++ b/src/components/Vuedotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VuedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VuedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vuedotjs = React.forwardRef(function Vuedotjs({color = 'currentColor', size = 24, title = "vuedotjs", ...others}, ref) { - const Vuedotjs = React.forwardRef(function Vuedotjs({color = 'currentColor', size = 24, title = "vuedotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vuedotjs - \ No newline at end of file +export default Vuedotjs; diff --git a/src/components/Vuetify.tsx b/src/components/Vuetify.tsx index 242b6083a..97524d5be 100644 --- a/src/components/Vuetify.tsx +++ b/src/components/Vuetify.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VuetifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VuetifyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vuetify = React.forwardRef(function Vuetify({color = 'currentColor', size = 24, title = "vuetify", ...others}, ref) { - const Vuetify = React.forwardRef(function Vuetify({color = 'currentColor', size = 24, title = "vuetify", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vuetify - \ No newline at end of file +export default Vuetify; diff --git a/src/components/Vulkan.tsx b/src/components/Vulkan.tsx index 0c694aca9..36ed37f34 100644 --- a/src/components/Vulkan.tsx +++ b/src/components/Vulkan.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VulkanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VulkanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vulkan = React.forwardRef(function Vulkan({color = 'currentColor', size = 24, title = "vulkan", ...others}, ref) { - const Vulkan = React.forwardRef(function Vulkan({color = 'currentColor', size = 24, title = "vulkan", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vulkan - \ No newline at end of file +export default Vulkan; diff --git a/src/components/Vultr.tsx b/src/components/Vultr.tsx index b55c7e071..f999eacc8 100644 --- a/src/components/Vultr.tsx +++ b/src/components/Vultr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type VultrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type VultrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Vultr = React.forwardRef(function Vultr({color = 'currentColor', size = 24, title = "vultr", ...others}, ref) { - const Vultr = React.forwardRef(function Vultr({color = 'currentColor', size = 24, title = "vultr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Vultr - \ No newline at end of file +export default Vultr; diff --git a/src/components/WThreeC.tsx b/src/components/WThreeC.tsx index 889f7389e..f2090afff 100644 --- a/src/components/WThreeC.tsx +++ b/src/components/WThreeC.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WThreeCProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WThreeCProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const WThreeC = React.forwardRef(function WThreeC({color = 'currentColor', size = 24, title = "w3c", ...others}, ref) { - const WThreeC = React.forwardRef(function WThreeC({color = 'currentColor', size = 24, title = "w3c", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default WThreeC - \ No newline at end of file +export default WThreeC; diff --git a/src/components/Wacom.tsx b/src/components/Wacom.tsx index d86eab8a2..d4ec34577 100644 --- a/src/components/Wacom.tsx +++ b/src/components/Wacom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WacomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WacomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wacom = React.forwardRef(function Wacom({color = 'currentColor', size = 24, title = "wacom", ...others}, ref) { - const Wacom = React.forwardRef(function Wacom({color = 'currentColor', size = 24, title = "wacom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wacom - \ No newline at end of file +export default Wacom; diff --git a/src/components/Wagtail.tsx b/src/components/Wagtail.tsx index d00246e12..df07371f6 100644 --- a/src/components/Wagtail.tsx +++ b/src/components/Wagtail.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WagtailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WagtailProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wagtail = React.forwardRef(function Wagtail({color = 'currentColor', size = 24, title = "wagtail", ...others}, ref) { - const Wagtail = React.forwardRef(function Wagtail({color = 'currentColor', size = 24, title = "wagtail", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wagtail - \ No newline at end of file +export default Wagtail; diff --git a/src/components/Wakatime.tsx b/src/components/Wakatime.tsx index bac9ee813..dc776673e 100644 --- a/src/components/Wakatime.tsx +++ b/src/components/Wakatime.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WakatimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WakatimeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wakatime = React.forwardRef(function Wakatime({color = 'currentColor', size = 24, title = "wakatime", ...others}, ref) { - const Wakatime = React.forwardRef(function Wakatime({color = 'currentColor', size = 24, title = "wakatime", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wakatime - \ No newline at end of file +export default Wakatime; diff --git a/src/components/Walkman.tsx b/src/components/Walkman.tsx index 4b6908aa3..581ec3283 100644 --- a/src/components/Walkman.tsx +++ b/src/components/Walkman.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WalkmanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WalkmanProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Walkman = React.forwardRef(function Walkman({color = 'currentColor', size = 24, title = "walkman", ...others}, ref) { - const Walkman = React.forwardRef(function Walkman({color = 'currentColor', size = 24, title = "walkman", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Walkman - \ No newline at end of file +export default Walkman; diff --git a/src/components/Wallabag.tsx b/src/components/Wallabag.tsx index b91bf9c5c..2ddde480a 100644 --- a/src/components/Wallabag.tsx +++ b/src/components/Wallabag.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WallabagProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WallabagProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wallabag = React.forwardRef(function Wallabag({color = 'currentColor', size = 24, title = "wallabag", ...others}, ref) { - const Wallabag = React.forwardRef(function Wallabag({color = 'currentColor', size = 24, title = "wallabag", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wallabag - \ No newline at end of file +export default Wallabag; diff --git a/src/components/Walmart.tsx b/src/components/Walmart.tsx index 1768f074f..0ad0a7ad6 100644 --- a/src/components/Walmart.tsx +++ b/src/components/Walmart.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WalmartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WalmartProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Walmart = React.forwardRef(function Walmart({color = 'currentColor', size = 24, title = "walmart", ...others}, ref) { - const Walmart = React.forwardRef(function Walmart({color = 'currentColor', size = 24, title = "walmart", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Walmart - \ No newline at end of file +export default Walmart; diff --git a/src/components/Wappalyzer.tsx b/src/components/Wappalyzer.tsx index 025e2a543..aea1c4198 100644 --- a/src/components/Wappalyzer.tsx +++ b/src/components/Wappalyzer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WappalyzerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WappalyzerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wappalyzer = React.forwardRef(function Wappalyzer({color = 'currentColor', size = 24, title = "wappalyzer", ...others}, ref) { - const Wappalyzer = React.forwardRef(function Wappalyzer({color = 'currentColor', size = 24, title = "wappalyzer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wappalyzer - \ No newline at end of file +export default Wappalyzer; diff --git a/src/components/Warnerbros.tsx b/src/components/Warnerbros.tsx index eb81c1493..f581be9ad 100644 --- a/src/components/Warnerbros.tsx +++ b/src/components/Warnerbros.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WarnerbrosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WarnerbrosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Warnerbros = React.forwardRef(function Warnerbros({color = 'currentColor', size = 24, title = "warnerbros", ...others}, ref) { - const Warnerbros = React.forwardRef(function Warnerbros({color = 'currentColor', size = 24, title = "warnerbros", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Warnerbros - \ No newline at end of file +export default Warnerbros; diff --git a/src/components/Warp.tsx b/src/components/Warp.tsx new file mode 100644 index 000000000..c1b8d12da --- /dev/null +++ b/src/components/Warp.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type WarpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Warp = React.forwardRef(function Warp({color = 'currentColor', size = 24, title = "warp", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Warp; diff --git a/src/components/Wasmcloud.tsx b/src/components/Wasmcloud.tsx index db523bd6d..e487f425f 100644 --- a/src/components/Wasmcloud.tsx +++ b/src/components/Wasmcloud.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WasmcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WasmcloudProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wasmcloud = React.forwardRef(function Wasmcloud({color = 'currentColor', size = 24, title = "wasmcloud", ...others}, ref) { - const Wasmcloud = React.forwardRef(function Wasmcloud({color = 'currentColor', size = 24, title = "wasmcloud", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wasmcloud - \ No newline at end of file +export default Wasmcloud; diff --git a/src/components/Wasmer.tsx b/src/components/Wasmer.tsx index 0a7c86049..28d6345a8 100644 --- a/src/components/Wasmer.tsx +++ b/src/components/Wasmer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WasmerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WasmerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wasmer = React.forwardRef(function Wasmer({color = 'currentColor', size = 24, title = "wasmer", ...others}, ref) { - const Wasmer = React.forwardRef(function Wasmer({color = 'currentColor', size = 24, title = "wasmer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wasmer - \ No newline at end of file +export default Wasmer; diff --git a/src/components/Wattpad.tsx b/src/components/Wattpad.tsx index e59b5e247..9070ced7a 100644 --- a/src/components/Wattpad.tsx +++ b/src/components/Wattpad.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WattpadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WattpadProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wattpad = React.forwardRef(function Wattpad({color = 'currentColor', size = 24, title = "wattpad", ...others}, ref) { - const Wattpad = React.forwardRef(function Wattpad({color = 'currentColor', size = 24, title = "wattpad", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wattpad - \ No newline at end of file +export default Wattpad; diff --git a/src/components/Waze.tsx b/src/components/Waze.tsx index d366a1257..62dc5ee09 100644 --- a/src/components/Waze.tsx +++ b/src/components/Waze.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WazeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WazeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Waze = React.forwardRef(function Waze({color = 'currentColor', size = 24, title = "waze", ...others}, ref) { - const Waze = React.forwardRef(function Waze({color = 'currentColor', size = 24, title = "waze", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Waze - \ No newline at end of file +export default Waze; diff --git a/src/components/Wearos.tsx b/src/components/Wearos.tsx index b10358527..4f7ed4b82 100644 --- a/src/components/Wearos.tsx +++ b/src/components/Wearos.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WearosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WearosProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wearos = React.forwardRef(function Wearos({color = 'currentColor', size = 24, title = "wearos", ...others}, ref) { - const Wearos = React.forwardRef(function Wearos({color = 'currentColor', size = 24, title = "wearos", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wearos - \ No newline at end of file +export default Wearos; diff --git a/src/components/Weasyl.tsx b/src/components/Weasyl.tsx index 0540a1004..c7df8fbd9 100644 --- a/src/components/Weasyl.tsx +++ b/src/components/Weasyl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WeasylProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WeasylProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Weasyl = React.forwardRef(function Weasyl({color = 'currentColor', size = 24, title = "weasyl", ...others}, ref) { - const Weasyl = React.forwardRef(function Weasyl({color = 'currentColor', size = 24, title = "weasyl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Weasyl - \ No newline at end of file +export default Weasyl; diff --git a/src/components/WebThreeDotjs.tsx b/src/components/WebThreeDotjs.tsx index 338e01807..2b20e75aa 100644 --- a/src/components/WebThreeDotjs.tsx +++ b/src/components/WebThreeDotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebThreeDotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebThreeDotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const WebThreeDotjs = React.forwardRef(function WebThreeDotjs({color = 'currentColor', size = 24, title = "web3dotjs", ...others}, ref) { - const WebThreeDotjs = React.forwardRef(function WebThreeDotjs({color = 'currentColor', size = 24, title = "web3dotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default WebThreeDotjs - \ No newline at end of file +export default WebThreeDotjs; diff --git a/src/components/Webassembly.tsx b/src/components/Webassembly.tsx index 5e86b216d..be4019e6d 100644 --- a/src/components/Webassembly.tsx +++ b/src/components/Webassembly.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebassemblyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebassemblyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webassembly = React.forwardRef(function Webassembly({color = 'currentColor', size = 24, title = "webassembly", ...others}, ref) { - const Webassembly = React.forwardRef(function Webassembly({color = 'currentColor', size = 24, title = "webassembly", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webassembly - \ No newline at end of file +export default Webassembly; diff --git a/src/components/Webauthn.tsx b/src/components/Webauthn.tsx index 50aeef3e6..6f04a1771 100644 --- a/src/components/Webauthn.tsx +++ b/src/components/Webauthn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebauthnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebauthnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webauthn = React.forwardRef(function Webauthn({color = 'currentColor', size = 24, title = "webauthn", ...others}, ref) { - const Webauthn = React.forwardRef(function Webauthn({color = 'currentColor', size = 24, title = "webauthn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webauthn - \ No newline at end of file +export default Webauthn; diff --git a/src/components/Webcomponentsdotorg.tsx b/src/components/Webcomponentsdotorg.tsx index 00581b0f1..81566a8e2 100644 --- a/src/components/Webcomponentsdotorg.tsx +++ b/src/components/Webcomponentsdotorg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebcomponentsdotorgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebcomponentsdotorgProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webcomponentsdotorg = React.forwardRef(function Webcomponentsdotorg({color = 'currentColor', size = 24, title = "webcomponentsdotorg", ...others}, ref) { - const Webcomponentsdotorg = React.forwardRef(function Webcomponentsdotorg({color = 'currentColor', size = 24, title = "webcomponentsdotorg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webcomponentsdotorg - \ No newline at end of file +export default Webcomponentsdotorg; diff --git a/src/components/Webdriverio.tsx b/src/components/Webdriverio.tsx index e87bdec33..d135c89e1 100644 --- a/src/components/Webdriverio.tsx +++ b/src/components/Webdriverio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebdriverioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebdriverioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webdriverio = React.forwardRef(function Webdriverio({color = 'currentColor', size = 24, title = "webdriverio", ...others}, ref) { - const Webdriverio = React.forwardRef(function Webdriverio({color = 'currentColor', size = 24, title = "webdriverio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webdriverio - \ No newline at end of file +export default Webdriverio; diff --git a/src/components/Webflow.tsx b/src/components/Webflow.tsx index 42cb4c46f..2b0efd47f 100644 --- a/src/components/Webflow.tsx +++ b/src/components/Webflow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebflowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webflow = React.forwardRef(function Webflow({color = 'currentColor', size = 24, title = "webflow", ...others}, ref) { - const Webflow = React.forwardRef(function Webflow({color = 'currentColor', size = 24, title = "webflow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webflow - \ No newline at end of file +export default Webflow; diff --git a/src/components/Webgl.tsx b/src/components/Webgl.tsx index fb29e8cd9..9cd7eb0bf 100644 --- a/src/components/Webgl.tsx +++ b/src/components/Webgl.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebglProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebglProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webgl = React.forwardRef(function Webgl({color = 'currentColor', size = 24, title = "webgl", ...others}, ref) { - const Webgl = React.forwardRef(function Webgl({color = 'currentColor', size = 24, title = "webgl", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webgl - \ No newline at end of file +export default Webgl; diff --git a/src/components/Webhint.tsx b/src/components/Webhint.tsx index cbecb2ef2..d4fcc6fd9 100644 --- a/src/components/Webhint.tsx +++ b/src/components/Webhint.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebhintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebhintProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webhint = React.forwardRef(function Webhint({color = 'currentColor', size = 24, title = "webhint", ...others}, ref) { - const Webhint = React.forwardRef(function Webhint({color = 'currentColor', size = 24, title = "webhint", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webhint - \ No newline at end of file +export default Webhint; diff --git a/src/components/Weblate.tsx b/src/components/Weblate.tsx index 7ac650b57..d7eb8a462 100644 --- a/src/components/Weblate.tsx +++ b/src/components/Weblate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WeblateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WeblateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Weblate = React.forwardRef(function Weblate({color = 'currentColor', size = 24, title = "weblate", ...others}, ref) { - const Weblate = React.forwardRef(function Weblate({color = 'currentColor', size = 24, title = "weblate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Weblate - \ No newline at end of file +export default Weblate; diff --git a/src/components/Webmin.tsx b/src/components/Webmin.tsx index 8b99e8a73..807b9bc73 100644 --- a/src/components/Webmin.tsx +++ b/src/components/Webmin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebminProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebminProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webmin = React.forwardRef(function Webmin({color = 'currentColor', size = 24, title = "webmin", ...others}, ref) { - const Webmin = React.forwardRef(function Webmin({color = 'currentColor', size = 24, title = "webmin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webmin - \ No newline at end of file +export default Webmin; diff --git a/src/components/Webmoney.tsx b/src/components/Webmoney.tsx index 4366719fb..2fa8719da 100644 --- a/src/components/Webmoney.tsx +++ b/src/components/Webmoney.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebmoneyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebmoneyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webmoney = React.forwardRef(function Webmoney({color = 'currentColor', size = 24, title = "webmoney", ...others}, ref) { - const Webmoney = React.forwardRef(function Webmoney({color = 'currentColor', size = 24, title = "webmoney", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webmoney - \ No newline at end of file +export default Webmoney; diff --git a/src/components/Webpack.tsx b/src/components/Webpack.tsx index b06e4f2ab..aab1feece 100644 --- a/src/components/Webpack.tsx +++ b/src/components/Webpack.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebpackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebpackProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webpack = React.forwardRef(function Webpack({color = 'currentColor', size = 24, title = "webpack", ...others}, ref) { - const Webpack = React.forwardRef(function Webpack({color = 'currentColor', size = 24, title = "webpack", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webpack - \ No newline at end of file +export default Webpack; diff --git a/src/components/Webrtc.tsx b/src/components/Webrtc.tsx index c716b8b75..e045195a8 100644 --- a/src/components/Webrtc.tsx +++ b/src/components/Webrtc.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebrtcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebrtcProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webrtc = React.forwardRef(function Webrtc({color = 'currentColor', size = 24, title = "webrtc", ...others}, ref) { - const Webrtc = React.forwardRef(function Webrtc({color = 'currentColor', size = 24, title = "webrtc", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webrtc - \ No newline at end of file +export default Webrtc; diff --git a/src/components/Webstorm.tsx b/src/components/Webstorm.tsx index 4e5b5e640..d5163703a 100644 --- a/src/components/Webstorm.tsx +++ b/src/components/Webstorm.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebstormProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebstormProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webstorm = React.forwardRef(function Webstorm({color = 'currentColor', size = 24, title = "webstorm", ...others}, ref) { - const Webstorm = React.forwardRef(function Webstorm({color = 'currentColor', size = 24, title = "webstorm", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webstorm - \ No newline at end of file +export default Webstorm; diff --git a/src/components/Webtoon.tsx b/src/components/Webtoon.tsx index 1f4fb76b0..6bead4613 100644 --- a/src/components/Webtoon.tsx +++ b/src/components/Webtoon.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WebtoonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WebtoonProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Webtoon = React.forwardRef(function Webtoon({color = 'currentColor', size = 24, title = "webtoon", ...others}, ref) { - const Webtoon = React.forwardRef(function Webtoon({color = 'currentColor', size = 24, title = "webtoon", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Webtoon - \ No newline at end of file +export default Webtoon; diff --git a/src/components/Wechat.tsx b/src/components/Wechat.tsx index 6c269438a..695162b6d 100644 --- a/src/components/Wechat.tsx +++ b/src/components/Wechat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WechatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WechatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wechat = React.forwardRef(function Wechat({color = 'currentColor', size = 24, title = "wechat", ...others}, ref) { - const Wechat = React.forwardRef(function Wechat({color = 'currentColor', size = 24, title = "wechat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wechat - \ No newline at end of file +export default Wechat; diff --git a/src/components/Wegame.tsx b/src/components/Wegame.tsx index b730ad253..8aa2b163f 100644 --- a/src/components/Wegame.tsx +++ b/src/components/Wegame.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WegameProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WegameProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wegame = React.forwardRef(function Wegame({color = 'currentColor', size = 24, title = "wegame", ...others}, ref) { - const Wegame = React.forwardRef(function Wegame({color = 'currentColor', size = 24, title = "wegame", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wegame - \ No newline at end of file +export default Wegame; diff --git a/src/components/Weightsandbiases.tsx b/src/components/Weightsandbiases.tsx index e627400e9..d590ed1bb 100644 --- a/src/components/Weightsandbiases.tsx +++ b/src/components/Weightsandbiases.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WeightsandbiasesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WeightsandbiasesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Weightsandbiases = React.forwardRef(function Weightsandbiases({color = 'currentColor', size = 24, title = "weightsandbiases", ...others}, ref) { - const Weightsandbiases = React.forwardRef(function Weightsandbiases({color = 'currentColor', size = 24, title = "weightsandbiases", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Weightsandbiases - \ No newline at end of file +export default Weightsandbiases; diff --git a/src/components/Welcometothejungle.tsx b/src/components/Welcometothejungle.tsx index 15d656243..02503ce07 100644 --- a/src/components/Welcometothejungle.tsx +++ b/src/components/Welcometothejungle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WelcometothejungleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WelcometothejungleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Welcometothejungle = React.forwardRef(function Welcometothejungle({color = 'currentColor', size = 24, title = "welcometothejungle", ...others}, ref) { - const Welcometothejungle = React.forwardRef(function Welcometothejungle({color = 'currentColor', size = 24, title = "welcometothejungle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Welcometothejungle - \ No newline at end of file +export default Welcometothejungle; diff --git a/src/components/Wemo.tsx b/src/components/Wemo.tsx index ad5b8935c..c712d13f6 100644 --- a/src/components/Wemo.tsx +++ b/src/components/Wemo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WemoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WemoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wemo = React.forwardRef(function Wemo({color = 'currentColor', size = 24, title = "wemo", ...others}, ref) { - const Wemo = React.forwardRef(function Wemo({color = 'currentColor', size = 24, title = "wemo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wemo - \ No newline at end of file +export default Wemo; diff --git a/src/components/Westerndigital.tsx b/src/components/Westerndigital.tsx index b4e812828..41d014fae 100644 --- a/src/components/Westerndigital.tsx +++ b/src/components/Westerndigital.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WesterndigitalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WesterndigitalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Westerndigital = React.forwardRef(function Westerndigital({color = 'currentColor', size = 24, title = "westerndigital", ...others}, ref) { - const Westerndigital = React.forwardRef(function Westerndigital({color = 'currentColor', size = 24, title = "westerndigital", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Westerndigital - \ No newline at end of file +export default Westerndigital; diff --git a/src/components/Wetransfer.tsx b/src/components/Wetransfer.tsx index 81675670e..1ee24cb92 100644 --- a/src/components/Wetransfer.tsx +++ b/src/components/Wetransfer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WetransferProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WetransferProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wetransfer = React.forwardRef(function Wetransfer({color = 'currentColor', size = 24, title = "wetransfer", ...others}, ref) { - const Wetransfer = React.forwardRef(function Wetransfer({color = 'currentColor', size = 24, title = "wetransfer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wetransfer - \ No newline at end of file +export default Wetransfer; diff --git a/src/components/Whatsapp.tsx b/src/components/Whatsapp.tsx index 5147e194e..d0ab2166f 100644 --- a/src/components/Whatsapp.tsx +++ b/src/components/Whatsapp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WhatsappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WhatsappProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Whatsapp = React.forwardRef(function Whatsapp({color = 'currentColor', size = 24, title = "whatsapp", ...others}, ref) { - const Whatsapp = React.forwardRef(function Whatsapp({color = 'currentColor', size = 24, title = "whatsapp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Whatsapp - \ No newline at end of file +export default Whatsapp; diff --git a/src/components/Wheniwork.tsx b/src/components/Wheniwork.tsx index 635ddaf4f..60d012468 100644 --- a/src/components/Wheniwork.tsx +++ b/src/components/Wheniwork.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WheniworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WheniworkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wheniwork = React.forwardRef(function Wheniwork({color = 'currentColor', size = 24, title = "wheniwork", ...others}, ref) { - const Wheniwork = React.forwardRef(function Wheniwork({color = 'currentColor', size = 24, title = "wheniwork", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wheniwork - \ No newline at end of file +export default Wheniwork; diff --git a/src/components/Whitesource.tsx b/src/components/Whitesource.tsx index e0c9b8865..30ec6cf13 100644 --- a/src/components/Whitesource.tsx +++ b/src/components/Whitesource.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WhitesourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WhitesourceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Whitesource = React.forwardRef(function Whitesource({color = 'currentColor', size = 24, title = "whitesource", ...others}, ref) { - const Whitesource = React.forwardRef(function Whitesource({color = 'currentColor', size = 24, title = "whitesource", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Whitesource - \ No newline at end of file +export default Whitesource; diff --git a/src/components/Wii.tsx b/src/components/Wii.tsx index 93bee49f7..82760c5b6 100644 --- a/src/components/Wii.tsx +++ b/src/components/Wii.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WiiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WiiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wii = React.forwardRef(function Wii({color = 'currentColor', size = 24, title = "wii", ...others}, ref) { - const Wii = React.forwardRef(function Wii({color = 'currentColor', size = 24, title = "wii", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wii - \ No newline at end of file +export default Wii; diff --git a/src/components/Wiiu.tsx b/src/components/Wiiu.tsx index 75cecc874..be9da1c85 100644 --- a/src/components/Wiiu.tsx +++ b/src/components/Wiiu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WiiuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WiiuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wiiu = React.forwardRef(function Wiiu({color = 'currentColor', size = 24, title = "wiiu", ...others}, ref) { - const Wiiu = React.forwardRef(function Wiiu({color = 'currentColor', size = 24, title = "wiiu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wiiu - \ No newline at end of file +export default Wiiu; diff --git a/src/components/Wikidata.tsx b/src/components/Wikidata.tsx index 7d87f4060..01b234de7 100644 --- a/src/components/Wikidata.tsx +++ b/src/components/Wikidata.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WikidataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WikidataProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wikidata = React.forwardRef(function Wikidata({color = 'currentColor', size = 24, title = "wikidata", ...others}, ref) { - const Wikidata = React.forwardRef(function Wikidata({color = 'currentColor', size = 24, title = "wikidata", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wikidata - \ No newline at end of file +export default Wikidata; diff --git a/src/components/Wikidotjs.tsx b/src/components/Wikidotjs.tsx index eff34e21a..019a0f6b5 100644 --- a/src/components/Wikidotjs.tsx +++ b/src/components/Wikidotjs.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WikidotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WikidotjsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wikidotjs = React.forwardRef(function Wikidotjs({color = 'currentColor', size = 24, title = "wikidotjs", ...others}, ref) { - const Wikidotjs = React.forwardRef(function Wikidotjs({color = 'currentColor', size = 24, title = "wikidotjs", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wikidotjs - \ No newline at end of file +export default Wikidotjs; diff --git a/src/components/Wikimediacommons.tsx b/src/components/Wikimediacommons.tsx index 82cb6bf57..a4d1366bc 100644 --- a/src/components/Wikimediacommons.tsx +++ b/src/components/Wikimediacommons.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WikimediacommonsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WikimediacommonsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wikimediacommons = React.forwardRef(function Wikimediacommons({color = 'currentColor', size = 24, title = "wikimediacommons", ...others}, ref) { - const Wikimediacommons = React.forwardRef(function Wikimediacommons({color = 'currentColor', size = 24, title = "wikimediacommons", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wikimediacommons - \ No newline at end of file +export default Wikimediacommons; diff --git a/src/components/Wikipedia.tsx b/src/components/Wikipedia.tsx index e6ea3ce8d..9a43762b9 100644 --- a/src/components/Wikipedia.tsx +++ b/src/components/Wikipedia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WikipediaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WikipediaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wikipedia = React.forwardRef(function Wikipedia({color = 'currentColor', size = 24, title = "wikipedia", ...others}, ref) { - const Wikipedia = React.forwardRef(function Wikipedia({color = 'currentColor', size = 24, title = "wikipedia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wikipedia - \ No newline at end of file +export default Wikipedia; diff --git a/src/components/Wikiquote.tsx b/src/components/Wikiquote.tsx index f35281cc6..b75f5d418 100644 --- a/src/components/Wikiquote.tsx +++ b/src/components/Wikiquote.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WikiquoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WikiquoteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wikiquote = React.forwardRef(function Wikiquote({color = 'currentColor', size = 24, title = "wikiquote", ...others}, ref) { - const Wikiquote = React.forwardRef(function Wikiquote({color = 'currentColor', size = 24, title = "wikiquote", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wikiquote - \ No newline at end of file +export default Wikiquote; diff --git a/src/components/Wikivoyage.tsx b/src/components/Wikivoyage.tsx index 47695193a..5e92a1b8d 100644 --- a/src/components/Wikivoyage.tsx +++ b/src/components/Wikivoyage.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WikivoyageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WikivoyageProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wikivoyage = React.forwardRef(function Wikivoyage({color = 'currentColor', size = 24, title = "wikivoyage", ...others}, ref) { - const Wikivoyage = React.forwardRef(function Wikivoyage({color = 'currentColor', size = 24, title = "wikivoyage", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wikivoyage - \ No newline at end of file +export default Wikivoyage; diff --git a/src/components/Winamp.tsx b/src/components/Winamp.tsx index 118225c2c..b24210fca 100644 --- a/src/components/Winamp.tsx +++ b/src/components/Winamp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WinampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WinampProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Winamp = React.forwardRef(function Winamp({color = 'currentColor', size = 24, title = "winamp", ...others}, ref) { - const Winamp = React.forwardRef(function Winamp({color = 'currentColor', size = 24, title = "winamp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Winamp - \ No newline at end of file +export default Winamp; diff --git a/src/components/Windicss.tsx b/src/components/Windicss.tsx index ce9748e73..bd142ecfa 100644 --- a/src/components/Windicss.tsx +++ b/src/components/Windicss.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WindicssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WindicssProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Windicss = React.forwardRef(function Windicss({color = 'currentColor', size = 24, title = "windicss", ...others}, ref) { - const Windicss = React.forwardRef(function Windicss({color = 'currentColor', size = 24, title = "windicss", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Windicss - \ No newline at end of file +export default Windicss; diff --git a/src/components/Windows.tsx b/src/components/Windows.tsx index 37c1ca8cc..280bea788 100644 --- a/src/components/Windows.tsx +++ b/src/components/Windows.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WindowsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WindowsProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Windows = React.forwardRef(function Windows({color = 'currentColor', size = 24, title = "windows", ...others}, ref) { - const Windows = React.forwardRef(function Windows({color = 'currentColor', size = 24, title = "windows", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Windows - \ No newline at end of file +export default Windows; diff --git a/src/components/Windows11.tsx b/src/components/Windows11.tsx index b1ab27523..b0411e615 100644 --- a/src/components/Windows11.tsx +++ b/src/components/Windows11.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Windows11Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Windows11Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Windows11 = React.forwardRef(function Windows11({color = 'currentColor', size = 24, title = "windows11", ...others}, ref) { - const Windows11 = React.forwardRef(function Windows11({color = 'currentColor', size = 24, title = "windows11", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Windows11 - \ No newline at end of file +export default Windows11; diff --git a/src/components/Windows95.tsx b/src/components/Windows95.tsx index 047596326..eccb758e8 100644 --- a/src/components/Windows95.tsx +++ b/src/components/Windows95.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type Windows95Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type Windows95Props = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Windows95 = React.forwardRef(function Windows95({color = 'currentColor', size = 24, title = "windows95", ...others}, ref) { - const Windows95 = React.forwardRef(function Windows95({color = 'currentColor', size = 24, title = "windows95", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Windows95 - \ No newline at end of file +export default Windows95; diff --git a/src/components/Windowsterminal.tsx b/src/components/Windowsterminal.tsx index d6499ad89..dd1ab0ad3 100644 --- a/src/components/Windowsterminal.tsx +++ b/src/components/Windowsterminal.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WindowsterminalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WindowsterminalProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Windowsterminal = React.forwardRef(function Windowsterminal({color = 'currentColor', size = 24, title = "windowsterminal", ...others}, ref) { - const Windowsterminal = React.forwardRef(function Windowsterminal({color = 'currentColor', size = 24, title = "windowsterminal", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Windowsterminal - \ No newline at end of file +export default Windowsterminal; diff --git a/src/components/Windowsxp.tsx b/src/components/Windowsxp.tsx index cbeba2e5f..44dd2d940 100644 --- a/src/components/Windowsxp.tsx +++ b/src/components/Windowsxp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WindowsxpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WindowsxpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Windowsxp = React.forwardRef(function Windowsxp({color = 'currentColor', size = 24, title = "windowsxp", ...others}, ref) { - const Windowsxp = React.forwardRef(function Windowsxp({color = 'currentColor', size = 24, title = "windowsxp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Windowsxp - \ No newline at end of file +export default Windowsxp; diff --git a/src/components/Winmate.tsx b/src/components/Winmate.tsx index e05b8ed54..d1a3e5e8f 100644 --- a/src/components/Winmate.tsx +++ b/src/components/Winmate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WinmateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WinmateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Winmate = React.forwardRef(function Winmate({color = 'currentColor', size = 24, title = "winmate", ...others}, ref) { - const Winmate = React.forwardRef(function Winmate({color = 'currentColor', size = 24, title = "winmate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Winmate - \ No newline at end of file +export default Winmate; diff --git a/src/components/Wipro.tsx b/src/components/Wipro.tsx index 4cd1455f8..087df295c 100644 --- a/src/components/Wipro.tsx +++ b/src/components/Wipro.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WiproProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WiproProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wipro = React.forwardRef(function Wipro({color = 'currentColor', size = 24, title = "wipro", ...others}, ref) { - const Wipro = React.forwardRef(function Wipro({color = 'currentColor', size = 24, title = "wipro", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wipro - \ No newline at end of file +export default Wipro; diff --git a/src/components/Wire.tsx b/src/components/Wire.tsx index f5d7b3b08..fe8181cf0 100644 --- a/src/components/Wire.tsx +++ b/src/components/Wire.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WireProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wire = React.forwardRef(function Wire({color = 'currentColor', size = 24, title = "wire", ...others}, ref) { - const Wire = React.forwardRef(function Wire({color = 'currentColor', size = 24, title = "wire", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wire - \ No newline at end of file +export default Wire; diff --git a/src/components/Wireguard.tsx b/src/components/Wireguard.tsx index 04883a518..48e469057 100644 --- a/src/components/Wireguard.tsx +++ b/src/components/Wireguard.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WireguardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WireguardProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wireguard = React.forwardRef(function Wireguard({color = 'currentColor', size = 24, title = "wireguard", ...others}, ref) { - const Wireguard = React.forwardRef(function Wireguard({color = 'currentColor', size = 24, title = "wireguard", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wireguard - \ No newline at end of file +export default Wireguard; diff --git a/src/components/Wireshark.tsx b/src/components/Wireshark.tsx index f316d619a..851da16c2 100644 --- a/src/components/Wireshark.tsx +++ b/src/components/Wireshark.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WiresharkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WiresharkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wireshark = React.forwardRef(function Wireshark({color = 'currentColor', size = 24, title = "wireshark", ...others}, ref) { - const Wireshark = React.forwardRef(function Wireshark({color = 'currentColor', size = 24, title = "wireshark", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wireshark - \ No newline at end of file +export default Wireshark; diff --git a/src/components/Wise.tsx b/src/components/Wise.tsx index 6dbc7b278..c51b0db72 100644 --- a/src/components/Wise.tsx +++ b/src/components/Wise.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WiseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WiseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wise = React.forwardRef(function Wise({color = 'currentColor', size = 24, title = "wise", ...others}, ref) { - const Wise = React.forwardRef(function Wise({color = 'currentColor', size = 24, title = "wise", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wise - \ No newline at end of file +export default Wise; diff --git a/src/components/Wish.tsx b/src/components/Wish.tsx index 189d5da80..812f492ef 100644 --- a/src/components/Wish.tsx +++ b/src/components/Wish.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WishProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WishProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wish = React.forwardRef(function Wish({color = 'currentColor', size = 24, title = "wish", ...others}, ref) { - const Wish = React.forwardRef(function Wish({color = 'currentColor', size = 24, title = "wish", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wish - \ No newline at end of file +export default Wish; diff --git a/src/components/Wistia.tsx b/src/components/Wistia.tsx index c4f4801a3..71f7bd61a 100644 --- a/src/components/Wistia.tsx +++ b/src/components/Wistia.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WistiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WistiaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wistia = React.forwardRef(function Wistia({color = 'currentColor', size = 24, title = "wistia", ...others}, ref) { - const Wistia = React.forwardRef(function Wistia({color = 'currentColor', size = 24, title = "wistia", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wistia - \ No newline at end of file +export default Wistia; diff --git a/src/components/Wix.tsx b/src/components/Wix.tsx index ef891e6ef..517092f5c 100644 --- a/src/components/Wix.tsx +++ b/src/components/Wix.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WixProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wix = React.forwardRef(function Wix({color = 'currentColor', size = 24, title = "wix", ...others}, ref) { - const Wix = React.forwardRef(function Wix({color = 'currentColor', size = 24, title = "wix", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wix - \ No newline at end of file +export default Wix; diff --git a/src/components/Wizzair.tsx b/src/components/Wizzair.tsx index ca7cdb97b..5ea0cb8c0 100644 --- a/src/components/Wizzair.tsx +++ b/src/components/Wizzair.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WizzairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WizzairProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wizzair = React.forwardRef(function Wizzair({color = 'currentColor', size = 24, title = "wizzair", ...others}, ref) { - const Wizzair = React.forwardRef(function Wizzair({color = 'currentColor', size = 24, title = "wizzair", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wizzair - \ No newline at end of file +export default Wizzair; diff --git a/src/components/Wolfram.tsx b/src/components/Wolfram.tsx index abddcd137..73695d46f 100644 --- a/src/components/Wolfram.tsx +++ b/src/components/Wolfram.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WolframProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WolframProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wolfram = React.forwardRef(function Wolfram({color = 'currentColor', size = 24, title = "wolfram", ...others}, ref) { - const Wolfram = React.forwardRef(function Wolfram({color = 'currentColor', size = 24, title = "wolfram", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wolfram - \ No newline at end of file +export default Wolfram; diff --git a/src/components/Wolframlanguage.tsx b/src/components/Wolframlanguage.tsx index 2288ed381..8fa9ca720 100644 --- a/src/components/Wolframlanguage.tsx +++ b/src/components/Wolframlanguage.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WolframlanguageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WolframlanguageProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wolframlanguage = React.forwardRef(function Wolframlanguage({color = 'currentColor', size = 24, title = "wolframlanguage", ...others}, ref) { - const Wolframlanguage = React.forwardRef(function Wolframlanguage({color = 'currentColor', size = 24, title = "wolframlanguage", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wolframlanguage - \ No newline at end of file +export default Wolframlanguage; diff --git a/src/components/Wolframmathematica.tsx b/src/components/Wolframmathematica.tsx index 56f65cfea..6518f5c96 100644 --- a/src/components/Wolframmathematica.tsx +++ b/src/components/Wolframmathematica.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WolframmathematicaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WolframmathematicaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wolframmathematica = React.forwardRef(function Wolframmathematica({color = 'currentColor', size = 24, title = "wolframmathematica", ...others}, ref) { - const Wolframmathematica = React.forwardRef(function Wolframmathematica({color = 'currentColor', size = 24, title = "wolframmathematica", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wolframmathematica - \ No newline at end of file +export default Wolframmathematica; diff --git a/src/components/Woo.tsx b/src/components/Woo.tsx index be3106c9b..d35836e7a 100644 --- a/src/components/Woo.tsx +++ b/src/components/Woo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WooProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Woo = React.forwardRef(function Woo({color = 'currentColor', size = 24, title = "woo", ...others}, ref) { - const Woo = React.forwardRef(function Woo({color = 'currentColor', size = 24, title = "woo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Woo - \ No newline at end of file +export default Woo; diff --git a/src/components/Woocommerce.tsx b/src/components/Woocommerce.tsx index 2f7a6e98b..44a3537f9 100644 --- a/src/components/Woocommerce.tsx +++ b/src/components/Woocommerce.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WoocommerceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WoocommerceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Woocommerce = React.forwardRef(function Woocommerce({color = 'currentColor', size = 24, title = "woocommerce", ...others}, ref) { - const Woocommerce = React.forwardRef(function Woocommerce({color = 'currentColor', size = 24, title = "woocommerce", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Woocommerce - \ No newline at end of file +export default Woocommerce; diff --git a/src/components/Wordpress.tsx b/src/components/Wordpress.tsx index c8fc0a910..d7018e14a 100644 --- a/src/components/Wordpress.tsx +++ b/src/components/Wordpress.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WordpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WordpressProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wordpress = React.forwardRef(function Wordpress({color = 'currentColor', size = 24, title = "wordpress", ...others}, ref) { - const Wordpress = React.forwardRef(function Wordpress({color = 'currentColor', size = 24, title = "wordpress", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wordpress - \ No newline at end of file +export default Wordpress; diff --git a/src/components/Workplace.tsx b/src/components/Workplace.tsx index d369a7e27..da48eb98c 100644 --- a/src/components/Workplace.tsx +++ b/src/components/Workplace.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WorkplaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WorkplaceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Workplace = React.forwardRef(function Workplace({color = 'currentColor', size = 24, title = "workplace", ...others}, ref) { - const Workplace = React.forwardRef(function Workplace({color = 'currentColor', size = 24, title = "workplace", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Workplace - \ No newline at end of file +export default Workplace; diff --git a/src/components/Worldhealthorganization.tsx b/src/components/Worldhealthorganization.tsx index 94e527730..ba35117ce 100644 --- a/src/components/Worldhealthorganization.tsx +++ b/src/components/Worldhealthorganization.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WorldhealthorganizationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WorldhealthorganizationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Worldhealthorganization = React.forwardRef(function Worldhealthorganization({color = 'currentColor', size = 24, title = "worldhealthorganization", ...others}, ref) { - const Worldhealthorganization = React.forwardRef(function Worldhealthorganization({color = 'currentColor', size = 24, title = "worldhealthorganization", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Worldhealthorganization - \ No newline at end of file +export default Worldhealthorganization; diff --git a/src/components/Wpengine.tsx b/src/components/Wpengine.tsx index 73b58b928..5eb62a5ee 100644 --- a/src/components/Wpengine.tsx +++ b/src/components/Wpengine.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WpengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WpengineProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wpengine = React.forwardRef(function Wpengine({color = 'currentColor', size = 24, title = "wpengine", ...others}, ref) { - const Wpengine = React.forwardRef(function Wpengine({color = 'currentColor', size = 24, title = "wpengine", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wpengine - \ No newline at end of file +export default Wpengine; diff --git a/src/components/Wprocket.tsx b/src/components/Wprocket.tsx index 3b28a6b86..6429dd45c 100644 --- a/src/components/Wprocket.tsx +++ b/src/components/Wprocket.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WprocketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WprocketProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wprocket = React.forwardRef(function Wprocket({color = 'currentColor', size = 24, title = "wprocket", ...others}, ref) { - const Wprocket = React.forwardRef(function Wprocket({color = 'currentColor', size = 24, title = "wprocket", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wprocket - \ No newline at end of file +export default Wprocket; diff --git a/src/components/Writedotas.tsx b/src/components/Writedotas.tsx index 883e246b4..699a0e58f 100644 --- a/src/components/Writedotas.tsx +++ b/src/components/Writedotas.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WritedotasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WritedotasProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Writedotas = React.forwardRef(function Writedotas({color = 'currentColor', size = 24, title = "writedotas", ...others}, ref) { - const Writedotas = React.forwardRef(function Writedotas({color = 'currentColor', size = 24, title = "writedotas", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Writedotas - \ No newline at end of file +export default Writedotas; diff --git a/src/components/Wwe.tsx b/src/components/Wwe.tsx index 3c190d654..56c1a6997 100644 --- a/src/components/Wwe.tsx +++ b/src/components/Wwe.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WweProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WweProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wwe = React.forwardRef(function Wwe({color = 'currentColor', size = 24, title = "wwe", ...others}, ref) { - const Wwe = React.forwardRef(function Wwe({color = 'currentColor', size = 24, title = "wwe", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wwe - \ No newline at end of file +export default Wwe; diff --git a/src/components/Wwise.tsx b/src/components/Wwise.tsx index 7007be4d3..5af47b7a3 100644 --- a/src/components/Wwise.tsx +++ b/src/components/Wwise.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type WwiseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type WwiseProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Wwise = React.forwardRef(function Wwise({color = 'currentColor', size = 24, title = "wwise", ...others}, ref) { - const Wwise = React.forwardRef(function Wwise({color = 'currentColor', size = 24, title = "wwise", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Wwise - \ No newline at end of file +export default Wwise; diff --git a/src/components/Xamarin.tsx b/src/components/Xamarin.tsx index ddb4cda9c..7c423f7f7 100644 --- a/src/components/Xamarin.tsx +++ b/src/components/Xamarin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XamarinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XamarinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xamarin = React.forwardRef(function Xamarin({color = 'currentColor', size = 24, title = "xamarin", ...others}, ref) { - const Xamarin = React.forwardRef(function Xamarin({color = 'currentColor', size = 24, title = "xamarin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xamarin - \ No newline at end of file +export default Xamarin; diff --git a/src/components/Xaml.tsx b/src/components/Xaml.tsx index 3cdccfc5e..08db9aa19 100644 --- a/src/components/Xaml.tsx +++ b/src/components/Xaml.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XamlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XamlProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xaml = React.forwardRef(function Xaml({color = 'currentColor', size = 24, title = "xaml", ...others}, ref) { - const Xaml = React.forwardRef(function Xaml({color = 'currentColor', size = 24, title = "xaml", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xaml - \ No newline at end of file +export default Xaml; diff --git a/src/components/Xampp.tsx b/src/components/Xampp.tsx index 43c212c63..be2612108 100644 --- a/src/components/Xampp.tsx +++ b/src/components/Xampp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XamppProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XamppProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xampp = React.forwardRef(function Xampp({color = 'currentColor', size = 24, title = "xampp", ...others}, ref) { - const Xampp = React.forwardRef(function Xampp({color = 'currentColor', size = 24, title = "xampp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xampp - \ No newline at end of file +export default Xampp; diff --git a/src/components/Xbox.tsx b/src/components/Xbox.tsx index 56e9b0c8d..d24da5452 100644 --- a/src/components/Xbox.tsx +++ b/src/components/Xbox.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XboxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xbox = React.forwardRef(function Xbox({color = 'currentColor', size = 24, title = "xbox", ...others}, ref) { - const Xbox = React.forwardRef(function Xbox({color = 'currentColor', size = 24, title = "xbox", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xbox - \ No newline at end of file +export default Xbox; diff --git a/src/components/Xcode.tsx b/src/components/Xcode.tsx index c15311d30..17980e2c0 100644 --- a/src/components/Xcode.tsx +++ b/src/components/Xcode.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XcodeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xcode = React.forwardRef(function Xcode({color = 'currentColor', size = 24, title = "xcode", ...others}, ref) { - const Xcode = React.forwardRef(function Xcode({color = 'currentColor', size = 24, title = "xcode", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xcode - \ No newline at end of file +export default Xcode; diff --git a/src/components/Xdadevelopers.tsx b/src/components/Xdadevelopers.tsx index 42b4a21e1..36ea19cc2 100644 --- a/src/components/Xdadevelopers.tsx +++ b/src/components/Xdadevelopers.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XdadevelopersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XdadevelopersProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xdadevelopers = React.forwardRef(function Xdadevelopers({color = 'currentColor', size = 24, title = "xdadevelopers", ...others}, ref) { - const Xdadevelopers = React.forwardRef(function Xdadevelopers({color = 'currentColor', size = 24, title = "xdadevelopers", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xdadevelopers - \ No newline at end of file +export default Xdadevelopers; diff --git a/src/components/Xdotorg.tsx b/src/components/Xdotorg.tsx index 635d52f4e..0ca5c4e0c 100644 --- a/src/components/Xdotorg.tsx +++ b/src/components/Xdotorg.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XdotorgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XdotorgProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xdotorg = React.forwardRef(function Xdotorg({color = 'currentColor', size = 24, title = "xdotorg", ...others}, ref) { - const Xdotorg = React.forwardRef(function Xdotorg({color = 'currentColor', size = 24, title = "xdotorg", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xdotorg - \ No newline at end of file +export default Xdotorg; diff --git a/src/components/Xero.tsx b/src/components/Xero.tsx index cae853c47..9cc064e7f 100644 --- a/src/components/Xero.tsx +++ b/src/components/Xero.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XeroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XeroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xero = React.forwardRef(function Xero({color = 'currentColor', size = 24, title = "xero", ...others}, ref) { - const Xero = React.forwardRef(function Xero({color = 'currentColor', size = 24, title = "xero", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xero - \ No newline at end of file +export default Xero; diff --git a/src/components/Xfce.tsx b/src/components/Xfce.tsx index aedd96590..5893a35ea 100644 --- a/src/components/Xfce.tsx +++ b/src/components/Xfce.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XfceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XfceProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xfce = React.forwardRef(function Xfce({color = 'currentColor', size = 24, title = "xfce", ...others}, ref) { - const Xfce = React.forwardRef(function Xfce({color = 'currentColor', size = 24, title = "xfce", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xfce - \ No newline at end of file +export default Xfce; diff --git a/src/components/Xiaomi.tsx b/src/components/Xiaomi.tsx index 1f1244508..a3f94bfb5 100644 --- a/src/components/Xiaomi.tsx +++ b/src/components/Xiaomi.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XiaomiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XiaomiProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xiaomi = React.forwardRef(function Xiaomi({color = 'currentColor', size = 24, title = "xiaomi", ...others}, ref) { - const Xiaomi = React.forwardRef(function Xiaomi({color = 'currentColor', size = 24, title = "xiaomi", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xiaomi - \ No newline at end of file +export default Xiaomi; diff --git a/src/components/Xilinx.tsx b/src/components/Xilinx.tsx index f9c26fa23..b50d18cc1 100644 --- a/src/components/Xilinx.tsx +++ b/src/components/Xilinx.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XilinxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XilinxProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xilinx = React.forwardRef(function Xilinx({color = 'currentColor', size = 24, title = "xilinx", ...others}, ref) { - const Xilinx = React.forwardRef(function Xilinx({color = 'currentColor', size = 24, title = "xilinx", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xilinx - \ No newline at end of file +export default Xilinx; diff --git a/src/components/Xing.tsx b/src/components/Xing.tsx index fb023d954..e55ddd9ec 100644 --- a/src/components/Xing.tsx +++ b/src/components/Xing.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xing = React.forwardRef(function Xing({color = 'currentColor', size = 24, title = "xing", ...others}, ref) { - const Xing = React.forwardRef(function Xing({color = 'currentColor', size = 24, title = "xing", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xing - \ No newline at end of file +export default Xing; diff --git a/src/components/Xmpp.tsx b/src/components/Xmpp.tsx index 2cb074461..1e0911748 100644 --- a/src/components/Xmpp.tsx +++ b/src/components/Xmpp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XmppProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XmppProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xmpp = React.forwardRef(function Xmpp({color = 'currentColor', size = 24, title = "xmpp", ...others}, ref) { - const Xmpp = React.forwardRef(function Xmpp({color = 'currentColor', size = 24, title = "xmpp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xmpp - \ No newline at end of file +export default Xmpp; diff --git a/src/components/Xo.tsx b/src/components/Xo.tsx index 30b58be99..4b62f48fa 100644 --- a/src/components/Xo.tsx +++ b/src/components/Xo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xo = React.forwardRef(function Xo({color = 'currentColor', size = 24, title = "xo", ...others}, ref) { - const Xo = React.forwardRef(function Xo({color = 'currentColor', size = 24, title = "xo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xo - \ No newline at end of file +export default Xo; diff --git a/src/components/Xrp.tsx b/src/components/Xrp.tsx index 94ef0f19d..fe45bdd51 100644 --- a/src/components/Xrp.tsx +++ b/src/components/Xrp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XrpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XrpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xrp = React.forwardRef(function Xrp({color = 'currentColor', size = 24, title = "xrp", ...others}, ref) { - const Xrp = React.forwardRef(function Xrp({color = 'currentColor', size = 24, title = "xrp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xrp - \ No newline at end of file +export default Xrp; diff --git a/src/components/Xsplit.tsx b/src/components/Xsplit.tsx index 8541e87a3..fa0d6d32d 100644 --- a/src/components/Xsplit.tsx +++ b/src/components/Xsplit.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XsplitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XsplitProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xsplit = React.forwardRef(function Xsplit({color = 'currentColor', size = 24, title = "xsplit", ...others}, ref) { - const Xsplit = React.forwardRef(function Xsplit({color = 'currentColor', size = 24, title = "xsplit", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xsplit - \ No newline at end of file +export default Xsplit; diff --git a/src/components/Xstate.tsx b/src/components/Xstate.tsx index 2214ffb51..fab48d2f5 100644 --- a/src/components/Xstate.tsx +++ b/src/components/Xstate.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type XstateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type XstateProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Xstate = React.forwardRef(function Xstate({color = 'currentColor', size = 24, title = "xstate", ...others}, ref) { - const Xstate = React.forwardRef(function Xstate({color = 'currentColor', size = 24, title = "xstate", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Xstate - \ No newline at end of file +export default Xstate; diff --git a/src/components/Yahoo.tsx b/src/components/Yahoo.tsx index 06ceeba9f..dc2e02324 100644 --- a/src/components/Yahoo.tsx +++ b/src/components/Yahoo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YahooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YahooProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yahoo = React.forwardRef(function Yahoo({color = 'currentColor', size = 24, title = "yahoo", ...others}, ref) { - const Yahoo = React.forwardRef(function Yahoo({color = 'currentColor', size = 24, title = "yahoo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yahoo - \ No newline at end of file +export default Yahoo; diff --git a/src/components/Yale.tsx b/src/components/Yale.tsx index 7e65b63db..422ff0114 100644 --- a/src/components/Yale.tsx +++ b/src/components/Yale.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YaleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yale = React.forwardRef(function Yale({color = 'currentColor', size = 24, title = "yale", ...others}, ref) { - const Yale = React.forwardRef(function Yale({color = 'currentColor', size = 24, title = "yale", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yale - \ No newline at end of file +export default Yale; diff --git a/src/components/Yamahacorporation.tsx b/src/components/Yamahacorporation.tsx index db98e4288..7df908ffd 100644 --- a/src/components/Yamahacorporation.tsx +++ b/src/components/Yamahacorporation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YamahacorporationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YamahacorporationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yamahacorporation = React.forwardRef(function Yamahacorporation({color = 'currentColor', size = 24, title = "yamahacorporation", ...others}, ref) { - const Yamahacorporation = React.forwardRef(function Yamahacorporation({color = 'currentColor', size = 24, title = "yamahacorporation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yamahacorporation - \ No newline at end of file +export default Yamahacorporation; diff --git a/src/components/Yamahamotorcorporation.tsx b/src/components/Yamahamotorcorporation.tsx index a8a40c52e..cd0f5e2d8 100644 --- a/src/components/Yamahamotorcorporation.tsx +++ b/src/components/Yamahamotorcorporation.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YamahamotorcorporationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YamahamotorcorporationProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yamahamotorcorporation = React.forwardRef(function Yamahamotorcorporation({color = 'currentColor', size = 24, title = "yamahamotorcorporation", ...others}, ref) { - const Yamahamotorcorporation = React.forwardRef(function Yamahamotorcorporation({color = 'currentColor', size = 24, title = "yamahamotorcorporation", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yamahamotorcorporation - \ No newline at end of file +export default Yamahamotorcorporation; diff --git a/src/components/Yammer.tsx b/src/components/Yammer.tsx index 497b761c1..a3128d981 100644 --- a/src/components/Yammer.tsx +++ b/src/components/Yammer.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YammerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YammerProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yammer = React.forwardRef(function Yammer({color = 'currentColor', size = 24, title = "yammer", ...others}, ref) { - const Yammer = React.forwardRef(function Yammer({color = 'currentColor', size = 24, title = "yammer", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yammer - \ No newline at end of file +export default Yammer; diff --git a/src/components/Yarn.tsx b/src/components/Yarn.tsx index b4ce5c052..3d6d081fe 100644 --- a/src/components/Yarn.tsx +++ b/src/components/Yarn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YarnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YarnProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yarn = React.forwardRef(function Yarn({color = 'currentColor', size = 24, title = "yarn", ...others}, ref) { - const Yarn = React.forwardRef(function Yarn({color = 'currentColor', size = 24, title = "yarn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yarn - \ No newline at end of file +export default Yarn; diff --git a/src/components/Ycombinator.tsx b/src/components/Ycombinator.tsx index 8ce75ce1b..9b0a1915c 100644 --- a/src/components/Ycombinator.tsx +++ b/src/components/Ycombinator.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YcombinatorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YcombinatorProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Ycombinator = React.forwardRef(function Ycombinator({color = 'currentColor', size = 24, title = "ycombinator", ...others}, ref) { - const Ycombinator = React.forwardRef(function Ycombinator({color = 'currentColor', size = 24, title = "ycombinator", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Ycombinator - \ No newline at end of file +export default Ycombinator; diff --git a/src/components/Yelp.tsx b/src/components/Yelp.tsx index 97b0d04cd..e93c689cd 100644 --- a/src/components/Yelp.tsx +++ b/src/components/Yelp.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YelpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YelpProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yelp = React.forwardRef(function Yelp({color = 'currentColor', size = 24, title = "yelp", ...others}, ref) { - const Yelp = React.forwardRef(function Yelp({color = 'currentColor', size = 24, title = "yelp", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yelp - \ No newline at end of file +export default Yelp; diff --git a/src/components/Yoast.tsx b/src/components/Yoast.tsx index 387274b9a..3fa9b60b2 100644 --- a/src/components/Yoast.tsx +++ b/src/components/Yoast.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YoastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YoastProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yoast = React.forwardRef(function Yoast({color = 'currentColor', size = 24, title = "yoast", ...others}, ref) { - const Yoast = React.forwardRef(function Yoast({color = 'currentColor', size = 24, title = "yoast", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yoast - \ No newline at end of file +export default Yoast; diff --git a/src/components/Yolo.tsx b/src/components/Yolo.tsx index bc5693662..40d2e8cf1 100644 --- a/src/components/Yolo.tsx +++ b/src/components/Yolo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YoloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YoloProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yolo = React.forwardRef(function Yolo({color = 'currentColor', size = 24, title = "yolo", ...others}, ref) { - const Yolo = React.forwardRef(function Yolo({color = 'currentColor', size = 24, title = "yolo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yolo - \ No newline at end of file +export default Yolo; diff --git a/src/components/Yourtraveldottv.tsx b/src/components/Yourtraveldottv.tsx index 7526bfefe..4d1819049 100644 --- a/src/components/Yourtraveldottv.tsx +++ b/src/components/Yourtraveldottv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YourtraveldottvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YourtraveldottvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yourtraveldottv = React.forwardRef(function Yourtraveldottv({color = 'currentColor', size = 24, title = "yourtraveldottv", ...others}, ref) { - const Yourtraveldottv = React.forwardRef(function Yourtraveldottv({color = 'currentColor', size = 24, title = "yourtraveldottv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yourtraveldottv - \ No newline at end of file +export default Yourtraveldottv; diff --git a/src/components/Youtube.tsx b/src/components/Youtube.tsx index 49116b454..d9b1b24b2 100644 --- a/src/components/Youtube.tsx +++ b/src/components/Youtube.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YoutubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YoutubeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Youtube = React.forwardRef(function Youtube({color = 'currentColor', size = 24, title = "youtube", ...others}, ref) { - const Youtube = React.forwardRef(function Youtube({color = 'currentColor', size = 24, title = "youtube", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Youtube - \ No newline at end of file +export default Youtube; diff --git a/src/components/Youtubegaming.tsx b/src/components/Youtubegaming.tsx index af370beef..8235048f7 100644 --- a/src/components/Youtubegaming.tsx +++ b/src/components/Youtubegaming.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YoutubegamingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YoutubegamingProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Youtubegaming = React.forwardRef(function Youtubegaming({color = 'currentColor', size = 24, title = "youtubegaming", ...others}, ref) { - const Youtubegaming = React.forwardRef(function Youtubegaming({color = 'currentColor', size = 24, title = "youtubegaming", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Youtubegaming - \ No newline at end of file +export default Youtubegaming; diff --git a/src/components/Youtubemusic.tsx b/src/components/Youtubemusic.tsx index 0300541ef..d9291633f 100644 --- a/src/components/Youtubemusic.tsx +++ b/src/components/Youtubemusic.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YoutubemusicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YoutubemusicProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Youtubemusic = React.forwardRef(function Youtubemusic({color = 'currentColor', size = 24, title = "youtubemusic", ...others}, ref) { - const Youtubemusic = React.forwardRef(function Youtubemusic({color = 'currentColor', size = 24, title = "youtubemusic", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Youtubemusic - \ No newline at end of file +export default Youtubemusic; diff --git a/src/components/Youtubestudio.tsx b/src/components/Youtubestudio.tsx index a60145f3b..19e4c58c7 100644 --- a/src/components/Youtubestudio.tsx +++ b/src/components/Youtubestudio.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YoutubestudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YoutubestudioProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Youtubestudio = React.forwardRef(function Youtubestudio({color = 'currentColor', size = 24, title = "youtubestudio", ...others}, ref) { - const Youtubestudio = React.forwardRef(function Youtubestudio({color = 'currentColor', size = 24, title = "youtubestudio", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Youtubestudio - \ No newline at end of file +export default Youtubestudio; diff --git a/src/components/Youtubetv.tsx b/src/components/Youtubetv.tsx index 9c200ba62..94169ccf3 100644 --- a/src/components/Youtubetv.tsx +++ b/src/components/Youtubetv.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YoutubetvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YoutubetvProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Youtubetv = React.forwardRef(function Youtubetv({color = 'currentColor', size = 24, title = "youtubetv", ...others}, ref) { - const Youtubetv = React.forwardRef(function Youtubetv({color = 'currentColor', size = 24, title = "youtubetv", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Youtubetv - \ No newline at end of file +export default Youtubetv; diff --git a/src/components/Yubico.tsx b/src/components/Yubico.tsx index 9cb1e3f00..57e37b3b0 100644 --- a/src/components/Yubico.tsx +++ b/src/components/Yubico.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type YubicoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type YubicoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Yubico = React.forwardRef(function Yubico({color = 'currentColor', size = 24, title = "yubico", ...others}, ref) { - const Yubico = React.forwardRef(function Yubico({color = 'currentColor', size = 24, title = "yubico", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Yubico - \ No newline at end of file +export default Yubico; diff --git a/src/components/Zabka.tsx b/src/components/Zabka.tsx index c4ee8f474..13934a862 100644 --- a/src/components/Zabka.tsx +++ b/src/components/Zabka.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZabkaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZabkaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zabka = React.forwardRef(function Zabka({color = 'currentColor', size = 24, title = "zabka", ...others}, ref) { - const Zabka = React.forwardRef(function Zabka({color = 'currentColor', size = 24, title = "zabka", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zabka - \ No newline at end of file +export default Zabka; diff --git a/src/components/Zalando.tsx b/src/components/Zalando.tsx index f4cd36461..a76905823 100644 --- a/src/components/Zalando.tsx +++ b/src/components/Zalando.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZalandoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZalandoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zalando = React.forwardRef(function Zalando({color = 'currentColor', size = 24, title = "zalando", ...others}, ref) { - const Zalando = React.forwardRef(function Zalando({color = 'currentColor', size = 24, title = "zalando", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zalando - \ No newline at end of file +export default Zalando; diff --git a/src/components/Zalo.tsx b/src/components/Zalo.tsx index 1d317006a..23f90365c 100644 --- a/src/components/Zalo.tsx +++ b/src/components/Zalo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZaloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZaloProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zalo = React.forwardRef(function Zalo({color = 'currentColor', size = 24, title = "zalo", ...others}, ref) { - const Zalo = React.forwardRef(function Zalo({color = 'currentColor', size = 24, title = "zalo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zalo - \ No newline at end of file +export default Zalo; diff --git a/src/components/Zapier.tsx b/src/components/Zapier.tsx index 465aaed0a..7120bc049 100644 --- a/src/components/Zapier.tsx +++ b/src/components/Zapier.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZapierProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZapierProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zapier = React.forwardRef(function Zapier({color = 'currentColor', size = 24, title = "zapier", ...others}, ref) { - const Zapier = React.forwardRef(function Zapier({color = 'currentColor', size = 24, title = "zapier", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zapier - \ No newline at end of file +export default Zapier; diff --git a/src/components/Zara.tsx b/src/components/Zara.tsx index c5316c87f..f4a548e08 100644 --- a/src/components/Zara.tsx +++ b/src/components/Zara.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZaraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZaraProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zara = React.forwardRef(function Zara({color = 'currentColor', size = 24, title = "zara", ...others}, ref) { - const Zara = React.forwardRef(function Zara({color = 'currentColor', size = 24, title = "zara", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zara - \ No newline at end of file +export default Zara; diff --git a/src/components/Zazzle.tsx b/src/components/Zazzle.tsx index bf96361b4..a2dc81d2e 100644 --- a/src/components/Zazzle.tsx +++ b/src/components/Zazzle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZazzleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZazzleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zazzle = React.forwardRef(function Zazzle({color = 'currentColor', size = 24, title = "zazzle", ...others}, ref) { - const Zazzle = React.forwardRef(function Zazzle({color = 'currentColor', size = 24, title = "zazzle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zazzle - \ No newline at end of file +export default Zazzle; diff --git a/src/components/Zcash.tsx b/src/components/Zcash.tsx index 439598d37..e8681889a 100644 --- a/src/components/Zcash.tsx +++ b/src/components/Zcash.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZcashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZcashProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zcash = React.forwardRef(function Zcash({color = 'currentColor', size = 24, title = "zcash", ...others}, ref) { - const Zcash = React.forwardRef(function Zcash({color = 'currentColor', size = 24, title = "zcash", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zcash - \ No newline at end of file +export default Zcash; diff --git a/src/components/Zdf.tsx b/src/components/Zdf.tsx index 9909c37ee..5392680f3 100644 --- a/src/components/Zdf.tsx +++ b/src/components/Zdf.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZdfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZdfProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zdf = React.forwardRef(function Zdf({color = 'currentColor', size = 24, title = "zdf", ...others}, ref) { - const Zdf = React.forwardRef(function Zdf({color = 'currentColor', size = 24, title = "zdf", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zdf - \ No newline at end of file +export default Zdf; diff --git a/src/components/Zebratechnologies.tsx b/src/components/Zebratechnologies.tsx index 839281700..02ba9c985 100644 --- a/src/components/Zebratechnologies.tsx +++ b/src/components/Zebratechnologies.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZebratechnologiesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZebratechnologiesProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zebratechnologies = React.forwardRef(function Zebratechnologies({color = 'currentColor', size = 24, title = "zebratechnologies", ...others}, ref) { - const Zebratechnologies = React.forwardRef(function Zebratechnologies({color = 'currentColor', size = 24, title = "zebratechnologies", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zebratechnologies - \ No newline at end of file +export default Zebratechnologies; diff --git a/src/components/Zelle.tsx b/src/components/Zelle.tsx index 988bdac9a..0b8cf9b49 100644 --- a/src/components/Zelle.tsx +++ b/src/components/Zelle.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZelleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZelleProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zelle = React.forwardRef(function Zelle({color = 'currentColor', size = 24, title = "zelle", ...others}, ref) { - const Zelle = React.forwardRef(function Zelle({color = 'currentColor', size = 24, title = "zelle", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zelle - \ No newline at end of file +export default Zelle; diff --git a/src/components/Zend.tsx b/src/components/Zend.tsx index e9fe21dbb..73fad2d98 100644 --- a/src/components/Zend.tsx +++ b/src/components/Zend.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZendProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZendProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zend = React.forwardRef(function Zend({color = 'currentColor', size = 24, title = "zend", ...others}, ref) { - const Zend = React.forwardRef(function Zend({color = 'currentColor', size = 24, title = "zend", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zend - \ No newline at end of file +export default Zend; diff --git a/src/components/Zendesk.tsx b/src/components/Zendesk.tsx index db3c5b974..c035e8859 100644 --- a/src/components/Zendesk.tsx +++ b/src/components/Zendesk.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZendeskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZendeskProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zendesk = React.forwardRef(function Zendesk({color = 'currentColor', size = 24, title = "zendesk", ...others}, ref) { - const Zendesk = React.forwardRef(function Zendesk({color = 'currentColor', size = 24, title = "zendesk", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zendesk - \ No newline at end of file +export default Zendesk; diff --git a/src/components/Zendframework.tsx b/src/components/Zendframework.tsx index 1603ca26c..67ce96b93 100644 --- a/src/components/Zendframework.tsx +++ b/src/components/Zendframework.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZendframeworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZendframeworkProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zendframework = React.forwardRef(function Zendframework({color = 'currentColor', size = 24, title = "zendframework", ...others}, ref) { - const Zendframework = React.forwardRef(function Zendframework({color = 'currentColor', size = 24, title = "zendframework", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zendframework - \ No newline at end of file +export default Zendframework; diff --git a/src/components/Zenn.tsx b/src/components/Zenn.tsx index 574c1b9cc..5a1e176d2 100644 --- a/src/components/Zenn.tsx +++ b/src/components/Zenn.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZennProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZennProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zenn = React.forwardRef(function Zenn({color = 'currentColor', size = 24, title = "zenn", ...others}, ref) { - const Zenn = React.forwardRef(function Zenn({color = 'currentColor', size = 24, title = "zenn", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zenn - \ No newline at end of file +export default Zenn; diff --git a/src/components/Zenodo.tsx b/src/components/Zenodo.tsx index bceed0a66..c6eed121c 100644 --- a/src/components/Zenodo.tsx +++ b/src/components/Zenodo.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZenodoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZenodoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zenodo = React.forwardRef(function Zenodo({color = 'currentColor', size = 24, title = "zenodo", ...others}, ref) { - const Zenodo = React.forwardRef(function Zenodo({color = 'currentColor', size = 24, title = "zenodo", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zenodo - \ No newline at end of file +export default Zenodo; diff --git a/src/components/Zerodha.tsx b/src/components/Zerodha.tsx index 78dfc8ac0..9d679ee9f 100644 --- a/src/components/Zerodha.tsx +++ b/src/components/Zerodha.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZerodhaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZerodhaProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zerodha = React.forwardRef(function Zerodha({color = 'currentColor', size = 24, title = "zerodha", ...others}, ref) { - const Zerodha = React.forwardRef(function Zerodha({color = 'currentColor', size = 24, title = "zerodha", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zerodha - \ No newline at end of file +export default Zerodha; diff --git a/src/components/Zeromq.tsx b/src/components/Zeromq.tsx index 1144eafe4..54e05ac5d 100644 --- a/src/components/Zeromq.tsx +++ b/src/components/Zeromq.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZeromqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZeromqProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zeromq = React.forwardRef(function Zeromq({color = 'currentColor', size = 24, title = "zeromq", ...others}, ref) { - const Zeromq = React.forwardRef(function Zeromq({color = 'currentColor', size = 24, title = "zeromq", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zeromq - \ No newline at end of file +export default Zeromq; diff --git a/src/components/Zerply.tsx b/src/components/Zerply.tsx index 54cb92a3f..4a052ba66 100644 --- a/src/components/Zerply.tsx +++ b/src/components/Zerply.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZerplyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZerplyProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zerply = React.forwardRef(function Zerply({color = 'currentColor', size = 24, title = "zerply", ...others}, ref) { - const Zerply = React.forwardRef(function Zerply({color = 'currentColor', size = 24, title = "zerply", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zerply - \ No newline at end of file +export default Zerply; diff --git a/src/components/Zettlr.tsx b/src/components/Zettlr.tsx index 24a3b4cdd..d622af413 100644 --- a/src/components/Zettlr.tsx +++ b/src/components/Zettlr.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZettlrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZettlrProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zettlr = React.forwardRef(function Zettlr({color = 'currentColor', size = 24, title = "zettlr", ...others}, ref) { - const Zettlr = React.forwardRef(function Zettlr({color = 'currentColor', size = 24, title = "zettlr", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zettlr - \ No newline at end of file +export default Zettlr; diff --git a/src/components/Zhihu.tsx b/src/components/Zhihu.tsx index 71c95d0ae..78c40b5ec 100644 --- a/src/components/Zhihu.tsx +++ b/src/components/Zhihu.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZhihuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZhihuProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zhihu = React.forwardRef(function Zhihu({color = 'currentColor', size = 24, title = "zhihu", ...others}, ref) { - const Zhihu = React.forwardRef(function Zhihu({color = 'currentColor', size = 24, title = "zhihu", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zhihu - \ No newline at end of file +export default Zhihu; diff --git a/src/components/Zig.tsx b/src/components/Zig.tsx index 7927cc2ea..d30cfe12c 100644 --- a/src/components/Zig.tsx +++ b/src/components/Zig.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZigProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zig = React.forwardRef(function Zig({color = 'currentColor', size = 24, title = "zig", ...others}, ref) { - const Zig = React.forwardRef(function Zig({color = 'currentColor', size = 24, title = "zig", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zig - \ No newline at end of file +export default Zig; diff --git a/src/components/Zigbee.tsx b/src/components/Zigbee.tsx index 727f6662f..4a32ee85c 100644 --- a/src/components/Zigbee.tsx +++ b/src/components/Zigbee.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZigbeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZigbeeProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zigbee = React.forwardRef(function Zigbee({color = 'currentColor', size = 24, title = "zigbee", ...others}, ref) { - const Zigbee = React.forwardRef(function Zigbee({color = 'currentColor', size = 24, title = "zigbee", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zigbee - \ No newline at end of file +export default Zigbee; diff --git a/src/components/Zillow.tsx b/src/components/Zillow.tsx index 5c8e0b194..86270fc7d 100644 --- a/src/components/Zillow.tsx +++ b/src/components/Zillow.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZillowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZillowProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zillow = React.forwardRef(function Zillow({color = 'currentColor', size = 24, title = "zillow", ...others}, ref) { - const Zillow = React.forwardRef(function Zillow({color = 'currentColor', size = 24, title = "zillow", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zillow - \ No newline at end of file +export default Zillow; diff --git a/src/components/Zincsearch.tsx b/src/components/Zincsearch.tsx new file mode 100644 index 000000000..f82c7bff6 --- /dev/null +++ b/src/components/Zincsearch.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type ZincsearchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Zincsearch = React.forwardRef(function Zincsearch({color = 'currentColor', size = 24, title = "zincsearch", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Zincsearch; diff --git a/src/components/Zingat.tsx b/src/components/Zingat.tsx index 742c58511..c0e502200 100644 --- a/src/components/Zingat.tsx +++ b/src/components/Zingat.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZingatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZingatProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zingat = React.forwardRef(function Zingat({color = 'currentColor', size = 24, title = "zingat", ...others}, ref) { - const Zingat = React.forwardRef(function Zingat({color = 'currentColor', size = 24, title = "zingat", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zingat - \ No newline at end of file +export default Zingat; diff --git a/src/components/Zoho.tsx b/src/components/Zoho.tsx index a738303f0..5e6e4fa34 100644 --- a/src/components/Zoho.tsx +++ b/src/components/Zoho.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZohoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZohoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zoho = React.forwardRef(function Zoho({color = 'currentColor', size = 24, title = "zoho", ...others}, ref) { - const Zoho = React.forwardRef(function Zoho({color = 'currentColor', size = 24, title = "zoho", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zoho - \ No newline at end of file +export default Zoho; diff --git a/src/components/Zoiper.tsx b/src/components/Zoiper.tsx index b38aa03f1..181f00f7c 100644 --- a/src/components/Zoiper.tsx +++ b/src/components/Zoiper.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZoiperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZoiperProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zoiper = React.forwardRef(function Zoiper({color = 'currentColor', size = 24, title = "zoiper", ...others}, ref) { - const Zoiper = React.forwardRef(function Zoiper({color = 'currentColor', size = 24, title = "zoiper", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zoiper - \ No newline at end of file +export default Zoiper; diff --git a/src/components/Zomato.tsx b/src/components/Zomato.tsx index 719661ff7..965487b38 100644 --- a/src/components/Zomato.tsx +++ b/src/components/Zomato.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZomatoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZomatoProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zomato = React.forwardRef(function Zomato({color = 'currentColor', size = 24, title = "zomato", ...others}, ref) { - const Zomato = React.forwardRef(function Zomato({color = 'currentColor', size = 24, title = "zomato", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zomato - \ No newline at end of file +export default Zomato; diff --git a/src/components/Zoom.tsx b/src/components/Zoom.tsx index f9fae913c..1ce09b13d 100644 --- a/src/components/Zoom.tsx +++ b/src/components/Zoom.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZoomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZoomProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zoom = React.forwardRef(function Zoom({color = 'currentColor', size = 24, title = "zoom", ...others}, ref) { - const Zoom = React.forwardRef(function Zoom({color = 'currentColor', size = 24, title = "zoom", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zoom - \ No newline at end of file +export default Zoom; diff --git a/src/components/Zorin.tsx b/src/components/Zorin.tsx index 54cd80c3f..18e2014bb 100644 --- a/src/components/Zorin.tsx +++ b/src/components/Zorin.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZorinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZorinProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zorin = React.forwardRef(function Zorin({color = 'currentColor', size = 24, title = "zorin", ...others}, ref) { - const Zorin = React.forwardRef(function Zorin({color = 'currentColor', size = 24, title = "zorin", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zorin - \ No newline at end of file +export default Zorin; diff --git a/src/components/Zotero.tsx b/src/components/Zotero.tsx index 65cff711b..d1b1caf93 100644 --- a/src/components/Zotero.tsx +++ b/src/components/Zotero.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZoteroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZoteroProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zotero = React.forwardRef(function Zotero({color = 'currentColor', size = 24, title = "zotero", ...others}, ref) { - const Zotero = React.forwardRef(function Zotero({color = 'currentColor', size = 24, title = "zotero", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zotero - \ No newline at end of file +export default Zotero; diff --git a/src/components/Zulip.tsx b/src/components/Zulip.tsx index 74ae411b9..34757def7 100644 --- a/src/components/Zulip.tsx +++ b/src/components/Zulip.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZulipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZulipProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zulip = React.forwardRef(function Zulip({color = 'currentColor', size = 24, title = "zulip", ...others}, ref) { - const Zulip = React.forwardRef(function Zulip({color = 'currentColor', size = 24, title = "zulip", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zulip - \ No newline at end of file +export default Zulip; diff --git a/src/components/Zwave.tsx b/src/components/Zwave.tsx index a36a84ca2..2c45d935b 100644 --- a/src/components/Zwave.tsx +++ b/src/components/Zwave.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZwaveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZwaveProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zwave = React.forwardRef(function Zwave({color = 'currentColor', size = 24, title = "zwave", ...others}, ref) { - const Zwave = React.forwardRef(function Zwave({color = 'currentColor', size = 24, title = "zwave", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zwave - \ No newline at end of file +export default Zwave; diff --git a/src/components/Zyte.tsx b/src/components/Zyte.tsx index d844b0d9f..cff63c77d 100644 --- a/src/components/Zyte.tsx +++ b/src/components/Zyte.tsx @@ -1,30 +1,28 @@ +import * as React from 'react'; - import * as React from 'react'; +export type ZyteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; - export type ZyteProps = React.ComponentPropsWithoutRef<'svg'> & { - /** - * Hex color or color name - */ - title?: string; - /** - * The size of the Icon. - */ - color?: string; - /** - * The title provides an accessible short text description to the SVG - */ - size?: string | number; - }; +const Zyte = React.forwardRef(function Zyte({color = 'currentColor', size = 24, title = "zyte", ...others}, ref) { - const Zyte = React.forwardRef(function Zyte({color = 'currentColor', size = 24, title = "zyte", ...others}, ref) { + return ( + + {title} + + + ); +}); - return ( - - {title} - - - ); - }); - - export default Zyte - \ No newline at end of file +export default Zyte; diff --git a/src/index.ts b/src/index.ts index d541acf3c..5a7c655c7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,8 +3,8 @@ export { default as Dotenv } from './components/Dotenv'; export { default as Dotnet } from './components/Dotnet'; export { default as E } from './components/E'; export { default as OneThousandOneTracklists } from './components/OneThousandOneTracklists'; -export { default as ThreeM } from './components/ThreeM'; export { default as OnePassword } from './components/OnePassword'; +export { default as ThreeM } from './components/ThreeM'; export { default as FourChan } from './components/FourChan'; export { default as FourD } from './components/FourD'; export { default as FiveHundredPx } from './components/FiveHundredPx'; @@ -29,6 +29,7 @@ export { default as Adblockplus } from './components/Adblockplus'; export { default as Addthis } from './components/Addthis'; export { default as Adguard } from './components/Adguard'; export { default as Adidas } from './components/Adidas'; +export { default as Adminer } from './components/Adminer'; export { default as Adobe } from './components/Adobe'; export { default as Adobeacrobatreader } from './components/Adobeacrobatreader'; export { default as Adobeaftereffects } from './components/Adobeaftereffects'; @@ -54,6 +55,7 @@ export { default as Affinity } from './components/Affinity'; export { default as Affinitydesigner } from './components/Affinitydesigner'; export { default as Affinityphoto } from './components/Affinityphoto'; export { default as Affinitypublisher } from './components/Affinitypublisher'; +export { default as Agora } from './components/Agora'; export { default as Aidungeon } from './components/Aidungeon'; export { default as Aib } from './components/Aib'; export { default as Aiohttp } from './components/Aiohttp'; @@ -77,6 +79,7 @@ export { default as Aldisud } from './components/Aldisud'; export { default as Alfaromeo } from './components/Alfaromeo'; export { default as Alfred } from './components/Alfred'; export { default as Algolia } from './components/Algolia'; +export { default as Algorand } from './components/Algorand'; export { default as Alibabacloud } from './components/Alibabacloud'; export { default as Alibabadotcom } from './components/Alibabadotcom'; export { default as Aliexpress } from './components/Aliexpress'; @@ -99,15 +102,19 @@ export { default as AmazonecTwo } from './components/AmazonecTwo'; export { default as Amazonecs } from './components/Amazonecs'; export { default as Amazoneks } from './components/Amazoneks'; export { default as Amazonfiretv } from './components/Amazonfiretv'; +export { default as Amazongames } from './components/Amazongames'; export { default as Amazonlumberyard } from './components/Amazonlumberyard'; -export { default as Amazonprime } from './components/Amazonprime'; export { default as Amazonpay } from './components/Amazonpay'; -export { default as AmazonsThree } from './components/AmazonsThree'; +export { default as Amazonprime } from './components/Amazonprime'; export { default as Amazonrds } from './components/Amazonrds'; +export { default as AmazonsThree } from './components/AmazonsThree'; export { default as Amazonsqs } from './components/Amazonsqs'; export { default as Amd } from './components/Amd'; export { default as Americanairlines } from './components/Americanairlines'; export { default as Americanexpress } from './components/Americanexpress'; +export { default as Amg } from './components/Amg'; +export { default as Amp } from './components/Amp'; +export { default as Amul } from './components/Amul'; export { default as Ana } from './components/Ana'; export { default as Anaconda } from './components/Anaconda'; export { default as Analogue } from './components/Analogue'; @@ -161,6 +168,7 @@ export { default as Appian } from './components/Appian'; export { default as Apple } from './components/Apple'; export { default as Applearcade } from './components/Applearcade'; export { default as Applemusic } from './components/Applemusic'; +export { default as Applenews } from './components/Applenews'; export { default as Applepay } from './components/Applepay'; export { default as Applepodcasts } from './components/Applepodcasts'; export { default as Appletv } from './components/Appletv'; @@ -174,8 +182,8 @@ export { default as Archlinux } from './components/Archlinux'; export { default as Archicad } from './components/Archicad'; export { default as Archiveofourown } from './components/Archiveofourown'; export { default as Ardour } from './components/Ardour'; -export { default as Argo } from './components/Argo'; export { default as Arduino } from './components/Arduino'; +export { default as Argo } from './components/Argo'; export { default as Argos } from './components/Argos'; export { default as Arkecosystem } from './components/Arkecosystem'; export { default as Arlo } from './components/Arlo'; @@ -184,8 +192,8 @@ export { default as Artifacthub } from './components/Artifacthub'; export { default as Artixlinux } from './components/Artixlinux'; export { default as Artstation } from './components/Artstation'; export { default as Arxiv } from './components/Arxiv'; -export { default as Asciidoctor } from './components/Asciidoctor'; export { default as Asana } from './components/Asana'; +export { default as Asciidoctor } from './components/Asciidoctor'; export { default as Asciinema } from './components/Asciinema'; export { default as Asda } from './components/Asda'; export { default as Aseprite } from './components/Aseprite'; @@ -233,8 +241,8 @@ export { default as Backendless } from './components/Backendless'; export { default as Badgr } from './components/Badgr'; export { default as Badoo } from './components/Badoo'; export { default as Baidu } from './components/Baidu'; -export { default as Bandcamp } from './components/Bandcamp'; export { default as Bamboo } from './components/Bamboo'; +export { default as Bandcamp } from './components/Bandcamp'; export { default as Bandlab } from './components/Bandlab'; export { default as Bandsintown } from './components/Bandsintown'; export { default as Bankofamerica } from './components/Bankofamerica'; @@ -245,12 +253,12 @@ export { default as Bastyon } from './components/Bastyon'; export { default as Bata } from './components/Bata'; export { default as Bathasu } from './components/Bathasu'; export { default as Battledotnet } from './components/Battledotnet'; -export { default as Bbciplayer } from './components/Bbciplayer'; export { default as Bbc } from './components/Bbc'; +export { default as Bbciplayer } from './components/Bbciplayer'; export { default as Beatport } from './components/Beatport'; export { default as Beats } from './components/Beats'; -export { default as Behance } from './components/Behance'; export { default as Beatsbydre } from './components/Beatsbydre'; +export { default as Behance } from './components/Behance'; export { default as Beijingsubway } from './components/Beijingsubway'; export { default as Bem } from './components/Bem'; export { default as Bentley } from './components/Bentley'; @@ -273,8 +281,8 @@ export { default as Bitrise } from './components/Bitrise'; export { default as Bitwarden } from './components/Bitwarden'; export { default as Bitwig } from './components/Bitwig'; export { default as Blackberry } from './components/Blackberry'; -export { default as Blazor } from './components/Blazor'; export { default as Blazemeter } from './components/Blazemeter'; +export { default as Blazor } from './components/Blazor'; export { default as Blender } from './components/Blender'; export { default as Blockchaindotcom } from './components/Blockchaindotcom'; export { default as Blogger } from './components/Blogger'; @@ -294,8 +302,8 @@ export { default as Boost } from './components/Boost'; export { default as Boots } from './components/Boots'; export { default as Bootstrap } from './components/Bootstrap'; export { default as Borgbackup } from './components/Borgbackup'; -export { default as Bose } from './components/Bose'; export { default as Bosch } from './components/Bosch'; +export { default as Bose } from './components/Bose'; export { default as Boulanger } from './components/Boulanger'; export { default as Bower } from './components/Bower'; export { default as Box } from './components/Box'; @@ -319,8 +327,8 @@ export { default as Bulma } from './components/Bulma'; export { default as Bun } from './components/Bun'; export { default as Bunq } from './components/Bunq'; export { default as Burgerking } from './components/Burgerking'; -export { default as Buymeacoffee } from './components/Buymeacoffee'; export { default as Burton } from './components/Burton'; +export { default as Buymeacoffee } from './components/Buymeacoffee'; export { default as Buzzfeed } from './components/Buzzfeed'; export { default as Byjus } from './components/Byjus'; export { default as Byte } from './components/Byte'; @@ -329,6 +337,7 @@ export { default as C } from './components/C'; export { default as Csharp } from './components/Csharp'; export { default as Cplusplus } from './components/Cplusplus'; export { default as Cachet } from './components/Cachet'; +export { default as Cafepress } from './components/Cafepress'; export { default as Caffeine } from './components/Caffeine'; export { default as Cairometro } from './components/Cairometro'; export { default as Cakephp } from './components/Cakephp'; @@ -357,8 +366,8 @@ export { default as Chartdotjs } from './components/Chartdotjs'; export { default as Chartmogul } from './components/Chartmogul'; export { default as Chase } from './components/Chase'; export { default as Chatbot } from './components/Chatbot'; -export { default as Checkmarx } from './components/Checkmarx'; export { default as Checkio } from './components/Checkio'; +export { default as Checkmarx } from './components/Checkmarx'; export { default as Chef } from './components/Chef'; export { default as Chemex } from './components/Chemex'; export { default as Chevrolet } from './components/Chevrolet'; @@ -376,8 +385,8 @@ export { default as Cirrusci } from './components/Cirrusci'; export { default as Cisco } from './components/Cisco'; export { default as Citrix } from './components/Citrix'; export { default as Citroen } from './components/Citroen'; -export { default as Civo } from './components/Civo'; export { default as Civicrm } from './components/Civicrm'; +export { default as Civo } from './components/Civo'; export { default as CkeditorFour } from './components/CkeditorFour'; export { default as Claris } from './components/Claris'; export { default as Clickhouse } from './components/Clickhouse'; @@ -397,10 +406,10 @@ export { default as Cloudsmith } from './components/Cloudsmith'; export { default as Cloudways } from './components/Cloudways'; export { default as Clubhouse } from './components/Clubhouse'; export { default as Clyp } from './components/Clyp'; -export { default as Cncf } from './components/Cncf'; export { default as Cmake } from './components/Cmake'; -export { default as Coop } from './components/Coop'; +export { default as Cncf } from './components/Cncf'; export { default as Cnn } from './components/Cnn'; +export { default as Coop } from './components/Coop'; export { default as Cockpit } from './components/Cockpit'; export { default as Cockroachlabs } from './components/Cockroachlabs'; export { default as Cocoapods } from './components/Cocoapods'; @@ -427,8 +436,8 @@ export { default as Coderwall } from './components/Coderwall'; export { default as Codesandbox } from './components/Codesandbox'; export { default as Codeship } from './components/Codeship'; export { default as Codewars } from './components/Codewars'; -export { default as Codingame } from './components/Codingame'; export { default as Codingninjas } from './components/Codingninjas'; +export { default as Codingame } from './components/Codingame'; export { default as Codio } from './components/Codio'; export { default as Coffeescript } from './components/Coffeescript'; export { default as Cognizant } from './components/Cognizant'; @@ -436,8 +445,9 @@ export { default as Coil } from './components/Coil'; export { default as Coinbase } from './components/Coinbase'; export { default as Coinmarketcap } from './components/Coinmarketcap'; export { default as Commerzbank } from './components/Commerzbank'; -export { default as Commonworkflowlanguage } from './components/Commonworkflowlanguage'; export { default as Commitlint } from './components/Commitlint'; +export { default as Commodore } from './components/Commodore'; +export { default as Commonworkflowlanguage } from './components/Commonworkflowlanguage'; export { default as Composer } from './components/Composer'; export { default as Comsol } from './components/Comsol'; export { default as Conan } from './components/Conan'; @@ -506,10 +516,11 @@ export { default as Dataversioncontrol } from './components/Dataversioncontrol'; export { default as Datadotai } from './components/Datadotai'; export { default as Databricks } from './components/Databricks'; export { default as Datacamp } from './components/Datacamp'; -export { default as Datagrip } from './components/Datagrip'; export { default as Datadog } from './components/Datadog'; +export { default as Datagrip } from './components/Datagrip'; export { default as Dataiku } from './components/Dataiku'; export { default as Datastax } from './components/Datastax'; +export { default as Dataverse } from './components/Dataverse'; export { default as Datocms } from './components/Datocms'; export { default as Datto } from './components/Datto'; export { default as Dazn } from './components/Dazn'; @@ -544,8 +555,8 @@ export { default as Dialogflow } from './components/Dialogflow'; export { default as Diaspora } from './components/Diaspora'; export { default as Digg } from './components/Digg'; export { default as Digikeyelectronics } from './components/Digikeyelectronics'; -export { default as Dior } from './components/Dior'; export { default as Digitalocean } from './components/Digitalocean'; +export { default as Dior } from './components/Dior'; export { default as Directus } from './components/Directus'; export { default as Discogs } from './components/Discogs'; export { default as Discord } from './components/Discord'; @@ -577,14 +588,14 @@ export { default as Dsautomobiles } from './components/Dsautomobiles'; export { default as Dtube } from './components/Dtube'; export { default as Ducati } from './components/Ducati'; export { default as Duckdb } from './components/Duckdb'; -export { default as Dungeonsanddragons } from './components/Dungeonsanddragons'; export { default as Duckduckgo } from './components/Duckduckgo'; +export { default as Dungeonsanddragons } from './components/Dungeonsanddragons'; export { default as Dunked } from './components/Dunked'; export { default as Duolingo } from './components/Duolingo'; export { default as Dvc } from './components/Dvc'; export { default as Dwm } from './components/Dwm'; -export { default as Dynatrace } from './components/Dynatrace'; export { default as DynamicsThreeHundredSixtyFive } from './components/DynamicsThreeHundredSixtyFive'; +export { default as Dynatrace } from './components/Dynatrace'; export { default as Edotleclerc } from './components/Edotleclerc'; export { default as Ea } from './components/Ea'; export { default as Eagle } from './components/Eagle'; @@ -607,6 +618,7 @@ export { default as Elasticcloud } from './components/Elasticcloud'; export { default as Elasticstack } from './components/Elasticstack'; export { default as Elasticsearch } from './components/Elasticsearch'; export { default as Electron } from './components/Electron'; +export { default as Electronfiddle } from './components/Electronfiddle'; export { default as Electronbuilder } from './components/Electronbuilder'; export { default as Element } from './components/Element'; export { default as Elementary } from './components/Elementary'; @@ -624,10 +636,10 @@ export { default as Emlakjet } from './components/Emlakjet'; export { default as Empirekred } from './components/Empirekred'; export { default as Enpass } from './components/Enpass'; export { default as Enterprisedb } from './components/Enterprisedb'; -export { default as Epel } from './components/Epel'; export { default as Envato } from './components/Envato'; -export { default as Epson } from './components/Epson'; +export { default as Epel } from './components/Epel'; export { default as Epicgames } from './components/Epicgames'; +export { default as Epson } from './components/Epson'; export { default as Equinixmetal } from './components/Equinixmetal'; export { default as Erlang } from './components/Erlang'; export { default as Esbuild } from './components/Esbuild'; @@ -666,6 +678,8 @@ export { default as Falcon } from './components/Falcon'; export { default as Fampay } from './components/Fampay'; export { default as Fandango } from './components/Fandango'; export { default as Fandom } from './components/Fandom'; +export { default as Fanfou } from './components/Fanfou'; +export { default as Fantom } from './components/Fantom'; export { default as Farfetch } from './components/Farfetch'; export { default as Fastapi } from './components/Fastapi'; export { default as Fastify } from './components/Fastify'; @@ -689,8 +703,8 @@ export { default as Figshare } from './components/Figshare'; export { default as Fila } from './components/Fila'; export { default as Files } from './components/Files'; export { default as Filezilla } from './components/Filezilla'; -export { default as Firebase } from './components/Firebase'; export { default as Fing } from './components/Fing'; +export { default as Firebase } from './components/Firebase'; export { default as Firefox } from './components/Firefox'; export { default as Firefoxbrowser } from './components/Firefoxbrowser'; export { default as First } from './components/First'; @@ -733,8 +747,8 @@ export { default as Fozzy } from './components/Fozzy'; export { default as Framer } from './components/Framer'; export { default as Framework7 } from './components/Framework7'; export { default as Franprix } from './components/Franprix'; -export { default as Freebsd } from './components/Freebsd'; export { default as Fraunhofergesellschaft } from './components/Fraunhofergesellschaft'; +export { default as Freebsd } from './components/Freebsd'; export { default as Freecodecamp } from './components/Freecodecamp'; export { default as Freedesktopdotorg } from './components/Freedesktopdotorg'; export { default as Freelancer } from './components/Freelancer'; @@ -750,8 +764,9 @@ export { default as Futurelearn } from './components/Futurelearn'; export { default as GTwo } from './components/GTwo'; export { default as GTwoA } from './components/GTwoA'; export { default as Gameandwatch } from './components/Gameandwatch'; -export { default as Garmin } from './components/Garmin'; +export { default as Gamedeveloper } from './components/Gamedeveloper'; export { default as Gamejolt } from './components/Gamejolt'; +export { default as Garmin } from './components/Garmin'; export { default as Gatling } from './components/Gatling'; export { default as Gatsby } from './components/Gatsby'; export { default as Geant } from './components/Geant'; @@ -802,10 +817,10 @@ export { default as Gogdotcom } from './components/Gogdotcom'; export { default as Goland } from './components/Goland'; export { default as Goldenline } from './components/Goldenline'; export { default as Goodreads } from './components/Goodreads'; -export { default as Googleadmob } from './components/Googleadmob'; export { default as Google } from './components/Google'; -export { default as Googleadsense } from './components/Googleadsense'; +export { default as Googleadmob } from './components/Googleadmob'; export { default as Googleads } from './components/Googleads'; +export { default as Googleadsense } from './components/Googleadsense'; export { default as Googleanalytics } from './components/Googleanalytics'; export { default as Googleassistant } from './components/Googleassistant'; export { default as Googlecalendar } from './components/Googlecalendar'; @@ -821,13 +836,14 @@ export { default as Googleearth } from './components/Googleearth'; export { default as Googlefit } from './components/Googlefit'; export { default as Googlefonts } from './components/Googlefonts'; export { default as Googlehangouts } from './components/Googlehangouts'; +export { default as Googlehome } from './components/Googlehome'; export { default as Googlekeep } from './components/Googlekeep'; -export { default as Googlemaps } from './components/Googlemaps'; export { default as Googlelens } from './components/Googlelens'; +export { default as Googlemaps } from './components/Googlemaps'; export { default as Googlemarketingplatform } from './components/Googlemarketingplatform'; export { default as Googlemeet } from './components/Googlemeet'; -export { default as Googlemybusiness } from './components/Googlemybusiness'; export { default as Googlemessages } from './components/Googlemessages'; +export { default as Googlemybusiness } from './components/Googlemybusiness'; export { default as Googlenearby } from './components/Googlenearby'; export { default as Googlenews } from './components/Googlenews'; export { default as Googleoptimize } from './components/Googleoptimize'; @@ -852,8 +868,8 @@ export { default as Grav } from './components/Grav'; export { default as Gravatar } from './components/Gravatar'; export { default as Graylog } from './components/Graylog'; export { default as Greensock } from './components/Greensock'; -export { default as Gridsome } from './components/Gridsome'; export { default as Griddotai } from './components/Griddotai'; +export { default as Gridsome } from './components/Gridsome'; export { default as Groupme } from './components/Groupme'; export { default as Groupon } from './components/Groupon'; export { default as Grubhub } from './components/Grubhub'; @@ -862,23 +878,23 @@ export { default as Gtk } from './components/Gtk'; export { default as Guangzhoumetro } from './components/Guangzhoumetro'; export { default as Guilded } from './components/Guilded'; export { default as Gulp } from './components/Gulp'; -export { default as Gumtree } from './components/Gumtree'; export { default as Gumroad } from './components/Gumroad'; +export { default as Gumtree } from './components/Gumtree'; export { default as Gunicorn } from './components/Gunicorn'; export { default as Gurobi } from './components/Gurobi'; export { default as Gutenberg } from './components/Gutenberg'; export { default as Habr } from './components/Habr'; -export { default as Hackthebox } from './components/Hackthebox'; export { default as Hackclub } from './components/Hackclub'; +export { default as Hackthebox } from './components/Hackthebox'; export { default as Hackaday } from './components/Hackaday'; export { default as Hackernoon } from './components/Hackernoon'; export { default as Hackerearth } from './components/Hackerearth'; export { default as Hackerone } from './components/Hackerone'; export { default as Hackerrank } from './components/Hackerrank'; -export { default as Handlebarsdotjs } from './components/Handlebarsdotjs'; export { default as Hackster } from './components/Hackster'; -export { default as HandshakeProtocol } from './components/HandshakeProtocol'; +export { default as Handlebarsdotjs } from './components/Handlebarsdotjs'; export { default as Handshake } from './components/Handshake'; +export { default as HandshakeProtocol } from './components/HandshakeProtocol'; export { default as Happycow } from './components/Happycow'; export { default as Harbor } from './components/Harbor'; export { default as Harmonyos } from './components/Harmonyos'; @@ -899,16 +915,16 @@ export { default as Helpscout } from './components/Helpscout'; export { default as Helpdesk } from './components/Helpdesk'; export { default as Here } from './components/Here'; export { default as Heroku } from './components/Heroku'; -export { default as Hexo } from './components/Hexo'; export { default as Hetzner } from './components/Hetzner'; +export { default as Hexo } from './components/Hexo'; export { default as Hey } from './components/Hey'; export { default as Hibob } from './components/Hibob'; export { default as Hibernate } from './components/Hibernate'; export { default as Hilton } from './components/Hilton'; export { default as Hitachi } from './components/Hitachi'; export { default as Hive } from './components/Hive'; -export { default as Homeassistant } from './components/Homeassistant'; export { default as HiveBlockchain } from './components/HiveBlockchain'; +export { default as Homeassistant } from './components/Homeassistant'; export { default as Homeassistantcommunitystore } from './components/Homeassistantcommunitystore'; export { default as Homeadvisor } from './components/Homeadvisor'; export { default as Homebrew } from './components/Homebrew'; @@ -943,8 +959,8 @@ export { default as Ibeacon } from './components/Ibeacon'; export { default as Ibm } from './components/Ibm'; export { default as Ibmcloud } from './components/Ibmcloud'; export { default as Ibmwatson } from './components/Ibmwatson'; -export { default as Icinga } from './components/Icinga'; export { default as Iceland } from './components/Iceland'; +export { default as Icinga } from './components/Icinga'; export { default as Icloud } from './components/Icloud'; export { default as Icomoon } from './components/Icomoon'; export { default as Icon } from './components/Icon'; @@ -981,6 +997,7 @@ export { default as Instructables } from './components/Instructables'; export { default as Integromat } from './components/Integromat'; export { default as Intel } from './components/Intel'; export { default as Intellijidea } from './components/Intellijidea'; +export { default as Interactiondesignfoundation } from './components/Interactiondesignfoundation'; export { default as Interactjs } from './components/Interactjs'; export { default as Intercom } from './components/Intercom'; export { default as Intermarche } from './components/Intermarche'; @@ -993,8 +1010,8 @@ export { default as Iobroker } from './components/Iobroker'; export { default as Ionic } from './components/Ionic'; export { default as Ionos } from './components/Ionos'; export { default as Ios } from './components/Ios'; -export { default as Ipfs } from './components/Ipfs'; export { default as Iota } from './components/Iota'; +export { default as Ipfs } from './components/Ipfs'; export { default as Issuu } from './components/Issuu'; export { default as Istio } from './components/Istio'; export { default as Itchdotio } from './components/Itchdotio'; @@ -1004,7 +1021,6 @@ export { default as Iveco } from './components/Iveco'; export { default as Jabber } from './components/Jabber'; export { default as Jaguar } from './components/Jaguar'; export { default as Jamboard } from './components/Jamboard'; -export { default as Amul } from './components/Amul'; export { default as Jameson } from './components/Jameson'; export { default as Jamstack } from './components/Jamstack'; export { default as Jasmine } from './components/Jasmine'; @@ -1012,8 +1028,8 @@ export { default as Javascript } from './components/Javascript'; export { default as Jbl } from './components/Jbl'; export { default as Jcb } from './components/Jcb'; export { default as Jeep } from './components/Jeep'; -export { default as Jellyfin } from './components/Jellyfin'; export { default as Jekyll } from './components/Jekyll'; +export { default as Jellyfin } from './components/Jellyfin'; export { default as Jenkins } from './components/Jenkins'; export { default as Jenkinsx } from './components/Jenkinsx'; export { default as Jest } from './components/Jest'; @@ -1029,8 +1045,8 @@ export { default as Jitsi } from './components/Jitsi'; export { default as Johndeere } from './components/Johndeere'; export { default as Joomla } from './components/Joomla'; export { default as Joplin } from './components/Joplin'; -export { default as Jpeg } from './components/Jpeg'; export { default as Jordan } from './components/Jordan'; +export { default as Jpeg } from './components/Jpeg'; export { default as Jquery } from './components/Jquery'; export { default as Jrgroup } from './components/Jrgroup'; export { default as Jsdelivr } from './components/Jsdelivr'; @@ -1038,6 +1054,7 @@ export { default as Jsfiddle } from './components/Jsfiddle'; export { default as Json } from './components/Json'; export { default as Jsonwebtokens } from './components/Jsonwebtokens'; export { default as Jss } from './components/Jss'; +export { default as Juke } from './components/Juke'; export { default as Julia } from './components/Julia'; export { default as Junipernetworks } from './components/Junipernetworks'; export { default as Junit5 } from './components/Junit5'; @@ -1046,10 +1063,10 @@ export { default as Justeat } from './components/Justeat'; export { default as Justgiving } from './components/Justgiving'; export { default as KThreeS } from './components/KThreeS'; export { default as KSix } from './components/KSix'; +export { default as Kaggle } from './components/Kaggle'; export { default as Kahoot } from './components/Kahoot'; export { default as Kaios } from './components/Kaios'; export { default as Kakao } from './components/Kakao'; -export { default as Kaggle } from './components/Kaggle'; export { default as Kakaotalk } from './components/Kakaotalk'; export { default as Kalilinux } from './components/Kalilinux'; export { default as Kaniko } from './components/Kaniko'; @@ -1116,13 +1133,13 @@ export { default as Laravel } from './components/Laravel'; export { default as Laravelhorizon } from './components/Laravelhorizon'; export { default as Laravelnova } from './components/Laravelnova'; export { default as Lastdotfm } from './components/Lastdotfm'; -export { default as Latex } from './components/Latex'; export { default as Lastpass } from './components/Lastpass'; +export { default as Latex } from './components/Latex'; export { default as Launchpad } from './components/Launchpad'; export { default as Lazarus } from './components/Lazarus'; export { default as Lbry } from './components/Lbry'; -export { default as Leaflet } from './components/Leaflet'; export { default as Leaderprice } from './components/Leaderprice'; +export { default as Leaflet } from './components/Leaflet'; export { default as Leanpub } from './components/Leanpub'; export { default as Leetcode } from './components/Leetcode'; export { default as Legacygames } from './components/Legacygames'; @@ -1150,24 +1167,24 @@ export { default as Line } from './components/Line'; export { default as Lineageos } from './components/Lineageos'; export { default as Linear } from './components/Linear'; export { default as Linkedin } from './components/Linkedin'; -export { default as Linkfire } from './components/Linkfire'; export { default as Linkerd } from './components/Linkerd'; +export { default as Linkfire } from './components/Linkfire'; export { default as Linktree } from './components/Linktree'; export { default as Linode } from './components/Linode'; +export { default as Linux } from './components/Linux'; export { default as Linuxcontainers } from './components/Linuxcontainers'; export { default as Linuxfoundation } from './components/Linuxfoundation'; -export { default as Linux } from './components/Linux'; export { default as Linuxmint } from './components/Linuxmint'; -export { default as Liquibase } from './components/Liquibase'; export { default as Lionair } from './components/Lionair'; +export { default as Liquibase } from './components/Liquibase'; export { default as Lit } from './components/Lit'; export { default as Litecoin } from './components/Litecoin'; export { default as Litiengine } from './components/Litiengine'; export { default as Livechat } from './components/Livechat'; export { default as Livejournal } from './components/Livejournal'; export { default as Livewire } from './components/Livewire'; -export { default as Lmms } from './components/Lmms'; export { default as Llvm } from './components/Llvm'; +export { default as Lmms } from './components/Lmms'; export { default as Lodash } from './components/Lodash'; export { default as Logitech } from './components/Logitech'; export { default as Logmein } from './components/Logmein'; @@ -1186,21 +1203,22 @@ export { default as Lumen } from './components/Lumen'; export { default as Lunacy } from './components/Lunacy'; export { default as Lydia } from './components/Lydia'; export { default as Lyft } from './components/Lyft'; -export { default as Macos } from './components/Macos'; export { default as Maas } from './components/Maas'; +export { default as Macos } from './components/Macos'; +export { default as Macpaw } from './components/Macpaw'; export { default as Macys } from './components/Macys'; -export { default as Magento } from './components/Magento'; export { default as Magasinsu } from './components/Magasinsu'; -export { default as Maildotru } from './components/Maildotru'; +export { default as Magento } from './components/Magento'; export { default as Magisk } from './components/Magisk'; -export { default as Mailgun } from './components/Mailgun'; +export { default as Maildotru } from './components/Maildotru'; export { default as Mailchimp } from './components/Mailchimp'; -export { default as Makerbot } from './components/Makerbot'; +export { default as Mailgun } from './components/Mailgun'; export { default as Majorleaguehacking } from './components/Majorleaguehacking'; +export { default as Makerbot } from './components/Makerbot'; export { default as Mamp } from './components/Mamp'; -export { default as Manjaro } from './components/Manjaro'; export { default as Man } from './components/Man'; export { default as Manageiq } from './components/Manageiq'; +export { default as Manjaro } from './components/Manjaro'; export { default as Mapbox } from './components/Mapbox'; export { default as Mariadb } from './components/Mariadb'; export { default as Mariadbfoundation } from './components/Mariadbfoundation'; @@ -1220,10 +1238,10 @@ export { default as Matterdotjs } from './components/Matterdotjs'; export { default as Mattermost } from './components/Mattermost'; export { default as Matternet } from './components/Matternet'; export { default as Max } from './components/Max'; +export { default as Maxplanckgesellschaft } from './components/Maxplanckgesellschaft'; export { default as Maytag } from './components/Maytag'; export { default as Mazda } from './components/Mazda'; export { default as Mcafee } from './components/Mcafee'; -export { default as Maxplanckgesellschaft } from './components/Maxplanckgesellschaft'; export { default as Mcdonalds } from './components/Mcdonalds'; export { default as Mclaren } from './components/Mclaren'; export { default as Mdbook } from './components/Mdbook'; @@ -1253,23 +1271,23 @@ export { default as Mewe } from './components/Mewe'; export { default as Microbit } from './components/Microbit'; export { default as Microdotblog } from './components/Microdotblog'; export { default as Microgenetics } from './components/Microgenetics'; -export { default as Microsoft } from './components/Microsoft'; export { default as Micropython } from './components/Micropython'; -export { default as Microsoftaccess } from './components/Microsoftaccess'; +export { default as Microsoft } from './components/Microsoft'; export { default as Microsoftacademic } from './components/Microsoftacademic'; +export { default as Microsoftaccess } from './components/Microsoftaccess'; export { default as Microsoftazure } from './components/Microsoftazure'; export { default as Microsoftbing } from './components/Microsoftbing'; export { default as Microsoftedge } from './components/Microsoftedge'; export { default as Microsoftexcel } from './components/Microsoftexcel'; -export { default as Microsoftoffice } from './components/Microsoftoffice'; export { default as Microsoftexchange } from './components/Microsoftexchange'; +export { default as Microsoftoffice } from './components/Microsoftoffice'; export { default as Microsoftonedrive } from './components/Microsoftonedrive'; export { default as Microsoftonenote } from './components/Microsoftonenote'; export { default as Microsoftoutlook } from './components/Microsoftoutlook'; export { default as Microsoftpowerpoint } from './components/Microsoftpowerpoint'; export { default as Microsoftsharepoint } from './components/Microsoftsharepoint'; -export { default as Microsoftteams } from './components/Microsoftteams'; export { default as Microsoftsqlserver } from './components/Microsoftsqlserver'; +export { default as Microsoftteams } from './components/Microsoftteams'; export { default as Microsofttranslator } from './components/Microsofttranslator'; export { default as Microsoftvisio } from './components/Microsoftvisio'; export { default as Microsoftword } from './components/Microsoftword'; @@ -1290,8 +1308,8 @@ export { default as Mobx } from './components/Mobx'; export { default as Mobxstatetree } from './components/Mobxstatetree'; export { default as Mocha } from './components/Mocha'; export { default as Modx } from './components/Modx'; -export { default as Moleculer } from './components/Moleculer'; export { default as Mojangstudios } from './components/Mojangstudios'; +export { default as Moleculer } from './components/Moleculer'; export { default as Momenteo } from './components/Momenteo'; export { default as Monero } from './components/Monero'; export { default as Moneygram } from './components/Moneygram'; @@ -1302,13 +1320,13 @@ export { default as Monoprix } from './components/Monoprix'; export { default as Monster } from './components/Monster'; export { default as Monzo } from './components/Monzo'; export { default as Moo } from './components/Moo'; -export { default as Moscowmetro } from './components/Moscowmetro'; export { default as Morrisons } from './components/Morrisons'; +export { default as Moscowmetro } from './components/Moscowmetro'; export { default as Motorola } from './components/Motorola'; export { default as Mozilla } from './components/Mozilla'; +export { default as Msi } from './components/Msi'; export { default as Msibusiness } from './components/Msibusiness'; export { default as Mta } from './components/Mta'; -export { default as Msi } from './components/Msi'; export { default as Mtr } from './components/Mtr'; export { default as Mui } from './components/Mui'; export { default as Mulesoft } from './components/Mulesoft'; @@ -1328,29 +1346,30 @@ export { default as Nano } from './components/Nano'; export { default as Nasa } from './components/Nasa'; export { default as Nationalgrid } from './components/Nationalgrid'; export { default as Nativescript } from './components/Nativescript'; -export { default as Nba } from './components/Nba'; export { default as Naver } from './components/Naver'; +export { default as Nba } from './components/Nba'; export { default as Nbb } from './components/Nbb'; export { default as Ndr } from './components/Ndr'; export { default as Nec } from './components/Nec'; export { default as NeoFourJ } from './components/NeoFourJ'; export { default as Neovim } from './components/Neovim'; -export { default as Netapp } from './components/Netapp'; export { default as Nestjs } from './components/Nestjs'; +export { default as Netapp } from './components/Netapp'; export { default as Netbsd } from './components/Netbsd'; export { default as Netflix } from './components/Netflix'; -export { default as Nette } from './components/Nette'; export { default as Netlify } from './components/Netlify'; -export { default as Newbalance } from './components/Newbalance'; +export { default as Nette } from './components/Nette'; export { default as Netto } from './components/Netto'; +export { default as Neutralinojs } from './components/Neutralinojs'; +export { default as Newbalance } from './components/Newbalance'; +export { default as Newjapanprowrestling } from './components/Newjapanprowrestling'; export { default as Newrelic } from './components/Newrelic'; export { default as Newyorktimes } from './components/Newyorktimes'; -export { default as Nextbilliondotai } from './components/Nextbilliondotai'; export { default as Nextdotjs } from './components/Nextdotjs'; +export { default as Nextbilliondotai } from './components/Nextbilliondotai'; export { default as Nextcloud } from './components/Nextcloud'; export { default as Nextdoor } from './components/Nextdoor'; export { default as Nfc } from './components/Nfc'; -export { default as Newjapanprowrestling } from './components/Newjapanprowrestling'; export { default as Nginx } from './components/Nginx'; export { default as Ngrok } from './components/Ngrok'; export { default as Niconico } from './components/Niconico'; @@ -1370,8 +1389,8 @@ export { default as Nokia } from './components/Nokia'; export { default as Norco } from './components/Norco'; export { default as Nordvpn } from './components/Nordvpn'; export { default as Norwegian } from './components/Norwegian'; -export { default as Notion } from './components/Notion'; export { default as Notepadplusplus } from './components/Notepadplusplus'; +export { default as Notion } from './components/Notion'; export { default as Notist } from './components/Notist'; export { default as Nounproject } from './components/Nounproject'; export { default as Now } from './components/Now'; @@ -1393,8 +1412,8 @@ export { default as Oreilly } from './components/Oreilly'; export { default as Obsstudio } from './components/Obsstudio'; export { default as Observable } from './components/Observable'; export { default as Obsidian } from './components/Obsidian'; -export { default as Octanerender } from './components/Octanerender'; export { default as Ocaml } from './components/Ocaml'; +export { default as Octanerender } from './components/Octanerender'; export { default as Octave } from './components/Octave'; export { default as Octoprint } from './components/Octoprint'; export { default as Octopusdeploy } from './components/Octopusdeploy'; @@ -1414,15 +1433,15 @@ export { default as Openaccess } from './components/Openaccess'; export { default as Openbadges } from './components/Openbadges'; export { default as Openbugbounty } from './components/Openbugbounty'; export { default as Opencollective } from './components/Opencollective'; -export { default as Openai } from './components/Openai'; -export { default as Opensourceinitiative } from './components/Opensourceinitiative'; export { default as Opencontainersinitiative } from './components/Opencontainersinitiative'; +export { default as Opensourceinitiative } from './components/Opensourceinitiative'; +export { default as Openai } from './components/Openai'; export { default as Openaigym } from './components/Openaigym'; export { default as Openapiinitiative } from './components/Openapiinitiative'; +export { default as Openbsd } from './components/Openbsd'; export { default as Opencv } from './components/Opencv'; export { default as Openfaas } from './components/Openfaas'; export { default as Opengl } from './components/Opengl'; -export { default as Openbsd } from './components/Openbsd'; export { default as Openid } from './components/Openid'; export { default as Openjdk } from './components/Openjdk'; export { default as Openlayers } from './components/Openlayers'; @@ -1433,16 +1452,16 @@ export { default as Opensea } from './components/Opensea'; export { default as Opensearch } from './components/Opensearch'; export { default as Openssl } from './components/Openssl'; export { default as Openstack } from './components/Openstack'; -export { default as Opensuse } from './components/Opensuse'; export { default as Openstreetmap } from './components/Openstreetmap'; +export { default as Opensuse } from './components/Opensuse'; export { default as Opentelemetry } from './components/Opentelemetry'; export { default as Openverse } from './components/Openverse'; export { default as Openvpn } from './components/Openvpn'; export { default as Openwrt } from './components/Openwrt'; export { default as Openzeppelin } from './components/Openzeppelin'; export { default as Openzfs } from './components/Openzfs'; -export { default as Opnsense } from './components/Opnsense'; export { default as Opera } from './components/Opera'; +export { default as Opnsense } from './components/Opnsense'; export { default as Opsgenie } from './components/Opsgenie'; export { default as Opslevel } from './components/Opslevel'; export { default as Oracle } from './components/Oracle'; @@ -1455,15 +1474,15 @@ export { default as Osmc } from './components/Osmc'; export { default as Osu } from './components/Osu'; export { default as Otto } from './components/Otto'; export { default as Overcast } from './components/Overcast'; -export { default as Ovh } from './components/Ovh'; export { default as Overleaf } from './components/Overleaf'; +export { default as Ovh } from './components/Ovh'; export { default as Owasp } from './components/Owasp'; export { default as Oxygen } from './components/Oxygen'; export { default as Oyo } from './components/Oyo'; export { default as P5dotjs } from './components/P5dotjs'; +export { default as Packagist } from './components/Packagist'; export { default as Packer } from './components/Packer'; export { default as Paddypower } from './components/Paddypower'; -export { default as Packagist } from './components/Packagist'; export { default as Pagekit } from './components/Pagekit'; export { default as Pagerduty } from './components/Pagerduty'; export { default as Pagespeedinsights } from './components/Pagespeedinsights'; @@ -1473,8 +1492,8 @@ export { default as Paloaltosoftware } from './components/Paloaltosoftware'; export { default as Pandas } from './components/Pandas'; export { default as Pandora } from './components/Pandora'; export { default as Pantheon } from './components/Pantheon'; -export { default as Paritysubstrate } from './components/Paritysubstrate'; export { default as Paperspace } from './components/Paperspace'; +export { default as Paritysubstrate } from './components/Paritysubstrate'; export { default as Parsedotly } from './components/Parsedotly'; export { default as Passport } from './components/Passport'; export { default as Pastebin } from './components/Pastebin'; @@ -1482,8 +1501,8 @@ export { default as Patreon } from './components/Patreon'; export { default as Payoneer } from './components/Payoneer'; export { default as Paypal } from './components/Paypal'; export { default as Paytm } from './components/Paytm'; -export { default as Peakdesign } from './components/Peakdesign'; export { default as Pcgamingwiki } from './components/Pcgamingwiki'; +export { default as Peakdesign } from './components/Peakdesign'; export { default as Peertube } from './components/Peertube'; export { default as Pegasusairlines } from './components/Pegasusairlines'; export { default as Pelican } from './components/Pelican'; @@ -1493,11 +1512,11 @@ export { default as Pepsi } from './components/Pepsi'; export { default as Percy } from './components/Percy'; export { default as Perforce } from './components/Perforce'; export { default as Perl } from './components/Perl'; -export { default as Petsathome } from './components/Petsathome'; export { default as Personio } from './components/Personio'; +export { default as Petsathome } from './components/Petsathome'; +export { default as Peugeot } from './components/Peugeot'; export { default as Pexels } from './components/Pexels'; export { default as Pfsense } from './components/Pfsense'; -export { default as Peugeot } from './components/Peugeot'; export { default as Phabricator } from './components/Phabricator'; export { default as Philipshue } from './components/Philipshue'; export { default as Phonepe } from './components/Phonepe'; @@ -1513,8 +1532,8 @@ export { default as Picartodottv } from './components/Picartodottv'; export { default as Picnic } from './components/Picnic'; export { default as Picpay } from './components/Picpay'; export { default as Pimcore } from './components/Pimcore'; -export { default as Pingdom } from './components/Pingdom'; export { default as Pinboard } from './components/Pinboard'; +export { default as Pingdom } from './components/Pingdom'; export { default as Pinterest } from './components/Pinterest'; export { default as Pioneerdj } from './components/Pioneerdj'; export { default as Pivotaltracker } from './components/Pivotaltracker'; @@ -1525,8 +1544,8 @@ export { default as Pixiv } from './components/Pixiv'; export { default as Pkgsrc } from './components/Pkgsrc'; export { default as Planet } from './components/Planet'; export { default as Planetscale } from './components/Planetscale'; -export { default as Platformdotsh } from './components/Platformdotsh'; export { default as Plangrid } from './components/Plangrid'; +export { default as Platformdotsh } from './components/Platformdotsh'; export { default as Platzi } from './components/Platzi'; export { default as Plausibleanalytics } from './components/Plausibleanalytics'; export { default as Playcanvas } from './components/Playcanvas'; @@ -1544,32 +1563,34 @@ export { default as Plesk } from './components/Plesk'; export { default as Plex } from './components/Plex'; export { default as Plotly } from './components/Plotly'; export { default as Pluralsight } from './components/Pluralsight'; -export { default as Pluscodes } from './components/Pluscodes'; export { default as Plurk } from './components/Plurk'; -export { default as Pnpm } from './components/Pnpm'; +export { default as Pluscodes } from './components/Pluscodes'; export { default as PmTwo } from './components/PmTwo'; +export { default as Pnpm } from './components/Pnpm'; export { default as Pocket } from './components/Pocket'; export { default as Pocketcasts } from './components/Pocketcasts'; export { default as Pocketbase } from './components/Pocketbase'; export { default as Podcastaddict } from './components/Podcastaddict'; +export { default as Podman } from './components/Podman'; export { default as Poetry } from './components/Poetry'; export { default as Pointy } from './components/Pointy'; export { default as Pokemon } from './components/Pokemon'; -export { default as Podman } from './components/Podman'; export { default as Polkadot } from './components/Polkadot'; export { default as Poly } from './components/Poly'; export { default as Polymerproject } from './components/Polymerproject'; export { default as Polywork } from './components/Polywork'; export { default as Popos } from './components/Popos'; -export { default as Portainer } from './components/Portainer'; export { default as Porsche } from './components/Porsche'; -export { default as Postgresql } from './components/Postgresql'; +export { default as Portainer } from './components/Portainer'; export { default as Postcss } from './components/Postcss'; +export { default as Postgresql } from './components/Postgresql'; export { default as Postman } from './components/Postman'; export { default as Postmates } from './components/Postmates'; export { default as Powerapps } from './components/Powerapps'; export { default as Powerautomate } from './components/Powerautomate'; export { default as Powerbi } from './components/Powerbi'; +export { default as Powerfx } from './components/Powerfx'; +export { default as Powerpages } from './components/Powerpages'; export { default as Powervirtualagents } from './components/Powervirtualagents'; export { default as Powers } from './components/Powers'; export { default as Powershell } from './components/Powershell'; @@ -1577,17 +1598,17 @@ export { default as Prdotco } from './components/Prdotco'; export { default as Precommit } from './components/Precommit'; export { default as Preact } from './components/Preact'; export { default as Premierleague } from './components/Premierleague'; -export { default as Presto } from './components/Presto'; export { default as Prestashop } from './components/Prestashop'; +export { default as Presto } from './components/Presto'; export { default as Prettier } from './components/Prettier'; -export { default as Prime } from './components/Prime'; export { default as Prezi } from './components/Prezi'; +export { default as Prime } from './components/Prime'; export { default as Primevideo } from './components/Primevideo'; export { default as Prisma } from './components/Prisma'; -export { default as Privateinternetaccess } from './components/Privateinternetaccess'; export { default as Prismic } from './components/Prismic'; -export { default as Probot } from './components/Probot'; +export { default as Privateinternetaccess } from './components/Privateinternetaccess'; export { default as Protools } from './components/Protools'; +export { default as Probot } from './components/Probot'; export { default as Processingfoundation } from './components/Processingfoundation'; export { default as Processwire } from './components/Processwire'; export { default as Producthunt } from './components/Producthunt'; @@ -1602,6 +1623,7 @@ export { default as Protonmail } from './components/Protonmail'; export { default as Protonvpn } from './components/Protonvpn'; export { default as Protractor } from './components/Protractor'; export { default as Proxmox } from './components/Proxmox'; +export { default as Pubg } from './components/Pubg'; export { default as Publons } from './components/Publons'; export { default as Pubmed } from './components/Pubmed'; export { default as Pug } from './components/Pug'; @@ -1612,40 +1634,39 @@ export { default as Puppeteer } from './components/Puppeteer'; export { default as Purescript } from './components/Purescript'; export { default as Purgecss } from './components/Purgecss'; export { default as Purism } from './components/Purism'; -export { default as Pubg } from './components/Pubg'; export { default as Pusher } from './components/Pusher'; export { default as Pwa } from './components/Pwa'; export { default as Pycharm } from './components/Pycharm'; export { default as Pyg } from './components/Pyg'; export { default as Pypi } from './components/Pypi'; -export { default as Pyscaffold } from './components/Pyscaffold'; export { default as Pypy } from './components/Pypy'; +export { default as Pyscaffold } from './components/Pyscaffold'; export { default as Pytest } from './components/Pytest'; export { default as Python } from './components/Python'; export { default as Pytorch } from './components/Pytorch'; export { default as Pytorchlightning } from './components/Pytorchlightning'; -export { default as Qantas } from './components/Qantas'; export { default as Pyup } from './components/Pyup'; +export { default as Qantas } from './components/Qantas'; export { default as Qatarairways } from './components/Qatarairways'; export { default as Qemu } from './components/Qemu'; export { default as Qgis } from './components/Qgis'; export { default as Qi } from './components/Qi'; export { default as Qiita } from './components/Qiita'; -export { default as Qiwi } from './components/Qiwi'; export { default as Qiskit } from './components/Qiskit'; +export { default as Qiwi } from './components/Qiwi'; export { default as Qmk } from './components/Qmk'; export { default as Qt } from './components/Qt'; export { default as Qualcomm } from './components/Qualcomm'; export { default as Qualtrics } from './components/Qualtrics'; -export { default as Quantcast } from './components/Quantcast'; export { default as Qualys } from './components/Qualys'; +export { default as Quantcast } from './components/Quantcast'; export { default as Quantconnect } from './components/Quantconnect'; export { default as Quarkus } from './components/Quarkus'; export { default as Quasar } from './components/Quasar'; export { default as Qubesos } from './components/Qubesos'; export { default as Quest } from './components/Quest'; -export { default as Quicklook } from './components/Quicklook'; export { default as Quickbooks } from './components/Quickbooks'; +export { default as Quicklook } from './components/Quicklook'; export { default as Quicktime } from './components/Quicktime'; export { default as Quip } from './components/Quip'; export { default as Quora } from './components/Quora'; @@ -1653,16 +1674,16 @@ export { default as Qwiklabs } from './components/Qwiklabs'; export { default as Qzone } from './components/Qzone'; export { default as R } from './components/R'; export { default as RThree } from './components/RThree'; -export { default as Racket } from './components/Racket'; export { default as Rabbitmq } from './components/Rabbitmq'; +export { default as Racket } from './components/Racket'; export { default as Radar } from './components/Radar'; export { default as Radiopublic } from './components/Radiopublic'; export { default as Railway } from './components/Railway'; export { default as Rainmeter } from './components/Rainmeter'; export { default as Rakuten } from './components/Rakuten'; export { default as Ram } from './components/Ram'; -export { default as Rarible } from './components/Rarible'; export { default as Rancher } from './components/Rancher'; +export { default as Rarible } from './components/Rarible'; export { default as Rasa } from './components/Rasa'; export { default as Raspberrypi } from './components/Raspberrypi'; export { default as Ray } from './components/Ray'; @@ -1673,8 +1694,8 @@ export { default as Reacthookform } from './components/Reacthookform'; export { default as Reactquery } from './components/Reactquery'; export { default as Reactrouter } from './components/Reactrouter'; export { default as Reacttable } from './components/Reacttable'; -export { default as Reactos } from './components/Reactos'; export { default as Reactivex } from './components/Reactivex'; +export { default as Reactos } from './components/Reactos'; export { default as Readthedocs } from './components/Readthedocs'; export { default as Realm } from './components/Realm'; export { default as Reason } from './components/Reason'; @@ -1689,8 +1710,9 @@ export { default as Redux } from './components/Redux'; export { default as Reduxsaga } from './components/Reduxsaga'; export { default as Redwoodjs } from './components/Redwoodjs'; export { default as Reebok } from './components/Reebok'; -export { default as Remix } from './components/Remix'; +export { default as Relay } from './components/Relay'; export { default as Relianceindustrieslimited } from './components/Relianceindustrieslimited'; +export { default as Remix } from './components/Remix'; export { default as Renpy } from './components/Renpy'; export { default as Renault } from './components/Renault'; export { default as Render } from './components/Render'; @@ -1701,15 +1723,16 @@ export { default as Republicofgamers } from './components/Republicofgamers'; export { default as Rescript } from './components/Rescript'; export { default as Rescuetime } from './components/Rescuetime'; export { default as Researchgate } from './components/Researchgate'; +export { default as Resharper } from './components/Resharper'; export { default as Resurrectionremixos } from './components/Resurrectionremixos'; export { default as Retroarch } from './components/Retroarch'; -export { default as Revealdotjs } from './components/Revealdotjs'; export { default as Retropie } from './components/Retropie'; +export { default as Revealdotjs } from './components/Revealdotjs'; export { default as Reverbnation } from './components/Reverbnation'; export { default as Revoltdotchat } from './components/Revoltdotchat'; export { default as Revolut } from './components/Revolut'; -export { default as Rewe } from './components/Rewe'; export { default as Revue } from './components/Revue'; +export { default as Rewe } from './components/Rewe'; export { default as Rezgo } from './components/Rezgo'; export { default as Rhinoceros } from './components/Rhinoceros'; export { default as Rider } from './components/Rider'; @@ -1741,22 +1764,22 @@ export { default as Rstudio } from './components/Rstudio'; export { default as Rte } from './components/Rte'; export { default as Rtl } from './components/Rtl'; export { default as Rtlzwei } from './components/Rtlzwei'; -export { default as Ruby } from './components/Ruby'; export { default as Rubocop } from './components/Rubocop'; +export { default as Ruby } from './components/Ruby'; export { default as Rubyonrails } from './components/Rubyonrails'; export { default as Rubysinatra } from './components/Rubysinatra'; -export { default as Runkeeper } from './components/Runkeeper'; export { default as Rubygems } from './components/Rubygems'; +export { default as Runkeeper } from './components/Runkeeper'; export { default as Runkit } from './components/Runkit'; export { default as Rust } from './components/Rust'; export { default as Rxdb } from './components/Rxdb'; export { default as Ryanair } from './components/Ryanair'; export { default as S7airlines } from './components/S7airlines'; export { default as Sabanci } from './components/Sabanci'; -export { default as Sahibinden } from './components/Sahibinden'; export { default as Safari } from './components/Safari'; -export { default as Salesforce } from './components/Salesforce'; +export { default as Sahibinden } from './components/Sahibinden'; export { default as Sailfishos } from './components/Sailfishos'; +export { default as Salesforce } from './components/Salesforce'; export { default as Saltproject } from './components/Saltproject'; export { default as Samsung } from './components/Samsung'; export { default as Samsungpay } from './components/Samsungpay'; @@ -1773,8 +1796,8 @@ export { default as Scaleway } from './components/Scaleway'; export { default as Scania } from './components/Scania'; export { default as Schneiderelectric } from './components/Schneiderelectric'; export { default as Scikitlearn } from './components/Scikitlearn'; -export { default as Scopus } from './components/Scopus'; export { default as Scipy } from './components/Scipy'; +export { default as Scopus } from './components/Scopus'; export { default as Scpfoundation } from './components/Scpfoundation'; export { default as Scratch } from './components/Scratch'; export { default as Screencastify } from './components/Screencastify'; @@ -1790,6 +1813,7 @@ export { default as Sefaria } from './components/Sefaria'; export { default as Sega } from './components/Sega'; export { default as Selenium } from './components/Selenium'; export { default as Sellfy } from './components/Sellfy'; +export { default as Semanticscholar } from './components/Semanticscholar'; export { default as Semanticuireact } from './components/Semanticuireact'; export { default as Semanticweb } from './components/Semanticweb'; export { default as Semanticrelease } from './components/Semanticrelease'; @@ -1803,6 +1827,8 @@ export { default as Sepa } from './components/Sepa'; export { default as Sequelize } from './components/Sequelize'; export { default as Serverfault } from './components/Serverfault'; export { default as Serverless } from './components/Serverless'; +export { default as Sessionize } from './components/Sessionize'; +export { default as Setapp } from './components/Setapp'; export { default as Sfml } from './components/Sfml'; export { default as Shadow } from './components/Shadow'; export { default as Shanghaimetro } from './components/Shanghaimetro'; @@ -1813,6 +1839,7 @@ export { default as Shelly } from './components/Shelly'; export { default as Shenzhenmetro } from './components/Shenzhenmetro'; export { default as Shieldsdotio } from './components/Shieldsdotio'; export { default as Shikimori } from './components/Shikimori'; +export { default as Shopee } from './components/Shopee'; export { default as Shopify } from './components/Shopify'; export { default as Shopware } from './components/Shopware'; export { default as Shotcut } from './components/Shotcut'; @@ -1821,6 +1848,7 @@ export { default as Showtime } from './components/Showtime'; export { default as Shutterstock } from './components/Shutterstock'; export { default as Siemens } from './components/Siemens'; export { default as Signal } from './components/Signal'; +export { default as Similarweb } from './components/Similarweb'; export { default as Simkl } from './components/Simkl'; export { default as Simpleanalytics } from './components/Simpleanalytics'; export { default as Simpleicons } from './components/Simpleicons'; @@ -1851,8 +1879,8 @@ export { default as Smashingmagazine } from './components/Smashingmagazine'; export { default as Smrt } from './components/Smrt'; export { default as Smugmug } from './components/Smugmug'; export { default as Snapchat } from './components/Snapchat'; -export { default as Snowflake } from './components/Snowflake'; export { default as Snapcraft } from './components/Snapcraft'; +export { default as Snowflake } from './components/Snowflake'; export { default as Snowpack } from './components/Snowpack'; export { default as Snyk } from './components/Snyk'; export { default as Socialblade } from './components/Socialblade'; @@ -1863,6 +1891,7 @@ export { default as Solid } from './components/Solid'; export { default as Solidity } from './components/Solidity'; export { default as Sololearn } from './components/Sololearn'; export { default as Solus } from './components/Solus'; +export { default as Sonar } from './components/Sonar'; export { default as Sonarcloud } from './components/Sonarcloud'; export { default as Sonarlint } from './components/Sonarlint'; export { default as Sonarqube } from './components/Sonarqube'; @@ -1884,8 +1913,8 @@ export { default as Spacex } from './components/Spacex'; export { default as Spacy } from './components/Spacy'; export { default as Sparkar } from './components/Sparkar'; export { default as Sparkasse } from './components/Sparkasse'; -export { default as Sparkpost } from './components/Sparkpost'; export { default as Sparkfun } from './components/Sparkfun'; +export { default as Sparkpost } from './components/Sparkpost'; export { default as Spdx } from './components/Spdx'; export { default as Speakerdeck } from './components/Speakerdeck'; export { default as Spectrum } from './components/Spectrum'; @@ -1900,8 +1929,8 @@ export { default as Spreadshirt } from './components/Spreadshirt'; export { default as Spreaker } from './components/Spreaker'; export { default as Spring } from './components/Spring'; export { default as SpringCreators } from './components/SpringCreators'; -export { default as Springsecurity } from './components/Springsecurity'; export { default as Springboot } from './components/Springboot'; +export { default as Springsecurity } from './components/Springsecurity'; export { default as Spyderide } from './components/Spyderide'; export { default as Sqlite } from './components/Sqlite'; export { default as Square } from './components/Square'; @@ -1933,8 +1962,8 @@ export { default as Steamworks } from './components/Steamworks'; export { default as Steelseries } from './components/Steelseries'; export { default as Steem } from './components/Steem'; export { default as Steemit } from './components/Steemit'; -export { default as Stellar } from './components/Stellar'; export { default as Steinberg } from './components/Steinberg'; +export { default as Stellar } from './components/Stellar'; export { default as Stencyl } from './components/Stencyl'; export { default as Stimulus } from './components/Stimulus'; export { default as Stitcher } from './components/Stitcher'; @@ -1963,10 +1992,10 @@ export { default as Superuser } from './components/Superuser'; export { default as Supermicro } from './components/Supermicro'; export { default as Surveymonkey } from './components/Surveymonkey'; export { default as Suse } from './components/Suse'; -export { default as Svelte } from './components/Svelte'; export { default as Suzuki } from './components/Suzuki'; -export { default as Svgo } from './components/Svgo'; +export { default as Svelte } from './components/Svelte'; export { default as Svg } from './components/Svg'; +export { default as Svgo } from './components/Svgo'; export { default as Swagger } from './components/Swagger'; export { default as Swarm } from './components/Swarm'; export { default as Swc } from './components/Swc'; @@ -1981,12 +2010,15 @@ export { default as Synology } from './components/Synology'; export { default as Tmobile } from './components/Tmobile'; export { default as Tableau } from './components/Tableau'; export { default as Tablecheck } from './components/Tablecheck'; -export { default as Tado } from './components/Tado'; export { default as Tacobell } from './components/Tacobell'; +export { default as Tado } from './components/Tado'; +export { default as Taichigraphics } from './components/Taichigraphics'; +export { default as Taichilang } from './components/Taichilang'; export { default as Tails } from './components/Tails'; export { default as Tailwindcss } from './components/Tailwindcss'; export { default as Talend } from './components/Talend'; export { default as Talenthouse } from './components/Talenthouse'; +export { default as Tamiya } from './components/Tamiya'; export { default as Tampermonkey } from './components/Tampermonkey'; export { default as Taobao } from './components/Taobao'; export { default as Tapas } from './components/Tapas'; @@ -2005,12 +2037,12 @@ export { default as Tekton } from './components/Tekton'; export { default as Tele5 } from './components/Tele5'; export { default as Telegram } from './components/Telegram'; export { default as Telegraph } from './components/Telegraph'; -export { default as Tencentqq } from './components/Tencentqq'; export { default as Temporal } from './components/Temporal'; +export { default as Tencentqq } from './components/Tencentqq'; export { default as Tensorflow } from './components/Tensorflow'; export { default as Teradata } from './components/Teradata'; -export { default as Terraform } from './components/Terraform'; export { default as Teratail } from './components/Teratail'; +export { default as Terraform } from './components/Terraform'; export { default as Tesco } from './components/Tesco'; export { default as Tesla } from './components/Tesla'; export { default as Testcafe } from './components/Testcafe'; @@ -2027,38 +2059,39 @@ export { default as Themoviedatabase } from './components/Themoviedatabase'; export { default as Thenorthface } from './components/Thenorthface'; export { default as Theregister } from './components/Theregister'; export { default as Thesoundsresource } from './components/Thesoundsresource'; -export { default as Amg } from './components/Amg'; -export { default as Amp } from './components/Amp'; +export { default as Thespritersresource } from './components/Thespritersresource'; +export { default as Thewashingtonpost } from './components/Thewashingtonpost'; export { default as Thingiverse } from './components/Thingiverse'; export { default as Thinkpad } from './components/Thinkpad'; export { default as Threadless } from './components/Threadless'; -export { default as Threema } from './components/Threema'; export { default as Threedotjs } from './components/Threedotjs'; +export { default as Threema } from './components/Threema'; export { default as Thumbtack } from './components/Thumbtack'; export { default as Thunderbird } from './components/Thunderbird'; export { default as Thymeleaf } from './components/Thymeleaf'; export { default as Ticketmaster } from './components/Ticketmaster'; -export { default as Tide } from './components/Tide'; export { default as Tidal } from './components/Tidal'; +export { default as Tide } from './components/Tide'; +export { default as Tidyverse } from './components/Tidyverse'; export { default as Tietoevry } from './components/Tietoevry'; export { default as Tiktok } from './components/Tiktok'; export { default as Tile } from './components/Tile'; export { default as Timescale } from './components/Timescale'; -export { default as Tinyletter } from './components/Tinyletter'; export { default as Tinder } from './components/Tinder'; +export { default as Tinyletter } from './components/Tinyletter'; export { default as Tistory } from './components/Tistory'; export { default as Tmux } from './components/Tmux'; export { default as Todoist } from './components/Todoist'; export { default as Toggl } from './components/Toggl'; export { default as Tokyometro } from './components/Tokyometro'; -export { default as Topcoder } from './components/Topcoder'; export { default as Tomorrowland } from './components/Tomorrowland'; +export { default as Topcoder } from './components/Topcoder'; export { default as Toptal } from './components/Toptal'; export { default as Torbrowser } from './components/Torbrowser'; export { default as Torproject } from './components/Torproject'; export { default as Toshiba } from './components/Toshiba'; -export { default as Tplink } from './components/Tplink'; export { default as Toyota } from './components/Toyota'; +export { default as Tplink } from './components/Tplink'; export { default as Tqdm } from './components/Tqdm'; export { default as Traefikmesh } from './components/Traefikmesh'; export { default as Traefikproxy } from './components/Traefikproxy'; @@ -2087,8 +2120,8 @@ export { default as Tsnode } from './components/Tsnode'; export { default as Tubi } from './components/Tubi'; export { default as Tui } from './components/Tui'; export { default as Tumblr } from './components/Tumblr'; -export { default as Turborepo } from './components/Turborepo'; export { default as Tunein } from './components/Tunein'; +export { default as Turborepo } from './components/Turborepo'; export { default as Turbosquid } from './components/Turbosquid'; export { default as Turkishairlines } from './components/Turkishairlines'; export { default as Tutanota } from './components/Tutanota'; @@ -2130,8 +2163,8 @@ export { default as Untappd } from './components/Untappd'; export { default as Upcloud } from './components/Upcloud'; export { default as Uplabs } from './components/Uplabs'; export { default as Uploaded } from './components/Uploaded'; -export { default as Upstash } from './components/Upstash'; export { default as Ups } from './components/Ups'; +export { default as Upstash } from './components/Upstash'; export { default as Uptimekuma } from './components/Uptimekuma'; export { default as Uptobox } from './components/Uptobox'; export { default as Upwork } from './components/Upwork'; @@ -2173,6 +2206,7 @@ export { default as Visualstudio } from './components/Visualstudio'; export { default as Visualstudiocode } from './components/Visualstudiocode'; export { default as Vite } from './components/Vite'; export { default as Vitess } from './components/Vitess'; +export { default as Vitest } from './components/Vitest'; export { default as Vivaldi } from './components/Vivaldi'; export { default as Vivino } from './components/Vivino'; export { default as Vk } from './components/Vk'; @@ -2185,6 +2219,7 @@ export { default as Vonage } from './components/Vonage'; export { default as Vowpalwabbit } from './components/Vowpalwabbit'; export { default as Vox } from './components/Vox'; export { default as Vsco } from './components/Vsco'; +export { default as Vscodium } from './components/Vscodium'; export { default as Vtex } from './components/Vtex'; export { default as Vuedotjs } from './components/Vuedotjs'; export { default as Vuetify } from './components/Vuetify'; @@ -2196,9 +2231,10 @@ export { default as Wagtail } from './components/Wagtail'; export { default as Wakatime } from './components/Wakatime'; export { default as Walkman } from './components/Walkman'; export { default as Wallabag } from './components/Wallabag'; -export { default as Wappalyzer } from './components/Wappalyzer'; export { default as Walmart } from './components/Walmart'; +export { default as Wappalyzer } from './components/Wappalyzer'; export { default as Warnerbros } from './components/Warnerbros'; +export { default as Warp } from './components/Warp'; export { default as Wasmcloud } from './components/Wasmcloud'; export { default as Wasmer } from './components/Wasmer'; export { default as Wattpad } from './components/Wattpad'; @@ -2206,8 +2242,8 @@ export { default as Waze } from './components/Waze'; export { default as Wearos } from './components/Wearos'; export { default as Weasyl } from './components/Weasyl'; export { default as WebThreeDotjs } from './components/WebThreeDotjs'; -export { default as Webauthn } from './components/Webauthn'; export { default as Webassembly } from './components/Webassembly'; +export { default as Webauthn } from './components/Webauthn'; export { default as Webcomponentsdotorg } from './components/Webcomponentsdotorg'; export { default as Webdriverio } from './components/Webdriverio'; export { default as Webflow } from './components/Webflow'; @@ -2216,8 +2252,8 @@ export { default as Webhint } from './components/Webhint'; export { default as Weblate } from './components/Weblate'; export { default as Webmin } from './components/Webmin'; export { default as Webmoney } from './components/Webmoney'; -export { default as Webrtc } from './components/Webrtc'; export { default as Webpack } from './components/Webpack'; +export { default as Webrtc } from './components/Webrtc'; export { default as Webstorm } from './components/Webstorm'; export { default as Webtoon } from './components/Webtoon'; export { default as Wechat } from './components/Wechat'; @@ -2242,14 +2278,14 @@ export { default as Winamp } from './components/Winamp'; export { default as Windicss } from './components/Windicss'; export { default as Windows } from './components/Windows'; export { default as Windows11 } from './components/Windows11'; -export { default as Windowsterminal } from './components/Windowsterminal'; export { default as Windows95 } from './components/Windows95'; +export { default as Windowsterminal } from './components/Windowsterminal'; export { default as Windowsxp } from './components/Windowsxp'; export { default as Winmate } from './components/Winmate'; export { default as Wipro } from './components/Wipro'; export { default as Wire } from './components/Wire'; -export { default as Wireshark } from './components/Wireshark'; export { default as Wireguard } from './components/Wireguard'; +export { default as Wireshark } from './components/Wireshark'; export { default as Wise } from './components/Wise'; export { default as Wish } from './components/Wish'; export { default as Wistia } from './components/Wistia'; @@ -2278,8 +2314,8 @@ export { default as Xdadevelopers } from './components/Xdadevelopers'; export { default as Xero } from './components/Xero'; export { default as Xfce } from './components/Xfce'; export { default as Xiaomi } from './components/Xiaomi'; -export { default as Xing } from './components/Xing'; export { default as Xilinx } from './components/Xilinx'; +export { default as Xing } from './components/Xing'; export { default as Xmpp } from './components/Xmpp'; export { default as Xo } from './components/Xo'; export { default as Xrp } from './components/Xrp'; @@ -2303,16 +2339,16 @@ export { default as Youtubestudio } from './components/Youtubestudio'; export { default as Youtubetv } from './components/Youtubetv'; export { default as Yubico } from './components/Yubico'; export { default as Zwave } from './components/Zwave'; -export { default as Zalando } from './components/Zalando'; export { default as Zabka } from './components/Zabka'; +export { default as Zalando } from './components/Zalando'; export { default as Zalo } from './components/Zalo'; export { default as Zapier } from './components/Zapier'; export { default as Zara } from './components/Zara'; export { default as Zazzle } from './components/Zazzle'; export { default as Zcash } from './components/Zcash'; export { default as Zdf } from './components/Zdf'; -export { default as Zelle } from './components/Zelle'; export { default as Zebratechnologies } from './components/Zebratechnologies'; +export { default as Zelle } from './components/Zelle'; export { default as Zend } from './components/Zend'; export { default as Zendframework } from './components/Zendframework'; export { default as Zendesk } from './components/Zendesk'; @@ -2326,6 +2362,7 @@ export { default as Zhihu } from './components/Zhihu'; export { default as Zig } from './components/Zig'; export { default as Zigbee } from './components/Zigbee'; export { default as Zillow } from './components/Zillow'; +export { default as Zincsearch } from './components/Zincsearch'; export { default as Zingat } from './components/Zingat'; export { default as Zoho } from './components/Zoho'; export { default as Zoiper } from './components/Zoiper'; @@ -2335,5 +2372,3 @@ export { default as Zorin } from './components/Zorin'; export { default as Zotero } from './components/Zotero'; export { default as Zulip } from './components/Zulip'; export { default as Zyte } from './components/Zyte'; -export { default as Thewashingtonpost } from './components/Thewashingtonpost'; -export { default as Thespritersresource } from './components/Thespritersresource';