@thesvg/react 0.6.0 → 0.7.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/dist/index.cjs CHANGED
@@ -4340,6 +4340,8 @@ const _miraheze = require('./miraheze.cjs');
4340
4340
  exports.Miraheze = _miraheze.default;
4341
4341
  const _miro = require('./miro.cjs');
4342
4342
  exports.Miro = _miro.default;
4343
+ const _mindstudio = require('./mindstudio.cjs');
4344
+ exports.Mindstudio = _mindstudio.default;
4343
4345
  const _misskey = require('./misskey.cjs');
4344
4346
  exports.Misskey = _misskey.default;
4345
4347
  const _mistral = require('./mistral.cjs');
package/dist/index.d.ts CHANGED
@@ -2171,6 +2171,7 @@ export { default as Mintlify } from './mintlify.js';
2171
2171
  export { default as Minutemailer } from './minutemailer.js';
2172
2172
  export { default as Miraheze } from './miraheze.js';
2173
2173
  export { default as Miro } from './miro.js';
2174
+ export { default as Mindstudio } from './mindstudio.js';
2174
2175
  export { default as Misskey } from './misskey.js';
2175
2176
  export { default as Mistral } from './mistral.js';
2176
2177
  export { default as MistralAi } from './mistral-ai.js';
package/dist/index.js CHANGED
@@ -2171,6 +2171,7 @@ export { default as Mintlify } from './mintlify.js';
2171
2171
  export { default as Minutemailer } from './minutemailer.js';
2172
2172
  export { default as Miraheze } from './miraheze.js';
2173
2173
  export { default as Miro } from './miro.js';
2174
+ export { default as Mindstudio } from './mindstudio.js';
2174
2175
  export { default as Misskey } from './misskey.js';
2175
2176
  export { default as Mistral } from './mistral.js';
