@thesvg/react 2.1.4 → 2.1.5

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.
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // @thesvg/react — FPT Play
3
+ // Auto-generated. Do not edit.
4
+
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+
7
+ const react_1 = require("react");
8
+
9
+ const FptPlay = react_1.forwardRef(function FptPlay({ viewBox = '0 0 279.62 279.9', ...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
+ ...[{"type":"path","props":{"fill":"#f26f21","d":"M68.4,7.3C92.8,1.1,118.1.1,143.2,0c15.1.5,30.2.6,45.1,2.9,17.2,2.5,34.8,6,49.9,15,11.6,6.8,20.9,17.3,26.6,29.4,8.9,18.3,11.5,38.7,13.4,58.7,2.3,29,2,58.2-2.3,87-2.9,19.1-8.1,38.8-20.7,54-9.9,12.1-24.3,19.7-39.2,23.9-19.6,5.5-56.9,7.9-76.2,9,0,0-39-1.7-50.6-3.7-20.8-3.2-42.8-8.2-58.7-22.9-15.6-14.2-22.5-35.1-26-55.3-2.5-15.2-3.7-30.6-4.5-46v-15.6c1.4-25.2,1.6-51,9.4-75.3,3.9-12.4,10.1-24.3,19.4-33.4,10.8-10.7,25.2-16.7,39.6-20.4ZM85.6,60.4c-5.1,1.3-7.8,6.6-7.6,11.6-.1,44.7,0,89.3-.1,134,.1,3.8.1,8.2,2.9,11.2,3.9,4,10.5,4.6,15.3,1.8,38.7-21,77.3-42.1,115.9-63.1,2.8-1.6,5.7-2.8,8.1-5,4.3-4.1,5.2-11.1,2.1-16.1-2.1-3.9-6.4-5.7-10.1-7.8-38.6-21.8-77.1-43.6-115.7-65.3-3.1-2-7.2-2.5-10.8-1.3Z"},"children":[]}]
14
+ .map(function _c(el) {
15
+ if (typeof el === 'string') return el;
16
+ return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
17
+ })
18
+ );
19
+ });
20
+ FptPlay.displayName = 'FptPlay';
21
+
22
+ exports.default = FptPlay;
@@ -0,0 +1,9 @@
1
+ // @thesvg/react — FPT Play
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 FptPlay: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
9
+ export default FptPlay;
@@ -0,0 +1,21 @@
1
+ // @thesvg/react — FPT Play
2
+ // Auto-generated. Do not edit.
3
+
4
+ import { forwardRef, createElement } from 'react';
5
+
6
+ const FptPlay = forwardRef(
7
+ function FptPlay({ viewBox = '0 0 279.62 279.9', ...props }, ref) {
8
+ return createElement(
9
+ 'svg',
10
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
11
+ ...[{"type":"path","props":{"fill":"#f26f21","d":"M68.4,7.3C92.8,1.1,118.1.1,143.2,0c15.1.5,30.2.6,45.1,2.9,17.2,2.5,34.8,6,49.9,15,11.6,6.8,20.9,17.3,26.6,29.4,8.9,18.3,11.5,38.7,13.4,58.7,2.3,29,2,58.2-2.3,87-2.9,19.1-8.1,38.8-20.7,54-9.9,12.1-24.3,19.7-39.2,23.9-19.6,5.5-56.9,7.9-76.2,9,0,0-39-1.7-50.6-3.7-20.8-3.2-42.8-8.2-58.7-22.9-15.6-14.2-22.5-35.1-26-55.3-2.5-15.2-3.7-30.6-4.5-46v-15.6c1.4-25.2,1.6-51,9.4-75.3,3.9-12.4,10.1-24.3,19.4-33.4,10.8-10.7,25.2-16.7,39.6-20.4ZM85.6,60.4c-5.1,1.3-7.8,6.6-7.6,11.6-.1,44.7,0,89.3-.1,134,.1,3.8.1,8.2,2.9,11.2,3.9,4,10.5,4.6,15.3,1.8,38.7-21,77.3-42.1,115.9-63.1,2.8-1.6,5.7-2.8,8.1-5,4.3-4.1,5.2-11.1,2.1-16.1-2.1-3.9-6.4-5.7-10.1-7.8-38.6-21.8-77.1-43.6-115.7-65.3-3.1-2-7.2-2.5-10.8-1.3Z"},"children":[]}]
12
+ .map(function _c(el) {
13
+ if (typeof el === 'string') return el;
14
+ return createElement(el.type, el.props, ...(el.children || []).map(_c));
15
+ })
16
+ );
17
+ }
18
+ );
19
+ FptPlay.displayName = 'FptPlay';
20
+
21
+ export default FptPlay;
package/dist/index.cjs CHANGED
@@ -5192,6 +5192,8 @@ const _foxtel = require('./foxtel.cjs');
5192
5192
  exports.Foxtel = _foxtel.default;
