diff --git a/.changeset/breezy-ways-suffer.md b/.changeset/breezy-ways-suffer.md new file mode 100644 index 000000000..21f874c10 --- /dev/null +++ b/.changeset/breezy-ways-suffer.md @@ -0,0 +1,5 @@ +--- +'@icons-pack/react-simple-icons': minor +--- + +Bump simple-icons@7.17.0 diff --git a/README.md b/README.md index 8721c9db6..e82ad2996 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # react-simple-icons -This package provides the [Simple Icons 7.16.0](https://github.com/simple-icons/simple-icons/releases/tag/7.16.0) +This package provides the [Simple Icons 7.17.0](https://github.com/simple-icons/simple-icons/releases/tag/7.17.0) packaged as a set of [React](https://facebook.github.io/react/) components. diff --git a/package.json b/package.json index c03bdf3d4..f8e510963 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.16.0", + "simple-icons": "7.17.0", "typescript": "^4.7.3", "uppercamelcase": "^3.0.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2048fd2c7..663f30c78 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.16.0 + simple-icons: 7.17.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.16.0 + simple-icons: 7.17.0 typescript: 4.7.3 uppercamelcase: 3.0.0 @@ -4989,8 +4989,8 @@ packages: simple-concat: 1.0.1 dev: true - /simple-icons/7.16.0: - resolution: {integrity: sha512-LEH2BdPyqQY5jj1TxDxnfjnJwdZlU/Paa46a6VSHy/Qosly2yvWb3CI9AjPendaA+ZpeSISuAeWVFDMyAX4Gwg==} + /simple-icons/7.17.0: + resolution: {integrity: sha512-Yvbfgo1HW14qDNsiR9lr2jEizSvKJs8iLmX/sHKZO7UZxA9XvwkOLlQgow4FWRq/JzF/CEtn/oqPcsAe4UV+VA==} engines: {node: '>=0.12.18'} dev: true diff --git a/src/components/Backstage.tsx b/src/components/Backstage.tsx new file mode 100644 index 000000000..a44d2f6af --- /dev/null +++ b/src/components/Backstage.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type BackstageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Backstage = React.forwardRef(function Backstage({color = 'currentColor', size = 24, title = "backstage", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Backstage; diff --git a/src/components/EThree.tsx b/src/components/EThree.tsx new file mode 100644 index 000000000..149a4f968 --- /dev/null +++ b/src/components/EThree.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type EThreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const EThree = React.forwardRef(function EThree({color = 'currentColor', size = 24, title = "e3", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default EThree; diff --git a/src/components/Elgato.tsx b/src/components/Elgato.tsx new file mode 100644 index 000000000..08cf789ed --- /dev/null +++ b/src/components/Elgato.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type ElgatoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Elgato = React.forwardRef(function Elgato({color = 'currentColor', size = 24, title = "elgato", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Elgato; diff --git a/src/components/Iced.tsx b/src/components/Iced.tsx new file mode 100644 index 000000000..52a842e98 --- /dev/null +++ b/src/components/Iced.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type IcedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Iced = React.forwardRef(function Iced({color = 'currentColor', size = 24, title = "iced", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Iced; diff --git a/src/components/Linktree.tsx b/src/components/Linktree.tsx index f05b8e6c2..10354b4bb 100644 --- a/src/components/Linktree.tsx +++ b/src/components/Linktree.tsx @@ -20,7 +20,7 @@ const Linktree = React.forwardRef(function Linktre return ( {title} - + ); }); diff --git a/src/components/Standardjs.tsx b/src/components/Standardjs.tsx new file mode 100644 index 000000000..3a56a44a9 --- /dev/null +++ b/src/components/Standardjs.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type StandardjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Standardjs = React.forwardRef(function Standardjs({color = 'currentColor', size = 24, title = "standardjs", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Standardjs; diff --git a/src/index.ts b/src/index.ts index 2848714c8..52db030bb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -239,6 +239,7 @@ export { default as Babel } from './components/Babel'; export { default as Backblaze } from './components/Backblaze'; export { default as Backbonedotjs } from './components/Backbonedotjs'; export { default as Backendless } from './components/Backendless'; +export { default as Backstage } from './components/Backstage'; export { default as Badgr } from './components/Badgr'; export { default as Badoo } from './components/Badoo'; export { default as Baidu } from './components/Baidu'; @@ -603,6 +604,7 @@ export { default as Dwm } from './components/Dwm'; export { default as DynamicsThreeHundredSixtyFive } from './components/DynamicsThreeHundredSixtyFive'; export { default as Dynatrace } from './components/Dynatrace'; export { default as Edotleclerc } from './components/Edotleclerc'; +export { default as EThree } from './components/EThree'; export { default as Ea } from './components/Ea'; export { default as Eagle } from './components/Eagle'; export { default as Easyjet } from './components/Easyjet'; @@ -630,6 +632,7 @@ export { default as Element } from './components/Element'; export { default as Elementary } from './components/Elementary'; export { default as Elementor } from './components/Elementor'; export { default as Eleventy } from './components/Eleventy'; +export { default as Elgato } from './components/Elgato'; export { default as Elixir } from './components/Elixir'; export { default as Ello } from './components/Ello'; export { default as Elm } from './components/Elm'; @@ -972,6 +975,7 @@ 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 Iced } from './components/Iced'; export { default as Iceland } from './components/Iceland'; export { default as Icinga } from './components/Icinga'; export { default as Icloud } from './components/Icloud'; @@ -1966,6 +1970,7 @@ export { default as Stackpath } from './components/Stackpath'; export { default as Stackshare } from './components/Stackshare'; export { default as Stadia } from './components/Stadia'; export { default as Staffbase } from './components/Staffbase'; +export { default as Standardjs } from './components/Standardjs'; export { default as Startrek } from './components/Startrek'; export { default as Starbucks } from './components/Starbucks'; export { default as Stardock } from './components/Stardock';