2176
2177
  export { default as MistralAi } from './mistral-ai.js';
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+ // @thesvg/react — MindStudio
3
+ // Auto-generated. Do not edit.
4
+
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+
7
+ const react_1 = require("react");
8
+
9
+ const Mindstudio = react_1.forwardRef(function Mindstudio({ viewBox = '0 0 548 322', ...props }, ref) {
10
+ return react_1.createElement(
11
+ 'svg',
12
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
13
+ ...[
14
+ {
15
+ "type": "g",
16
+ "props": {
17
+ "clipPath": "url(#clip0_611_32)"
18
+ },
19
+ "children": [
20
+ {
21
+ "type": "path",
22
+ "props": {
23
+ "fillRule": "evenodd",
24
+ "clipRule": "evenodd",
25
+ "d": "M241.619 75.6237C237.848 87.0896 235.541 99.3014 230.062 109.897C200.874 166.351 171.198 222.564 141.077 278.535C119.554 318.529 75.1941 332.764 37.8313 312.62C1.47909 293.022 -10.6419 249.112 10.1278 209.389C40.143 151.985 70.1522 94.563 101.311 37.7692C118.425 6.57327 152.785 -6.12036 186.615 3.56515C218.231 12.6174 239.831 41.7542 241.619 75.6237Z",
26
+ "fill": "black"
27
+ },
28
+ "children": []
29
+ },
30
+ {
31
+ "type": "path",
32
+ "props": {
33
+ "fillRule": "evenodd",
34
+ "clipRule": "evenodd",
35
+ "d": "M444.345 75.2575C440.575 86.7235 438.268 98.9352 432.79 109.53C403.6 165.985 373.925 222.198 343.804 278.169C322.281 318.162 277.921 332.398 240.558 312.254C204.206 292.656 192.084 248.746 212.855 209.022C242.87 151.619 272.879 94.1968 304.037 37.403C321.151 6.20707 355.512 -6.48657 389.341 3.19893C420.958 12.2511 442.558 41.3881 444.345 75.2575Z",
36
+ "fill": "black"
37
+ },
38
+ "children": []
39
+ },
40
+ {
41
+ "type": "path",
42
+ "props": {
43
+ "fillRule": "evenodd",
44
+ "clipRule": "evenodd",
45
+ "d": "M475.447 96.5215C496.348 133.171 516.963 168.548 536.833 204.383C556.104 239.138 549.92 279.298 522.384 303.658C495.162 327.74 455.065 327.715 428.233 303.599C400.893 279.026 394.939 238.665 414.198 204.153C434.149 168.399 454.661 132.991 475.447 96.5215Z",
46
+ "fill": "black"
47
+ },
48
+ "children": []
49
+ }
50
+ ]
51
+ },
52
+ {
53
+ "type": "defs",
54
+ "props": {},
55
+ "children": [
56
+ {
57
+ "type": "clipPath",
58
+ "props": {
59
+ "id": "clip0_611_32"
60
+ },
61
+ "children": [
62
+ {
63
+ "type": "rect",
64
+ "props": {
65
+ "width": "548",
66
+ "height": "322",
67
+ "fill": "white"
68
+ },
69
+ "children": []
70
+ }
71
+ ]
72
+ }
73
+ ]
74
+ }
75
+ ]
76
+ .map(function(el) {
77
+ if (typeof el === 'string') return el;
78
+ return react_1.createElement(el.type, el.props, ...(el.children || []));
79
+ })
80
+ );
81
+ });
82
+ Mindstudio.displayName = 'Mindstudio';
83
+
84
+ exports.default = Mindstudio;
@@ -0,0 +1,9 @@
1
+ // @thesvg/react — MindStudio
2
+ // Auto-generated. Do not edit.
3
+
4
+ import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
5
+
6
+ export type SvgIconProps = SVGProps<SVGSVGElement>;
7
+
8
+ declare const Mindstudio: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
9
+ export default Mindstudio;
@@ -0,0 +1,33 @@
1
+ // @thesvg/react — MindStudio
2
+ // Auto-generated. Do not edit.
3
+
4
+ import { forwardRef } from 'react';
5
+ import type { SVGProps } from 'react';
6
+
7
+ const Mindstudio = forwardRef<SVGSVGElement, SVGProps<SVGSVGElement>>(
8
+ function Mindstudio({ viewBox = '0 0 548 322', ...props }, ref) {
9
+ return (
10
+ <svg
11
+ ref={ref}
12
+ viewBox={viewBox}
13
+ fill="none"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ {...props}
16
+ >
17
+ <g clipPath="url(#clip0_611_32)">
18
+ <path fillRule="evenodd" clipRule="evenodd" d="M241.619 75.6237C237.848 87.0896 235.541 99.3014 230.062 109.897C200.874 166.351 171.198 222.564 141.077 278.535C119.554 318.529 75.1941 332.764 37.8313 312.62C1.47909 293.022 -10.6419 249.112 10.1278 209.389C40.143 151.985 70.1522 94.563 101.311 37.7692C118.425 6.57327 152.785 -6.12036 186.615 3.56515C218.231 12.6174 239.831 41.7542 241.619 75.6237Z" fill="black"/>
19
+ <path fillRule="evenodd" clipRule="evenodd" d="M444.345 75.2575C440.575 86.7235 438.268 98.9352 432.79 109.53C403.6 165.985 373.925 222.198 343.804 278.169C322.281 318.162 277.921 332.398 240.558 312.254C204.206 292.656 192.084 248.746 212.855 209.022C242.87 151.619 272.879 94.1968 304.037 37.403C321.151 6.20707 355.512 -6.48657 389.341 3.19893C420.958 12.2511 442.558 41.3881 444.345 75.2575Z" fill="black"/>
20
+ <path fillRule="evenodd" clipRule="evenodd" d="M475.447 96.5215C496.348 133.171 516.963 168.548 536.833 204.383C556.104 239.138 549.92 279.298 522.384 303.658C495.162 327.74 455.065 327.715 428.233 303.599C400.893 279.026 394.939 238.665 414.198 204.153C434.149 168.399 454.661 132.991 475.447 96.5215Z" fill="black"/>
21
+ </g>
22
+ <defs>
23
+ <clipPath id="clip0_611_32">
24
+ <rect width="548" height="322" fill="white"/>
25
+ </clipPath>
26
+ </defs>
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+ Mindstudio.displayName = 'Mindstudio';
32
+
33
+ export default Mindstudio;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thesvg/react",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "Typed React SVG components for all 3,800+ brand icons from thesvg.org",
5
5
  "type": "module",
6
6
  "sideEffects": false,