5193
5193
  const _fozzy = require('./fozzy.cjs');
5194
5194
  exports.Fozzy = _fozzy.default;
5195
+ const _fpt_play = require('./fpt-play.cjs');
5196
+ exports.FptPlay = _fpt_play.default;
5195
5197
  const _framer = require('./framer.cjs');
5196
5198
  exports.Framer = _framer.default;
5197
5199
  const _framework = require('./framework.cjs');
@@ -9260,6 +9262,8 @@ const _roblox_studio = require('./roblox-studio.cjs');
9260
9262
  exports.RobloxStudio = _roblox_studio.default;
9261
9263
  const _roboflow = require('./roboflow.cjs');
9262
9264
  exports.Roboflow = _roboflow.default;
9265
+ const _roborock = require('./roborock.cjs');
9266
+ exports.Roborock = _roborock.default;
9263
9267
  const _robot_framework = require('./robot-framework.cjs');
9264
9268
  exports.RobotFramework = _robot_framework.default;
9265
9269
  const _rocket = require('./rocket.cjs');
package/dist/index.d.ts CHANGED
@@ -2597,6 +2597,7 @@ export { default as Foursquare } from './foursquare.js';
2597
2597
  export { default as Fox } from './fox.js';
2598
2598
  export { default as Foxtel } from './foxtel.js';
2599
2599
  export { default as Fozzy } from './fozzy.js';
2600
+ export { default as FptPlay } from './fpt-play.js';
2600
2601
  export { default as Framer } from './framer.js';
2601
2602
  export { default as Framework } from './framework.js';
2602
2603
  export { default as Framework7 } from './framework7.js';
@@ -4631,6 +4632,7 @@ export { default as Robinhood } from './robinhood.js';
4631
4632
  export { default as Roblox } from './roblox.js';
4632
4633
  export { default as RobloxStudio } from './roblox-studio.js';
4633
4634
  export { default as Roboflow } from './roboflow.js';
4635
+ export { default as Roborock } from './roborock.js';
4634
4636
  export { default as RobotFramework } from './robot-framework.js';
4635
4637
  export { default as Rocket } from './rocket.js';
4636
4638
  export { default as Rocketdotchat } from './rocketdotchat.js';
package/dist/index.js CHANGED
@@ -2595,6 +2595,7 @@ export { default as Foursquare } from './foursquare.js';
2595
2595
  export { default as Fox } from './fox.js';
2596
2596
  export { default as Foxtel } from './foxtel.js';
2597
2597
  export { default as Fozzy } from './fozzy.js';
2598
+ export { default as FptPlay } from './fpt-play.js';
2598
2599
  export { default as Framer } from './framer.js';
2599
2600
  export { default as Framework } from './framework.js';
2600
2601
  export { default as Framework7 } from './framework7.js';
