@photonix/icons 2.0.2 → 2.0.4

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,6 @@
1
+ import * as React from 'react';
2
+ export interface MusicNoteFilledProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number | string;
4
+ }
5
+ export declare const MusicNoteFilled: React.ForwardRefExoticComponent<Omit<MusicNoteFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ //# sourceMappingURL=MusicNoteFilled.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MusicNoteFilled.d.ts","sourceRoot":"","sources":["../src/MusicNoteFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,oBAAqB,SAAQ,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC;IACzE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,eAAe,yGAc3B,CAAC"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var MusicNoteFilled_exports = {};
30
+ __export(MusicNoteFilled_exports, {
31
+ MusicNoteFilled: () => MusicNoteFilled
32
+ });
33
+ module.exports = __toCommonJS(MusicNoteFilled_exports);
34
+ var import_jsx_runtime = require("react/jsx-runtime");
35
+ var React = __toESM(require("react"));
36
+ const MusicNoteFilled = React.forwardRef(
37
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
38
+ "svg",
39
+ {
40
+ ref,
41
+ width: width ?? size,
42
+ height: height ?? size,
43
+ viewBox: "0 0 24 24",
44
+ fill: "none",
45
+ xmlns: "http://www.w3.org/2000/svg",
46
+ ...props,
47
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16.9893 3.79102C17.5413 3.79115 17.9891 4.23897 17.9893 4.79102V5.79102C17.9893 6.34322 17.5414 6.79088 16.9893 6.79102H13.4893V16.6475C13.4954 16.732 13.5 16.8172 13.5 16.9033C13.5 18.8363 11.933 20.4033 10 20.4033C8.067 20.4033 6.5 18.8363 6.5 16.9033C6.50023 14.9705 8.06715 13.4033 10 13.4033C10.7391 13.4033 11.4243 13.6334 11.9893 14.0244V4.79102C11.9894 4.23889 12.4371 3.79102 12.9893 3.79102H16.9893Z", fill: "currentColor" })
48
+ }
49
+ )
50
+ );
51
+ MusicNoteFilled.displayName = "MusicNoteFilled";
52
+ // Annotate the CommonJS export names for ESM import in node:
53
+ 0 && (module.exports = {
54
+ MusicNoteFilled
55
+ });
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ const MusicNoteFilled = React.forwardRef(
4
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ jsx(
5
+ "svg",
6
+ {
7
+ ref,
8
+ width: width ?? size,
9
+ height: height ?? size,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ ...props,
14
+ children: /* @__PURE__ */ jsx("path", { d: "M16.9893 3.79102C17.5413 3.79115 17.9891 4.23897 17.9893 4.79102V5.79102C17.9893 6.34322 17.5414 6.79088 16.9893 6.79102H13.4893V16.6475C13.4954 16.732 13.5 16.8172 13.5 16.9033C13.5 18.8363 11.933 20.4033 10 20.4033C8.067 20.4033 6.5 18.8363 6.5 16.9033C6.50023 14.9705 8.06715 13.4033 10 13.4033C10.7391 13.4033 11.4243 13.6334 11.9893 14.0244V4.79102C11.9894 4.23889 12.4371 3.79102 12.9893 3.79102H16.9893Z", fill: "currentColor" })
15
+ }
16
+ )
17
+ );
18
+ MusicNoteFilled.displayName = "MusicNoteFilled";
19
+ export {
20
+ MusicNoteFilled
21
+ };
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ export interface MusicNoteOutlineProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number | string;
4
+ }
5
+ export declare const MusicNoteOutline: React.ForwardRefExoticComponent<Omit<MusicNoteOutlineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ //# sourceMappingURL=MusicNoteOutline.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MusicNoteOutline.d.ts","sourceRoot":"","sources":["../src/MusicNoteOutline.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,qBAAsB,SAAQ,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC;IAC1E,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,gBAAgB,0GAc5B,CAAC"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var MusicNoteOutline_exports = {};
30
+ __export(MusicNoteOutline_exports, {
31
+ MusicNoteOutline: () => MusicNoteOutline
32
+ });
33
+ module.exports = __toCommonJS(MusicNoteOutline_exports);
34
+ var import_jsx_runtime = require("react/jsx-runtime");
35
+ var React = __toESM(require("react"));
36
+ const MusicNoteOutline = React.forwardRef(
37
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
38
+ "svg",
39
+ {
40
+ ref,
41
+ width: width ?? size,
42
+ height: height ?? size,
43
+ viewBox: "0 0 24 24",
44
+ fill: "none",
45
+ xmlns: "http://www.w3.org/2000/svg",
46
+ ...props,
47
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16.9893 3.79102C17.5413 3.79115 17.9891 4.23897 17.9893 4.79102V5.79102C17.9893 6.34322 17.5414 6.79088 16.9893 6.79102H13.4893V16.6475C13.4954 16.732 13.5 16.8172 13.5 16.9033C13.5 18.8363 11.933 20.4033 10 20.4033C8.067 20.4033 6.5 18.8363 6.5 16.9033C6.50023 14.9705 8.06715 13.4033 10 13.4033C10.7391 13.4033 11.4243 13.6334 11.9893 14.0244V4.79102C11.9894 4.23889 12.4371 3.79102 12.9893 3.79102H16.9893Z", fill: "currentColor" })
48
+ }
49
+ )
50
+ );
51
+ MusicNoteOutline.displayName = "MusicNoteOutline";
52
+ // Annotate the CommonJS export names for ESM import in node:
53
+ 0 && (module.exports = {
54
+ MusicNoteOutline
55
+ });
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ const MusicNoteOutline = React.forwardRef(
4
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ jsx(
5
+ "svg",
6
+ {
7
+ ref,
8
+ width: width ?? size,
9
+ height: height ?? size,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ ...props,
14
+ children: /* @__PURE__ */ jsx("path", { d: "M16.9893 3.79102C17.5413 3.79115 17.9891 4.23897 17.9893 4.79102V5.79102C17.9893 6.34322 17.5414 6.79088 16.9893 6.79102H13.4893V16.6475C13.4954 16.732 13.5 16.8172 13.5 16.9033C13.5 18.8363 11.933 20.4033 10 20.4033C8.067 20.4033 6.5 18.8363 6.5 16.9033C6.50023 14.9705 8.06715 13.4033 10 13.4033C10.7391 13.4033 11.4243 13.6334 11.9893 14.0244V4.79102C11.9894 4.23889 12.4371 3.79102 12.9893 3.79102H16.9893Z", fill: "currentColor" })
15
+ }
16
+ )
17
+ );
18
+ MusicNoteOutline.displayName = "MusicNoteOutline";
19
+ export {
20
+ MusicNoteOutline
21
+ };
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ export interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number | string;
4
+ }
5
+ export declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ //# sourceMappingURL=PlayFilled.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlayFilled.d.ts","sourceRoot":"","sources":["../src/PlayFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,eAAgB,SAAQ,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC;IACpE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,UAAU,oGActB,CAAC"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var PlayFilled_exports = {};
30
+ __export(PlayFilled_exports, {
31
+ PlayFilled: () => PlayFilled
32
+ });
33
+ module.exports = __toCommonJS(PlayFilled_exports);
34
+ var import_jsx_runtime = require("react/jsx-runtime");
35
+ var React = __toESM(require("react"));
36
+ const PlayFilled = React.forwardRef(
37
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
38
+ "svg",
39
+ {
40
+ ref,
41
+ width: width ?? size,
42
+ height: height ?? size,
43
+ viewBox: "0 0 24 24",
44
+ fill: "none",
45
+ xmlns: "http://www.w3.org/2000/svg",
46
+ ...props,
47
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8.5 7.67026C8.5 6.90046 9.33333 6.41915 10 6.80405L17.5 11.1341C18.1665 11.519 18.1664 12.4806 17.5 12.8656L10 17.1966C9.33345 17.5813 8.50021 17.1 8.5 16.3304V7.67026Z", fill: "currentColor" })
48
+ }
49
+ )
50
+ );
51
+ PlayFilled.displayName = "PlayFilled";
52
+ // Annotate the CommonJS export names for ESM import in node:
53
+ 0 && (module.exports = {
54
+ PlayFilled
55
+ });
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ const PlayFilled = React.forwardRef(
4
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ jsx(
5
+ "svg",
6
+ {
7
+ ref,
8
+ width: width ?? size,
9
+ height: height ?? size,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ ...props,
14
+ children: /* @__PURE__ */ jsx("path", { d: "M8.5 7.67026C8.5 6.90046 9.33333 6.41915 10 6.80405L17.5 11.1341C18.1665 11.519 18.1664 12.4806 17.5 12.8656L10 17.1966C9.33345 17.5813 8.50021 17.1 8.5 16.3304V7.67026Z", fill: "currentColor" })
15
+ }
16
+ )
17
+ );
18
+ PlayFilled.displayName = "PlayFilled";
19
+ export {
20
+ PlayFilled
21
+ };
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ export interface PlayOutlineProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number | string;
4
+ }
5
+ export declare const PlayOutline: React.ForwardRefExoticComponent<Omit<PlayOutlineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ //# sourceMappingURL=PlayOutline.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlayOutline.d.ts","sourceRoot":"","sources":["../src/PlayOutline.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC;IACrE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,WAAW,qGAcvB,CAAC"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var PlayOutline_exports = {};
30
+ __export(PlayOutline_exports, {
31
+ PlayOutline: () => PlayOutline
32
+ });
33
+ module.exports = __toCommonJS(PlayOutline_exports);
34
+ var import_jsx_runtime = require("react/jsx-runtime");
35
+ var React = __toESM(require("react"));
36
+ const PlayOutline = React.forwardRef(
37
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
38
+ "svg",
39
+ {
40
+ ref,
41
+ width: width ?? size,
42
+ height: height ?? size,
43
+ viewBox: "0 0 24 24",
44
+ fill: "none",
45
+ xmlns: "http://www.w3.org/2000/svg",
46
+ ...props,
47
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9.4043 6.65234C9.4643 6.65237 9.52571 6.65952 9.58887 6.67285C9.72723 6.68524 9.86694 6.72692 10 6.80371L17.5 11.1338C18.1667 11.5187 18.1667 12.4813 17.5 12.8662L10 17.1963C9.86636 17.2734 9.72589 17.314 9.58691 17.3262C9.52434 17.3393 9.46377 17.3476 9.4043 17.3477C9.16329 17.3477 8.95207 17.2637 8.77148 17.0947C8.59067 16.9254 8.50002 16.7083 8.5 16.4443V7.55566C8.50002 7.29171 8.59067 7.07459 8.77148 6.90527C8.95207 6.73634 9.16329 6.65234 9.4043 6.65234ZM10 15.3496L15.2695 12L10 8.65039V15.3496Z", fill: "currentColor" })
48
+ }
49
+ )
50
+ );
51
+ PlayOutline.displayName = "PlayOutline";
52
+ // Annotate the CommonJS export names for ESM import in node:
53
+ 0 && (module.exports = {
54
+ PlayOutline
55
+ });
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ const PlayOutline = React.forwardRef(
4
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ jsx(
5
+ "svg",
6
+ {
7
+ ref,
8
+ width: width ?? size,
9
+ height: height ?? size,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ ...props,
14
+ children: /* @__PURE__ */ jsx("path", { d: "M9.4043 6.65234C9.4643 6.65237 9.52571 6.65952 9.58887 6.67285C9.72723 6.68524 9.86694 6.72692 10 6.80371L17.5 11.1338C18.1667 11.5187 18.1667 12.4813 17.5 12.8662L10 17.1963C9.86636 17.2734 9.72589 17.314 9.58691 17.3262C9.52434 17.3393 9.46377 17.3476 9.4043 17.3477C9.16329 17.3477 8.95207 17.2637 8.77148 17.0947C8.59067 16.9254 8.50002 16.7083 8.5 16.4443V7.55566C8.50002 7.29171 8.59067 7.07459 8.77148 6.90527C8.95207 6.73634 9.16329 6.65234 9.4043 6.65234ZM10 15.3496L15.2695 12L10 8.65039V15.3496Z", fill: "currentColor" })
15
+ }
16
+ )
17
+ );
18
+ PlayOutline.displayName = "PlayOutline";
19
+ export {
20
+ PlayOutline
21
+ };
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ export interface VideoCameraFilledProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number | string;
4
+ }
5
+ export declare const VideoCameraFilled: React.ForwardRefExoticComponent<Omit<VideoCameraFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ //# sourceMappingURL=VideoCameraFilled.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"VideoCameraFilled.d.ts","sourceRoot":"","sources":["../src/VideoCameraFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,sBAAuB,SAAQ,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC;IAC3E,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,iBAAiB,2GAc7B,CAAC"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var VideoCameraFilled_exports = {};
30
+ __export(VideoCameraFilled_exports, {
31
+ VideoCameraFilled: () => VideoCameraFilled
32
+ });
33
+ module.exports = __toCommonJS(VideoCameraFilled_exports);
34
+ var import_jsx_runtime = require("react/jsx-runtime");
35
+ var React = __toESM(require("react"));
36
+ const VideoCameraFilled = React.forwardRef(
37
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
38
+ "svg",
39
+ {
40
+ ref,
41
+ width: width ?? size,
42
+ height: height ?? size,
43
+ viewBox: "0 0 24 24",
44
+ fill: "none",
45
+ xmlns: "http://www.w3.org/2000/svg",
46
+ ...props,
47
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16 4C17.6569 4 19 5.34315 19 7V10.7578L21.1465 8.61133C21.4615 8.29635 22 8.51939 22 8.96484V15.0352C22 15.4806 21.4615 15.7037 21.1465 15.3887L19 13.2422V17C19 18.6569 17.6569 20 16 20H6L5.8457 19.9961C4.26055 19.9158 3 18.6051 3 17V7C3 5.34315 4.34315 4 6 4H16ZM6 5.5C5.17157 5.5 4.5 6.17157 4.5 7V17C4.5 17.8284 5.17157 18.5 6 18.5H16C16.8284 18.5 17.5 17.8284 17.5 17V7C17.5 6.17157 16.8284 5.5 16 5.5H6Z", fill: "currentColor" })
48
+ }
49
+ )
50
+ );
51
+ VideoCameraFilled.displayName = "VideoCameraFilled";
52
+ // Annotate the CommonJS export names for ESM import in node:
53
+ 0 && (module.exports = {
54
+ VideoCameraFilled
55
+ });
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ const VideoCameraFilled = React.forwardRef(
4
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ jsx(
5
+ "svg",
6
+ {
7
+ ref,
8
+ width: width ?? size,
9
+ height: height ?? size,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ ...props,
14
+ children: /* @__PURE__ */ jsx("path", { d: "M16 4C17.6569 4 19 5.34315 19 7V10.7578L21.1465 8.61133C21.4615 8.29635 22 8.51939 22 8.96484V15.0352C22 15.4806 21.4615 15.7037 21.1465 15.3887L19 13.2422V17C19 18.6569 17.6569 20 16 20H6L5.8457 19.9961C4.26055 19.9158 3 18.6051 3 17V7C3 5.34315 4.34315 4 6 4H16ZM6 5.5C5.17157 5.5 4.5 6.17157 4.5 7V17C4.5 17.8284 5.17157 18.5 6 18.5H16C16.8284 18.5 17.5 17.8284 17.5 17V7C17.5 6.17157 16.8284 5.5 16 5.5H6Z", fill: "currentColor" })
15
+ }
16
+ )
17
+ );
18
+ VideoCameraFilled.displayName = "VideoCameraFilled";
19
+ export {
20
+ VideoCameraFilled
21
+ };
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ export interface VideoCameraOutlineProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number | string;
4
+ }
5
+ export declare const VideoCameraOutline: React.ForwardRefExoticComponent<Omit<VideoCameraOutlineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ //# sourceMappingURL=VideoCameraOutline.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"VideoCameraOutline.d.ts","sourceRoot":"","sources":["../src/VideoCameraOutline.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,uBAAwB,SAAQ,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC;IAC5E,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,kBAAkB,4GAc9B,CAAC"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var VideoCameraOutline_exports = {};
30
+ __export(VideoCameraOutline_exports, {
31
+ VideoCameraOutline: () => VideoCameraOutline
32
+ });
33
+ module.exports = __toCommonJS(VideoCameraOutline_exports);
34
+ var import_jsx_runtime = require("react/jsx-runtime");
35
+ var React = __toESM(require("react"));
36
+ const VideoCameraOutline = React.forwardRef(
37
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
38
+ "svg",
39
+ {
40
+ ref,
41
+ width: width ?? size,
42
+ height: height ?? size,
43
+ viewBox: "0 0 24 24",
44
+ fill: "none",
45
+ xmlns: "http://www.w3.org/2000/svg",
46
+ ...props,
47
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16 4C17.6569 4 19 5.34315 19 7V10.7578L21.1465 8.61133C21.4615 8.29635 22 8.51939 22 8.96484V15.0352C22 15.4806 21.4615 15.7037 21.1465 15.3887L19 13.2422V17C19 18.6569 17.6569 20 16 20H6L5.8457 19.9961C4.26055 19.9158 3 18.6051 3 17V7C3 5.34315 4.34315 4 6 4H16ZM6 5.5C5.17157 5.5 4.5 6.17157 4.5 7V17C4.5 17.8284 5.17157 18.5 6 18.5H16C16.8284 18.5 17.5 17.8284 17.5 17V7C17.5 6.17157 16.8284 5.5 16 5.5H6Z", fill: "currentColor" })
48
+ }
49
+ )
50
+ );
51
+ VideoCameraOutline.displayName = "VideoCameraOutline";
52
+ // Annotate the CommonJS export names for ESM import in node:
53
+ 0 && (module.exports = {
54
+ VideoCameraOutline
55
+ });
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ const VideoCameraOutline = React.forwardRef(
4
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ jsx(
5
+ "svg",
6
+ {
7
+ ref,
8
+ width: width ?? size,
9
+ height: height ?? size,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ ...props,
14
+ children: /* @__PURE__ */ jsx("path", { d: "M16 4C17.6569 4 19 5.34315 19 7V10.7578L21.1465 8.61133C21.4615 8.29635 22 8.51939 22 8.96484V15.0352C22 15.4806 21.4615 15.7037 21.1465 15.3887L19 13.2422V17C19 18.6569 17.6569 20 16 20H6L5.8457 19.9961C4.26055 19.9158 3 18.6051 3 17V7C3 5.34315 4.34315 4 6 4H16ZM6 5.5C5.17157 5.5 4.5 6.17157 4.5 7V17C4.5 17.8284 5.17157 18.5 6 18.5H16C16.8284 18.5 17.5 17.8284 17.5 17V7C17.5 6.17157 16.8284 5.5 16 5.5H6Z", fill: "currentColor" })
15
+ }
16
+ )
17
+ );
18
+ VideoCameraOutline.displayName = "VideoCameraOutline";
19
+ export {
20
+ VideoCameraOutline
21
+ };
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ export interface VideoFilledProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number | string;
4
+ }
5
+ export declare const VideoFilled: React.ForwardRefExoticComponent<Omit<VideoFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ //# sourceMappingURL=VideoFilled.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"VideoFilled.d.ts","sourceRoot":"","sources":["../src/VideoFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC;IACrE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,WAAW,qGAcvB,CAAC"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var VideoFilled_exports = {};
30
+ __export(VideoFilled_exports, {
31
+ VideoFilled: () => VideoFilled
32
+ });
33
+ module.exports = __toCommonJS(VideoFilled_exports);
34
+ var import_jsx_runtime = require("react/jsx-runtime");
35
+ var React = __toESM(require("react"));
36
+ const VideoFilled = React.forwardRef(
37
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
38
+ "svg",
39
+ {
40
+ ref,
41
+ width: width ?? size,
42
+ height: height ?? size,
43
+ viewBox: "0 0 24 24",
44
+ fill: "none",
45
+ xmlns: "http://www.w3.org/2000/svg",
46
+ ...props,
47
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 4C2.89543 4 2 4.89543 2 6V18C2 19.1046 2.89543 20 4 20H16C17.1046 20 18 19.1046 18 18V15L22 18V6L18 9V6C18 4.89543 17.1046 4 16 4H4Z", fill: "currentColor" })
48
+ }
49
+ )
50
+ );
51
+ VideoFilled.displayName = "VideoFilled";
52
+ // Annotate the CommonJS export names for ESM import in node:
53
+ 0 && (module.exports = {
54
+ VideoFilled
55
+ });
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ const VideoFilled = React.forwardRef(
4
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ jsx(
5
+ "svg",
6
+ {
7
+ ref,
8
+ width: width ?? size,
9
+ height: height ?? size,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ ...props,
14
+ children: /* @__PURE__ */ jsx("path", { d: "M4 4C2.89543 4 2 4.89543 2 6V18C2 19.1046 2.89543 20 4 20H16C17.1046 20 18 19.1046 18 18V15L22 18V6L18 9V6C18 4.89543 17.1046 4 16 4H4Z", fill: "currentColor" })
15
+ }
16
+ )
17
+ );
18
+ VideoFilled.displayName = "VideoFilled";
19
+ export {
20
+ VideoFilled
21
+ };
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ export interface VideoOutlineProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number | string;
4
+ }
5
+ export declare const VideoOutline: React.ForwardRefExoticComponent<Omit<VideoOutlineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ //# sourceMappingURL=VideoOutline.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"VideoOutline.d.ts","sourceRoot":"","sources":["../src/VideoOutline.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC;IACtE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,YAAY,sGAcxB,CAAC"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var VideoOutline_exports = {};
30
+ __export(VideoOutline_exports, {
31
+ VideoOutline: () => VideoOutline
32
+ });
33
+ module.exports = __toCommonJS(VideoOutline_exports);
34
+ var import_jsx_runtime = require("react/jsx-runtime");
35
+ var React = __toESM(require("react"));
36
+ const VideoOutline = React.forwardRef(
37
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
38
+ "svg",
39
+ {
40
+ ref,
41
+ width: width ?? size,
42
+ height: height ?? size,
43
+ viewBox: "0 0 24 24",
44
+ fill: "none",
45
+ xmlns: "http://www.w3.org/2000/svg",
46
+ ...props,
47
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 5.5C3.72386 5.5 3.5 5.72386 3.5 6V18C3.5 18.2761 3.72386 18.5 4 18.5H16C16.2761 18.5 16.5 18.2761 16.5 18V14.25L16.5 14.2426L20.5 17.1213V6.87868L16.5 9.75735V9.75V6C16.5 5.72386 16.2761 5.5 16 5.5H4ZM2 6C2 4.89543 2.89543 4 4 4H16C17.1046 4 18 4.89543 18 6V8.5L22 6V18L18 15.5V18C18 19.1046 17.1046 20 16 20H4C2.89543 20 2 19.1046 2 18V6Z", fill: "currentColor" })
48
+ }
49
+ )
50
+ );
51
+ VideoOutline.displayName = "VideoOutline";
52
+ // Annotate the CommonJS export names for ESM import in node:
53
+ 0 && (module.exports = {
54
+ VideoOutline
55
+ });
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ const VideoOutline = React.forwardRef(
4
+ ({ size = 24, width, height, ...props }, ref) => /* @__PURE__ */ jsx(
5
+ "svg",
6
+ {
7
+ ref,
8
+ width: width ?? size,
9
+ height: height ?? size,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ ...props,
14
+ children: /* @__PURE__ */ jsx("path", { d: "M4 5.5C3.72386 5.5 3.5 5.72386 3.5 6V18C3.5 18.2761 3.72386 18.5 4 18.5H16C16.2761 18.5 16.5 18.2761 16.5 18V14.25L16.5 14.2426L20.5 17.1213V6.87868L16.5 9.75735V9.75V6C16.5 5.72386 16.2761 5.5 16 5.5H4ZM2 6C2 4.89543 2.89543 4 4 4H16C17.1046 4 18 4.89543 18 6V8.5L22 6V18L18 15.5V18C18 19.1046 17.1046 20 16 20H4C2.89543 20 2 19.1046 2 18V6Z", fill: "currentColor" })
15
+ }
16
+ )
17
+ );
18
+ VideoOutline.displayName = "VideoOutline";
19
+ export {
20
+ VideoOutline
21
+ };
package/dist/index.d.ts CHANGED
@@ -122,6 +122,8 @@ export { MoreHorizontalFilled } from './MoreHorizontalFilled';
122
122
  export { MoreHorizontalOutline } from './MoreHorizontalOutline';
