@icons-pack/react-simple-icons 12.2.0 → 12.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/icons/SiDuckduckgo.cjs +1 -1
- package/icons/SiDuckduckgo.mjs +1 -1
- package/icons/SiGandi.cjs +51 -0
- package/icons/SiGandi.d.ts +4 -0
- package/icons/SiGandi.mjs +27 -0
- package/icons/SiGleam.cjs +51 -0
- package/icons/SiGleam.d.ts +4 -0
- package/icons/SiGleam.mjs +27 -0
- package/icons/SiH2database.cjs +51 -0
- package/icons/SiH2database.d.ts +4 -0
- package/icons/SiH2database.mjs +27 -0
- package/icons/SiMessenger.cjs +2 -2
- package/icons/SiMessenger.d.ts +1 -1
- package/icons/SiMessenger.mjs +2 -2
- package/icons/SiOsmand.cjs +51 -0
- package/icons/SiOsmand.d.ts +4 -0
- package/icons/SiOsmand.mjs +27 -0
- package/icons/SiPortableappsdotcom.cjs +51 -0
- package/icons/SiPortableappsdotcom.d.ts +4 -0
- package/icons/SiPortableappsdotcom.mjs +27 -0
- package/icons/SiTrakt.cjs +2 -2
- package/icons/SiTrakt.d.ts +1 -1
- package/icons/SiTrakt.mjs +2 -2
- package/icons/SiZenbrowser.cjs +51 -0
- package/icons/SiZenbrowser.d.ts +4 -0
- package/icons/SiZenbrowser.mjs +27 -0
- package/index.cjs +18 -0
- package/index.d.ts +6 -0
- package/index.mjs +6 -0
- package/package.json +2 -2
- package/src/icons/SiDuckduckgo.tsx +1 -1
- package/src/icons/SiGandi.tsx +45 -0
- package/src/icons/SiGleam.tsx +45 -0
- package/src/icons/SiH2database.tsx +45 -0
- package/src/icons/SiMessenger.tsx +2 -2
- package/src/icons/SiOsmand.tsx +45 -0
- package/src/icons/SiPortableappsdotcom.tsx +45 -0
- package/src/icons/SiTrakt.tsx +2 -2
- package/src/icons/SiZenbrowser.tsx +45 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiZenbrowserProps = React.ComponentPropsWithoutRef<'svg'> & {
|
|
7
|
+
/**
|
|
8
|
+
* The title provides an accessible short text description to the SVG
|
|
9
|
+
*/
|
|
10
|
+
title?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Hex color or color name or "default" to use the default hex for each icon
|
|
13
|
+
*/
|
|
14
|
+
color?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The size of the Icon.
|
|
17
|
+
*/
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const defaultColor = '#F76F53';
|
|
22
|
+
|
|
23
|
+
const SiZenbrowser: IconType = React.forwardRef<SVGSVGElement, SiZenbrowserProps>(function SiZenbrowser({title = 'Zen Browser', color = 'currentColor', size = 24, ...others }, ref) {
|
|
24
|
+
if (color === 'default') {
|
|
25
|
+
color = defaultColor;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<svg
|
|
30
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
31
|
+
width={size}
|
|
32
|
+
height={size}
|
|
33
|
+
fill={color}
|
|
34
|
+
viewBox='0 0 24 24'
|
|
35
|
+
ref={ref}
|
|
36
|
+
{...others}
|
|
37
|
+
>
|
|
38
|
+
<title>{title}</title>
|
|
39
|
+
<path d='M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-12 9.846c5.438 0 9.846-4.408 9.846-9.846S17.438 2.154 12 2.154 2.154 6.562 2.154 12 6.562 21.846 12 21.846zM20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0zm-8 6.462a6.462 6.462 0 1 0 0-12.924 6.462 6.462 0 0 0 0 12.924zm0-1.847a4.615 4.615 0 1 0 0-9.23 4.615 4.615 0 0 0 0 9.23zM15.692 12a3.692 3.692 0 1 1-7.384 0 3.692 3.692 0 0 1 7.384 0z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiZenbrowser as default, defaultColor };
|
|
45
|
+
|