@@ -4629,6 +4630,7 @@ export { default as Robinhood } from './robinhood.js';
4629
4630
  export { default as Roblox } from './roblox.js';
4630
4631
  export { default as RobloxStudio } from './roblox-studio.js';
4631
4632
  export { default as Roboflow } from './roboflow.js';
4633
+ export { default as Roborock } from './roborock.js';
4632
4634
  export { default as RobotFramework } from './robot-framework.js';
4633
4635
  export { default as Rocket } from './rocket.js';
4634
4636
  export { default as Rocketdotchat } from './rocketdotchat.js';
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // @thesvg/react — Roborock
3
+ // Auto-generated. Do not edit.
4
+
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+
7
+ const react_1 = require("react");
8
+
9
+ const Roborock = react_1.forwardRef(function Roborock({ viewBox = '0 0 1136.55 1136.55', ...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
+ ...[{"type":"path","props":{"fill":"#ea0029","d":"M577.06.07h0C263.15-4.64,5.06,245.86.07,559.5c-4.71,313.91,245.79,571.99,559.43,576.99,313.91,4.71,572.01-245.79,576.99-559.43C1141.2,263.15,890.69,5.06,577.06.07ZM868.43,855.32v.27H268.4c-31.45,0-47.18-38.01-24.64-60.28l10.75-10.73,439.93-434.97h-366.82c-2.62,0-3.67-3.12-2.1-4.71l64.47-63.95h388.81c31.45,0,47.16,37.99,24.64,60.26l-8.67,8.39-440.45,434.97h428.43l-167.43-167.45,50.03-50.03,217.24,217.47,10.73,10.75c22.02,22.29,6.29,60.01-24.89,60.01Z"},"children":[]}]
14
+ .map(function _c(el) {
15
+ if (typeof el === 'string') return el;
16
+ return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
17
+ })
18
+ );
19
+ });
20
+ Roborock.displayName = 'Roborock';
21
+
22
+ exports.default = Roborock;
@@ -0,0 +1,9 @@
1
+ // @thesvg/react — Roborock
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 Roborock: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
9
+ export default Roborock;
@@ -0,0 +1,21 @@
1
+ // @thesvg/react — Roborock
2
+ // Auto-generated. Do not edit.
3
+
4
+ import { forwardRef, createElement } from 'react';
5
+
6
+ const Roborock = forwardRef(
7
+ function Roborock({ viewBox = '0 0 1136.55 1136.55', ...props }, ref) {
8
+ return createElement(
9
+ 'svg',
10
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
11
+ ...[{"type":"path","props":{"fill":"#ea0029","d":"M577.06.07h0C263.15-4.64,5.06,245.86.07,559.5c-4.71,313.91,245.79,571.99,559.43,576.99,313.91,4.71,572.01-245.79,576.99-559.43C1141.2,263.15,890.69,5.06,577.06.07ZM868.43,855.32v.27H268.4c-31.45,0-47.18-38.01-24.64-60.28l10.75-10.73,439.93-434.97h-366.82c-2.62,0-3.67-3.12-2.1-4.71l64.47-63.95h388.81c31.45,0,47.16,37.99,24.64,60.26l-8.67,8.39-440.45,434.97h428.43l-167.43-167.45,50.03-50.03,217.24,217.47,10.73,10.75c22.02,22.29,6.29,60.01-24.89,60.01Z"},"children":[]}]
12
+ .map(function _c(el) {
13
+ if (typeof el === 'string') return el;
14
+ return createElement(el.type, el.props, ...(el.children || []).map(_c));
15
+ })
16
+ );
17
+ }
18
+ );
19
+ Roborock.displayName = 'Roborock';
20
+
21
+ export default Roborock;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thesvg/react",
3
- "version": "2.1.4",
3
+ "version": "2.1.5",
4
4
  "description": "Typed React SVG components for all 3,800+ brand icons from thesvg.org",
5
5
  "type": "module",
6
6
  "sideEffects": false,