123
123
  export { MoreVerticalFilled } from './MoreVerticalFilled';
124
124
  export { MoreVerticalOutline } from './MoreVerticalOutline';
125
+ export { MusicNoteFilled } from './MusicNoteFilled';
126
+ export { MusicNoteOutline } from './MusicNoteOutline';
125
127
  export { OpenWithFilled } from './OpenWithFilled';
126
128
  export { OpenWithOutline } from './OpenWithOutline';
127
129
  export { OptionFilled } from './OptionFilled';
@@ -132,6 +134,8 @@ export { PersonalBookFilled } from './PersonalBookFilled';
132
134
  export { PersonalBookOutline } from './PersonalBookOutline';
133
135
  export { PieChartFilled } from './PieChartFilled';
134
136
  export { PieChartOutline } from './PieChartOutline';
137
+ export { PlayFilled } from './PlayFilled';
138
+ export { PlayOutline } from './PlayOutline';
135
139
  export { RadioFilled } from './RadioFilled';
136
140
  export { RadioOutline } from './RadioOutline';
137
141
  export { RainFilled } from './RainFilled';
@@ -177,6 +181,8 @@ export { UserFilled } from './UserFilled';
177
181
  export { UserOutline } from './UserOutline';
178
182
  export { VerifyFilled } from './VerifyFilled';
