diff --git a/.changeset/dirty-beans-breathe.md b/.changeset/dirty-beans-breathe.md new file mode 100644 index 000000000..86c8ea82c --- /dev/null +++ b/.changeset/dirty-beans-breathe.md @@ -0,0 +1,5 @@ +--- +'@icons-pack/react-simple-icons': minor +--- + +Bump simple-icons@7.15.0 diff --git a/README.md b/README.md index 40b265cfb..ef1048f68 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # react-simple-icons -This package provides the [Simple Icons 7.11.0](https://github.com/simple-icons/simple-icons/releases/tag/7.11.0) +This package provides the [Simple Icons 7.15.0](https://github.com/simple-icons/simple-icons/releases/tag/7.15.0) packaged as a set of [React](https://facebook.github.io/react/) components. diff --git a/package.json b/package.json index cd48996b1..afe5cd8e6 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.14.0", + "simple-icons": "7.15.0", "typescript": "^4.7.3", "uppercamelcase": "^3.0.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f179eeb07..b8611c66f 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.14.0 + simple-icons: 7.15.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.14.0 + simple-icons: 7.15.0 typescript: 4.7.3 uppercamelcase: 3.0.0 @@ -4989,8 +4989,8 @@ packages: simple-concat: 1.0.1 dev: true - /simple-icons/7.14.0: - resolution: {integrity: sha512-peojKZtdmNlM4ofTERoJWwP5p/R3mRBtFf9ERTaEmnepXQxdealNZOyjPQie9M1gKQYuy0xD5ckwUWvNFK/fNQ==} + /simple-icons/7.15.0: + resolution: {integrity: sha512-coAQCSm+bbYDsuSCKQ46IqKJ3DvYIdVHQrSeYjR/nijer18C4xh8WkIlTXYtiiSfblXXp4zjDJqZTyBX5Hcm/w==} engines: {node: '>=0.12.18'} dev: true diff --git a/src/components/Backblaze.tsx b/src/components/Backblaze.tsx new file mode 100644 index 000000000..fe9a4438b --- /dev/null +++ b/src/components/Backblaze.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type BackblazeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Backblaze = React.forwardRef(function Backblaze({color = 'currentColor', size = 24, title = "backblaze", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Backblaze; diff --git a/src/components/Billboard.tsx b/src/components/Billboard.tsx new file mode 100644 index 000000000..10f1978c2 --- /dev/null +++ b/src/components/Billboard.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type BillboardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Billboard = React.forwardRef(function Billboard({color = 'currentColor', size = 24, title = "billboard", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Billboard; diff --git a/src/components/Crayon.tsx b/src/components/Crayon.tsx new file mode 100644 index 000000000..7dfac35f7 --- /dev/null +++ b/src/components/Crayon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type CrayonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Crayon = React.forwardRef(function Crayon({color = 'currentColor', size = 24, title = "crayon", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Crayon; diff --git a/src/components/Fireship.tsx b/src/components/Fireship.tsx new file mode 100644 index 000000000..0ac1af2b2 --- /dev/null +++ b/src/components/Fireship.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type FireshipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Fireship = React.forwardRef(function Fireship({color = 'currentColor', size = 24, title = "fireship", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Fireship; diff --git a/src/components/Hedera.tsx b/src/components/Hedera.tsx new file mode 100644 index 000000000..54a90faa0 --- /dev/null +++ b/src/components/Hedera.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type HederaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Hedera = React.forwardRef(function Hedera({color = 'currentColor', size = 24, title = "hedera", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Hedera; diff --git a/src/components/Instructure.tsx b/src/components/Instructure.tsx new file mode 100644 index 000000000..6920afe6a --- /dev/null +++ b/src/components/Instructure.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type InstructureProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Instructure = React.forwardRef(function Instructure({color = 'currentColor', size = 24, title = "instructure", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Instructure; diff --git a/src/components/Penpot.tsx b/src/components/Penpot.tsx new file mode 100644 index 000000000..98e5a2cfb --- /dev/null +++ b/src/components/Penpot.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type PenpotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Penpot = React.forwardRef(function Penpot({color = 'currentColor', size = 24, title = "penpot", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Penpot; diff --git a/src/components/Persistent.tsx b/src/components/Persistent.tsx new file mode 100644 index 000000000..b98af14ce --- /dev/null +++ b/src/components/Persistent.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type PersistentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Persistent = React.forwardRef(function Persistent({color = 'currentColor', size = 24, title = "persistent", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Persistent; diff --git a/src/components/Pysyft.tsx b/src/components/Pysyft.tsx new file mode 100644 index 000000000..e06a93572 --- /dev/null +++ b/src/components/Pysyft.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type PysyftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Pysyft = React.forwardRef(function Pysyft({color = 'currentColor', size = 24, title = "pysyft", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Pysyft; diff --git a/src/components/Rsocket.tsx b/src/components/Rsocket.tsx new file mode 100644 index 000000000..a39eaa7c1 --- /dev/null +++ b/src/components/Rsocket.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type RsocketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Rsocket = React.forwardRef(function Rsocket({color = 'currentColor', size = 24, title = "rsocket", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Rsocket; diff --git a/src/index.ts b/src/index.ts index d7da115cc..8634809c7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -236,6 +236,7 @@ export { default as Azurefunctions } from './components/Azurefunctions'; export { default as Azurepipelines } from './components/Azurepipelines'; export { default as Bandrautomation } from './components/Bandrautomation'; 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 Badgr } from './components/Badgr'; @@ -268,6 +269,7 @@ export { default as Bigbasket } from './components/Bigbasket'; export { default as Bigbluebutton } from './components/Bigbluebutton'; export { default as Bigcommerce } from './components/Bigcommerce'; export { default as Bilibili } from './components/Bilibili'; +export { default as Billboard } from './components/Billboard'; export { default as Binance } from './components/Binance'; export { default as Biolink } from './components/Biolink'; export { default as Bit } from './components/Bit'; @@ -476,6 +478,7 @@ export { default as Coveralls } from './components/Coveralls'; export { default as Cpanel } from './components/Cpanel'; export { default as Craftcms } from './components/Craftcms'; export { default as Cratedb } from './components/Cratedb'; +export { default as Crayon } from './components/Crayon'; export { default as Createreactapp } from './components/Createreactapp'; export { default as Creativecommons } from './components/Creativecommons'; export { default as Credly } from './components/Credly'; @@ -708,6 +711,7 @@ 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 Fireship } from './components/Fireship'; export { default as First } from './components/First'; export { default as Fitbit } from './components/Fitbit'; export { default as Fite } from './components/Fite'; @@ -910,6 +914,7 @@ export { default as Hbo } from './components/Hbo'; export { default as Hcl } from './components/Hcl'; export { default as Headlessui } from './components/Headlessui'; export { default as Headspace } from './components/Headspace'; +export { default as Hedera } from './components/Hedera'; export { default as Hellofresh } from './components/Hellofresh'; export { default as Hellyhansen } from './components/Hellyhansen'; export { default as Helm } from './components/Helm'; @@ -997,6 +1002,7 @@ export { default as Instagram } from './components/Instagram'; export { default as Instapaper } from './components/Instapaper'; export { default as Instatus } from './components/Instatus'; export { default as Instructables } from './components/Instructables'; +export { default as Instructure } from './components/Instructure'; export { default as Integromat } from './components/Integromat'; export { default as Intel } from './components/Intel'; export { default as Intellijidea } from './components/Intellijidea'; @@ -1511,10 +1517,12 @@ export { default as Pegasusairlines } from './components/Pegasusairlines'; export { default as Pelican } from './components/Pelican'; export { default as Peloton } from './components/Peloton'; export { default as Penny } from './components/Penny'; +export { default as Penpot } from './components/Penpot'; 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 Persistent } from './components/Persistent'; export { default as Personio } from './components/Personio'; export { default as Petsathome } from './components/Petsathome'; export { default as Peugeot } from './components/Peugeot'; @@ -1645,6 +1653,7 @@ export { default as Pyg } from './components/Pyg'; export { default as Pypi } from './components/Pypi'; export { default as Pypy } from './components/Pypy'; export { default as Pyscaffold } from './components/Pyscaffold'; +export { default as Pysyft } from './components/Pysyft'; export { default as Pytest } from './components/Pytest'; export { default as Python } from './components/Python'; export { default as Pytorch } from './components/Pytorch'; @@ -1763,6 +1772,7 @@ export { default as Rossmann } from './components/Rossmann'; export { default as Rotaryinternational } from './components/Rotaryinternational'; export { default as Rottentomatoes } from './components/Rottentomatoes'; export { default as Roundcube } from './components/Roundcube'; +export { default as Rsocket } from './components/Rsocket'; export { default as Rss } from './components/Rss'; export { default as Rstudio } from './components/Rstudio'; export { default as Rte } from './components/Rte';