diff --git a/.changeset/brown-spies-brush.md b/.changeset/brown-spies-brush.md new file mode 100644 index 000000000..d137cd4b3 --- /dev/null +++ b/.changeset/brown-spies-brush.md @@ -0,0 +1,5 @@ +--- +'@icons-pack/react-simple-icons': minor +--- + +Bump simple-icons@7.14.0 diff --git a/package.json b/package.json index 29e18136f..4031397d4 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.13.0", + "simple-icons": "7.14.0", "typescript": "^4.7.3", "uppercamelcase": "^3.0.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d8db26116..f179eeb07 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.13.0 + simple-icons: 7.14.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.13.0 + simple-icons: 7.14.0 typescript: 4.7.3 uppercamelcase: 3.0.0 @@ -4989,8 +4989,8 @@ packages: simple-concat: 1.0.1 dev: true - /simple-icons/7.13.0: - resolution: {integrity: sha512-JrZKIBE9nWkoRib8UISvY9Q1cBgfCAHRWO8bYXIObJ1tJcLPVKu9AzjjS+i6Hp5b3NXsFSrLIy4UxIJHbC5JIw==} + /simple-icons/7.14.0: + resolution: {integrity: sha512-peojKZtdmNlM4ofTERoJWwP5p/R3mRBtFf9ERTaEmnepXQxdealNZOyjPQie9M1gKQYuy0xD5ckwUWvNFK/fNQ==} engines: {node: '>=0.12.18'} dev: true diff --git a/src/components/Cairographics.tsx b/src/components/Cairographics.tsx new file mode 100644 index 000000000..1d29a8199 --- /dev/null +++ b/src/components/Cairographics.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type CairographicsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Cairographics = React.forwardRef(function Cairographics({color = 'currentColor', size = 24, title = "cairographics", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Cairographics; diff --git a/src/components/Codesandbox.tsx b/src/components/Codesandbox.tsx index f5af2e226..86acebcb2 100644 --- a/src/components/Codesandbox.tsx +++ b/src/components/Codesandbox.tsx @@ -20,7 +20,7 @@ const Codesandbox = React.forwardRef(function C return ( {title} - + ); }); diff --git a/src/components/Greenhouse.tsx b/src/components/Greenhouse.tsx new file mode 100644 index 000000000..d4244c6ee --- /dev/null +++ b/src/components/Greenhouse.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type GreenhouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Greenhouse = React.forwardRef(function Greenhouse({color = 'currentColor', size = 24, title = "greenhouse", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Greenhouse; diff --git a/src/components/Honey.tsx b/src/components/Honey.tsx new file mode 100644 index 000000000..ec14f2359 --- /dev/null +++ b/src/components/Honey.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type HoneyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Honey = React.forwardRef(function Honey({color = 'currentColor', size = 24, title = "honey", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Honey; diff --git a/src/components/Prevention.tsx b/src/components/Prevention.tsx new file mode 100644 index 000000000..22c7a5b15 --- /dev/null +++ b/src/components/Prevention.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type PreventionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Prevention = React.forwardRef(function Prevention({color = 'currentColor', size = 24, title = "prevention", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Prevention; diff --git a/src/components/Surrealdb.tsx b/src/components/Surrealdb.tsx new file mode 100644 index 000000000..24b13acd1 --- /dev/null +++ b/src/components/Surrealdb.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +export type SurrealdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * Hex color or color name + */ + title?: string; + /** + * The size of the Icon. + */ + color?: string; + /** + * The title provides an accessible short text description to the SVG + */ + size?: string | number; +}; + +const Surrealdb = React.forwardRef(function Surrealdb({color = 'currentColor', size = 24, title = "surrealdb", ...others}, ref) { + + return ( + + {title} + + + ); +}); + +export default Surrealdb; diff --git a/src/index.ts b/src/index.ts index 5a7c655c7..d7da115cc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -339,6 +339,7 @@ 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 Cairographics } from './components/Cairographics'; export { default as Cairometro } from './components/Cairometro'; export { default as Cakephp } from './components/Cakephp'; export { default as Campaignmonitor } from './components/Campaignmonitor'; @@ -867,6 +868,7 @@ export { default as Graphql } from './components/Graphql'; export { default as Grav } from './components/Grav'; export { default as Gravatar } from './components/Gravatar'; export { default as Graylog } from './components/Graylog'; +export { default as Greenhouse } from './components/Greenhouse'; export { default as Greensock } from './components/Greensock'; export { default as Griddotai } from './components/Griddotai'; export { default as Gridsome } from './components/Gridsome'; @@ -931,6 +933,7 @@ export { default as Homebrew } from './components/Homebrew'; export { default as Homebridge } from './components/Homebridge'; export { default as Homify } from './components/Homify'; export { default as Honda } from './components/Honda'; +export { default as Honey } from './components/Honey'; export { default as Hootsuite } from './components/Hootsuite'; export { default as Hoppscotch } from './components/Hoppscotch'; export { default as Hotelsdotcom } from './components/Hotelsdotcom'; @@ -1601,6 +1604,7 @@ export { default as Premierleague } from './components/Premierleague'; export { default as Prestashop } from './components/Prestashop'; export { default as Presto } from './components/Presto'; export { default as Prettier } from './components/Prettier'; +export { default as Prevention } from './components/Prevention'; export { default as Prezi } from './components/Prezi'; export { default as Prime } from './components/Prime'; export { default as Primevideo } from './components/Primevideo'; @@ -1990,6 +1994,7 @@ export { default as Sumologic } from './components/Sumologic'; export { default as Supabase } from './components/Supabase'; export { default as Superuser } from './components/Superuser'; export { default as Supermicro } from './components/Supermicro'; +export { default as Surrealdb } from './components/Surrealdb'; export { default as Surveymonkey } from './components/Surveymonkey'; export { default as Suse } from './components/Suse'; export { default as Suzuki } from './components/Suzuki';