179
183
  export { VerifyOutline } from './VerifyOutline';
184
+ export { VideoCameraFilled } from './VideoCameraFilled';
185
+ export { VideoCameraOutline } from './VideoCameraOutline';
180
186
  export { WarningFilled } from './WarningFilled';
181
187
  export { WarningOutline } from './WarningOutline';
182
188
  export { WaterDropFilled } from './WaterDropFilled';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js CHANGED
@@ -142,6 +142,8 @@ __export(index_exports, {
142
142
  MoreHorizontalOutline: () => import_MoreHorizontalOutline.MoreHorizontalOutline,
143
143
  MoreVerticalFilled: () => import_MoreVerticalFilled.MoreVerticalFilled,
144
144
  MoreVerticalOutline: () => import_MoreVerticalOutline.MoreVerticalOutline,
145
+ MusicNoteFilled: () => import_MusicNoteFilled.MusicNoteFilled,
146
+ MusicNoteOutline: () => import_MusicNoteOutline.MusicNoteOutline,
145
147
  OpenWithFilled: () => import_OpenWithFilled.OpenWithFilled,
146
148
  OpenWithOutline: () => import_OpenWithOutline.OpenWithOutline,
147
149
  OptionFilled: () => import_OptionFilled.OptionFilled,
@@ -152,6 +154,8 @@ __export(index_exports, {
152
154
  PersonalBookOutline: () => import_PersonalBookOutline.PersonalBookOutline,
153
155
  PieChartFilled: () => import_PieChartFilled.PieChartFilled,
154
156
  PieChartOutline: () => import_PieChartOutline.PieChartOutline,
157
+ PlayFilled: () => import_PlayFilled.PlayFilled,
158
+ PlayOutline: () => import_PlayOutline.PlayOutline,
155
159
  RadioFilled: () => import_RadioFilled.RadioFilled,
156
160
  RadioOutline: () => import_RadioOutline.RadioOutline,
157
161
  RainFilled: () => import_RainFilled.RainFilled,
@@ -197,6 +201,8 @@ __export(index_exports, {
197
201
  UserOutline: () => import_UserOutline.UserOutline,
198
202
  VerifyFilled: () => import_VerifyFilled.VerifyFilled,
199
203
  VerifyOutline: () => import_VerifyOutline.VerifyOutline,
204
+ VideoCameraFilled: () => import_VideoCameraFilled.VideoCameraFilled,
205
+ VideoCameraOutline: () => import_VideoCameraOutline.VideoCameraOutline,
200
206
  WarningFilled: () => import_WarningFilled.WarningFilled,
201
207
  WarningOutline: () => import_WarningOutline.WarningOutline,
202
208
  WaterDropFilled: () => import_WaterDropFilled.WaterDropFilled,
@@ -327,6 +333,8 @@ var import_MoreHorizontalFilled = require("./MoreHorizontalFilled");
327
333
  var import_MoreHorizontalOutline = require("./MoreHorizontalOutline");
328
334
  var import_MoreVerticalFilled = require("./MoreVerticalFilled");
329
335
  var import_MoreVerticalOutline = require("./MoreVerticalOutline");
336
+ var import_MusicNoteFilled = require("./MusicNoteFilled");
337
+ var import_MusicNoteOutline = require("./MusicNoteOutline");
330
338
  var import_OpenWithFilled = require("./OpenWithFilled");
331
339
  var import_OpenWithOutline = require("./OpenWithOutline");
332
340
  var import_OptionFilled = require("./OptionFilled");
@@ -337,6 +345,8 @@ var import_PersonalBookFilled = require("./PersonalBookFilled");
337
345
  var import_PersonalBookOutline = require("./PersonalBookOutline");
338
346
  var import_PieChartFilled = require("./PieChartFilled");
339
347
  var import_PieChartOutline = require("./PieChartOutline");
348
+ var import_PlayFilled = require("./PlayFilled");
349
+ var import_PlayOutline = require("./PlayOutline");
340
350
  var import_RadioFilled = require("./RadioFilled");
341
351
  var import_RadioOutline = require("./RadioOutline");
342
352
  var import_RainFilled = require("./RainFilled");
@@ -382,6 +392,8 @@ var import_UserFilled = require("./UserFilled");
382
392
  var import_UserOutline = require("./UserOutline");
383
393
  var import_VerifyFilled = require("./VerifyFilled");
384
394
  var import_VerifyOutline = require("./VerifyOutline");
395
+ var import_VideoCameraFilled = require("./VideoCameraFilled");
396
+ var import_VideoCameraOutline = require("./VideoCameraOutline");
385
397
  var import_WarningFilled = require("./WarningFilled");
386
398
  var import_WarningOutline = require("./WarningOutline");
387
399
  var import_WaterDropFilled = require("./WaterDropFilled");
@@ -512,6 +524,8 @@ var import_WaterDropOutline = require("./WaterDropOutline");
512
524
  MoreHorizontalOutline,
513
525
  MoreVerticalFilled,
514
526
  MoreVerticalOutline,
527
+ MusicNoteFilled,
528
+ MusicNoteOutline,
515
529
  OpenWithFilled,
516
530
  OpenWithOutline,
517
531
  OptionFilled,
@@ -522,6 +536,8 @@ var import_WaterDropOutline = require("./WaterDropOutline");
522
536
  PersonalBookOutline,
523
537
  PieChartFilled,
524
538
  PieChartOutline,
539
+ PlayFilled,
540
+ PlayOutline,
525
541
  RadioFilled,
526
542
  RadioOutline,
527
543
  RainFilled,
@@ -567,6 +583,8 @@ var import_WaterDropOutline = require("./WaterDropOutline");
567
583
  UserOutline,
568
584
  VerifyFilled,
569
585
  VerifyOutline,
586
+ VideoCameraFilled,
587
+ VideoCameraOutline,
570
588
  WarningFilled,
571
589
  WarningOutline,
572
590
  WaterDropFilled,
package/dist/index.mjs CHANGED
@@ -122,6 +122,8 @@ import { MoreHorizontalFilled } from "./MoreHorizontalFilled.mjs";
122
122
  import { MoreHorizontalOutline } from "./MoreHorizontalOutline.mjs";
123
123
  import { MoreVerticalFilled } from "./MoreVerticalFilled.mjs";
124
124
  import { MoreVerticalOutline } from "./MoreVerticalOutline.mjs";
125
+ import { MusicNoteFilled } from "./MusicNoteFilled.mjs";
126
+ import { MusicNoteOutline } from "./MusicNoteOutline.mjs";
125
127
  import { OpenWithFilled } from "./OpenWithFilled.mjs";
126
128
  import { OpenWithOutline } from "./OpenWithOutline.mjs";
127
129
  import { OptionFilled } from "./OptionFilled.mjs";
@@ -132,6 +134,8 @@ import { PersonalBookFilled } from "./PersonalBookFilled.mjs";
132
134
  import { PersonalBookOutline } from "./PersonalBookOutline.mjs";
133
135
  import { PieChartFilled } from "./PieChartFilled.mjs";
134
136
  import { PieChartOutline } from "./PieChartOutline.mjs";
137
+ import { PlayFilled } from "./PlayFilled.mjs";
138
+ import { PlayOutline } from "./PlayOutline.mjs";
135
139
  import { RadioFilled } from "./RadioFilled.mjs";
136
140
  import { RadioOutline } from "./RadioOutline.mjs";
137
141
  import { RainFilled } from "./RainFilled.mjs";
@@ -177,6 +181,8 @@ import { UserFilled } from "./UserFilled.mjs";
177
181
  import { UserOutline } from "./UserOutline.mjs";
178
182
  import { VerifyFilled } from "./VerifyFilled.mjs";
179
183
  import { VerifyOutline } from "./VerifyOutline.mjs";
184
+ import { VideoCameraFilled } from "./VideoCameraFilled.mjs";
185
+ import { VideoCameraOutline } from "./VideoCameraOutline.mjs";
180
186
  import { WarningFilled } from "./WarningFilled.mjs";
181
187
  import { WarningOutline } from "./WarningOutline.mjs";
182
188
  import { WaterDropFilled } from "./WaterDropFilled.mjs";
@@ -306,6 +312,8 @@ export {
306
312
  MoreHorizontalOutline,
307
313
  MoreVerticalFilled,
308
314
  MoreVerticalOutline,
315
+ MusicNoteFilled,
316
+ MusicNoteOutline,
309
317
  OpenWithFilled,
310
318
  OpenWithOutline,
311
319
  OptionFilled,
@@ -316,6 +324,8 @@ export {
316
324
  PersonalBookOutline,
317
325
  PieChartFilled,
318
326
  PieChartOutline,
327
+ PlayFilled,
328
+ PlayOutline,
319
329
  RadioFilled,
320
330
  RadioOutline,
321
331
  RainFilled,
@@ -361,6 +371,8 @@ export {
361
371
  UserOutline,
362
372
  VerifyFilled,
363
373
  VerifyOutline,
374
+ VideoCameraFilled,
375
+ VideoCameraOutline,
364
376
  WarningFilled,
365
377
  WarningOutline,
366
378
  WaterDropFilled,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@photonix/icons",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",