a-icons 1.2.22 → 1.2.23

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 { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function PhoneCallFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace PhoneCallFilled {
4
+ var displayName: string;
5
+ }
6
+ export default PhoneCallFilled;
@@ -0,0 +1,30 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function PhoneCallFilled(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ d: "M5.1 1.878a3 3 0 012.708 0c.464.234.863.65 1.338 1.126l.195.195c.313.313.585.576.77.862a3 3 0 010 3.27c-.185.286-.457.55-.77.863l-.108.108-.002.012.014.03.037.077a13.604 13.604 0 002.652 3.735 13.602 13.602 0 003.735 2.651l.076.037.03.013h.006l.005-.002.11-.106c.313-.314.576-.585.862-.77a3.001 3.001 0 013.27 0c.286.185.55.456.863.77l.539.539c.328.334.606.646.782.994a3 3 0 010 2.708c-.235.464-.651.862-1.127 1.338l-.157.158c-.5.499-.867.877-1.372 1.161-.55.309-1.34.515-1.971.513-.572-.002-.983-.124-1.53-.28a20.04 20.04 0 01-8.717-5.128 20.041 20.041 0 01-5.129-8.718c-.155-.547-.278-.958-.28-1.53-.001-.63.205-1.42.513-1.97.284-.505.663-.873 1.162-1.372l.501-.502c.335-.329.647-.606.995-.782z",
22
+ fill: "currentColor"
23
+ }));
24
+ };
25
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
26
+ component: IconNode
27
+ }));
28
+ }
29
+ PhoneCallFilled.displayName = 'PhoneCallFilled';
30
+ export default PhoneCallFilled;
package/es/index.d.ts CHANGED
@@ -263,6 +263,7 @@ export { default as PersonGroupFilled } from './PersonGroupFilled';
263
263
  export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
264
264
  export { default as PersonTransferFilled } from './PersonTransferFilled';
265
265
  export { default as PersonWarningFilled } from './PersonWarningFilled';
266
+ export { default as PhoneCallFilled } from './PhoneCallFilled';
266
267
  export { default as PhoneOutlined } from './PhoneOutlined';
267
268
  export { default as PlayFilled } from './PlayFilled';
268
269
  export { default as PlaySharpFilled } from './PlaySharpFilled';
package/es/index.js CHANGED
@@ -263,6 +263,7 @@ export { default as PersonGroupFilled } from './PersonGroupFilled';
263
263
  export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
264
264
  export { default as PersonTransferFilled } from './PersonTransferFilled';
265
265
  export { default as PersonWarningFilled } from './PersonWarningFilled';
266
+ export { default as PhoneCallFilled } from './PhoneCallFilled';
266
267
  export { default as PhoneOutlined } from './PhoneOutlined';
267
268
  export { default as PlayFilled } from './PlayFilled';
268
269
  export { default as PlaySharpFilled } from './PlaySharpFilled';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function PhoneCallFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace PhoneCallFilled {
4
+ var displayName: string;
5
+ }
6
+ export default PhoneCallFilled;
@@ -0,0 +1,73 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) {
8
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
+ }
10
+ }
11
+ return t;
12
+ };
13
+ return __assign.apply(this, arguments);
14
+ };
15
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return m[k];
23
+ }
24
+ };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
32
+ Object.defineProperty(o, "default", {
33
+ enumerable: true,
34
+ value: v
35
+ });
36
+ } : function (o, v) {
37
+ o["default"] = v;
38
+ });
39
+ var __importStar = this && this.__importStar || function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k in mod) {
43
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
44
+ }
45
+ __setModuleDefault(result, mod);
46
+ return result;
47
+ };
48
+ var __importDefault = this && this.__importDefault || function (mod) {
49
+ return mod && mod.__esModule ? mod : {
50
+ "default": mod
51
+ };
52
+ };
53
+ Object.defineProperty(exports, "__esModule", {
54
+ value: true
55
+ });
56
+ var React = __importStar(require("react"));
57
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
+ function PhoneCallFilled(componentProps) {
59
+ var IconNode = function IconNode(props) {
60
+ return React.createElement("svg", __assign({
61
+ viewBox: "0 0 24 24",
62
+ xmlns: "http://www.w3.org/2000/svg"
63
+ }, props), React.createElement("path", {
64
+ d: "M5.1 1.878a3 3 0 012.708 0c.464.234.863.65 1.338 1.126l.195.195c.313.313.585.576.77.862a3 3 0 010 3.27c-.185.286-.457.55-.77.863l-.108.108-.002.012.014.03.037.077a13.604 13.604 0 002.652 3.735 13.602 13.602 0 003.735 2.651l.076.037.03.013h.006l.005-.002.11-.106c.313-.314.576-.585.862-.77a3.001 3.001 0 013.27 0c.286.185.55.456.863.77l.539.539c.328.334.606.646.782.994a3 3 0 010 2.708c-.235.464-.651.862-1.127 1.338l-.157.158c-.5.499-.867.877-1.372 1.161-.55.309-1.34.515-1.971.513-.572-.002-.983-.124-1.53-.28a20.04 20.04 0 01-8.717-5.128 20.041 20.041 0 01-5.129-8.718c-.155-.547-.278-.958-.28-1.53-.001-.63.205-1.42.513-1.97.284-.505.663-.873 1.162-1.372l.501-.502c.335-.329.647-.606.995-.782z",
65
+ fill: "currentColor"
66
+ }));
67
+ };
68
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
69
+ component: IconNode
70
+ }));
71
+ }
72
+ PhoneCallFilled.displayName = 'PhoneCallFilled';
73
+ exports["default"] = PhoneCallFilled;
package/lib/index.d.ts CHANGED
@@ -263,6 +263,7 @@ export { default as PersonGroupFilled } from './PersonGroupFilled';
263
263
  export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
264
264
  export { default as PersonTransferFilled } from './PersonTransferFilled';
265
265
  export { default as PersonWarningFilled } from './PersonWarningFilled';
266
+ export { default as PhoneCallFilled } from './PhoneCallFilled';
266
267
  export { default as PhoneOutlined } from './PhoneOutlined';
267
268
  export { default as PlayFilled } from './PlayFilled';
268
269
  export { default as PlaySharpFilled } from './PlaySharpFilled';
package/lib/index.js CHANGED
@@ -13,9 +13,9 @@ exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCar
13
13
  exports.FileFilled = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadLineOutlined = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotsOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CyclePlusFilled = void 0;
14
14
  exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InsFilled = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IbFilled = exports.HouseOutlined = exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftWithClipFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FoldSearchFileFilled = exports.FireOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FilletFileListFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = void 0;
15
15
  exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.PauseCircleFilled = exports.OtcMerchant = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OppositeArrowsFilled = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NoteBoardOutlined = exports.NoteBoardFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MinusSquareOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = void 0;
16
- exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = exports.ResourceOutlined = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlusBoldSquareFilled = exports.PlaySolidFilled = exports.PlaySharpFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PersonGroupFilled = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleErrorFilled = void 0;
17
- exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferFileFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalFilled = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldTickAsteriskFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = void 0;
18
- exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UpgradeFilled = void 0;
16
+ exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = exports.ResourceOutlined = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlusBoldSquareFilled = exports.PlaySolidFilled = exports.PlaySharpFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PersonGroupFilled = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleErrorFilled = void 0;
17
+ exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferFileFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalFilled = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldTickAsteriskFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = void 0;
18
+ exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UpgradeFilled = exports.UpFilled = void 0;
19
19
  var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
20
20
  Object.defineProperty(exports, "DailyFinanceFilled", {
21
21
  enumerable: true,
@@ -1871,6 +1871,13 @@ Object.defineProperty(exports, "PersonWarningFilled", {
1871
1871
  return __importDefault(PersonWarningFilled_1)["default"];
1872
1872
  }
1873
1873
  });
1874
+ var PhoneCallFilled_1 = require("./PhoneCallFilled");
1875
+ Object.defineProperty(exports, "PhoneCallFilled", {
1876
+ enumerable: true,
1877
+ get: function get() {
1878
+ return __importDefault(PhoneCallFilled_1)["default"];
1879
+ }
1880
+ });
1874
1881
  var PhoneOutlined_1 = require("./PhoneOutlined");
1875
1882
  Object.defineProperty(exports, "PhoneOutlined", {
1876
1883
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.2.22",
3
+ "version": "1.2.23",
4
4
  "repository": "git@github.com:SPOTEC-LTD/assui.git",
5
5
  "author": "jason <usochen@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -22,5 +22,5 @@
22
22
  "peerDependencies": {
23
23
  "assui": "^2.0.2"
24
24
  },
25
- "gitHead": "4055e1ec2ce61973a65e80c31329841ca03e6ba8"
25
+ "gitHead": "7c1f4d2f88ad90a213b7dcec7de96010c1b1e871"
26
26
  }
@@ -0,0 +1,18 @@
1
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
2
+ import * as React from 'react';
3
+
4
+ function PhoneCallFilled(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ d="M5.1 1.878a3 3 0 012.708 0c.464.234.863.65 1.338 1.126l.195.195c.313.313.585.576.77.862a3 3 0 010 3.27c-.185.286-.457.55-.77.863l-.108.108-.002.012.014.03.037.077a13.604 13.604 0 002.652 3.735 13.602 13.602 0 003.735 2.651l.076.037.03.013h.006l.005-.002.11-.106c.313-.314.576-.585.862-.77a3.001 3.001 0 013.27 0c.286.185.55.456.863.77l.539.539c.328.334.606.646.782.994a3 3 0 010 2.708c-.235.464-.651.862-1.127 1.338l-.157.158c-.5.499-.867.877-1.372 1.161-.55.309-1.34.515-1.971.513-.572-.002-.983-.124-1.53-.28a20.04 20.04 0 01-8.717-5.128 20.041 20.041 0 01-5.129-8.718c-.155-.547-.278-.958-.28-1.53-.001-.63.205-1.42.513-1.97.284-.505.663-.873 1.162-1.372l.501-.502c.335-.329.647-.606.995-.782z"
9
+ fill="currentColor"
10
+ />
11
+ </svg>
12
+ );
13
+
14
+ return <Icon {...componentProps} component={IconNode} />;
15
+ }
16
+
17
+ PhoneCallFilled.displayName = 'PhoneCallFilled';
18
+ export default PhoneCallFilled;
package/src/index.tsx CHANGED
@@ -263,6 +263,7 @@ export { default as PersonGroupFilled } from './PersonGroupFilled';
263
263
  export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
264
264
  export { default as PersonTransferFilled } from './PersonTransferFilled';
265
265
  export { default as PersonWarningFilled } from './PersonWarningFilled';
266
+ export { default as PhoneCallFilled } from './PhoneCallFilled';
266
267
  export { default as PhoneOutlined } from './PhoneOutlined';
267
268
  export { default as PlayFilled } from './PlayFilled';
268
269
  export { default as PlaySharpFilled } from './PlaySharpFilled';
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M5.09962 1.87753C5.9509 1.447 6.95635 1.44701 7.80763 1.87753C8.2716 2.11222 8.67072 2.52773 9.1465 3.00351L9.34083 3.19882C9.65426 3.51225 9.92551 3.77539 10.1113 4.06113C10.7576 5.05529 10.7575 6.33744 10.1113 7.33163C9.92553 7.61742 9.65428 7.88049 9.34083 8.19394C9.28353 8.25124 9.25386 8.28072 9.23341 8.30234L9.23146 8.31405C9.23473 8.32132 9.23905 8.3314 9.24513 8.34433C9.25471 8.36467 9.26689 8.38855 9.28224 8.4205C9.93001 9.76954 10.8131 11.0353 11.9336 12.1559C13.0541 13.2764 14.3199 14.1594 15.669 14.8072C15.701 14.8226 15.7248 14.8347 15.7451 14.8443C15.7574 14.8501 15.7673 14.8538 15.7744 14.857C15.7764 14.8568 15.7788 14.8574 15.7813 14.857C15.783 14.8567 15.7846 14.8554 15.7861 14.8551C15.8078 14.8346 15.8382 14.806 15.8955 14.7486C16.209 14.4352 16.472 14.1639 16.7578 13.9781C17.752 13.3319 19.0342 13.3319 20.0283 13.9781C20.3141 14.1639 20.5772 14.4352 20.8906 14.7486L21.4297 15.2877C21.7584 15.6221 22.0359 15.9339 22.2119 16.2818C22.6425 17.1331 22.6424 18.1385 22.2119 18.9898C21.9772 19.4538 21.5607 19.852 21.085 20.3277L20.9277 20.4859C20.4288 20.9849 20.0608 21.3633 19.5557 21.6471C19.0057 21.9559 18.2157 22.1616 17.585 22.1598C17.0135 22.158 16.6021 22.0356 16.0557 21.8805C12.8625 20.9741 9.84951 19.2632 7.3379 16.7516C4.82635 14.2399 3.11531 11.2269 2.209 8.03378C2.05393 7.48747 1.93141 7.07591 1.9297 6.50448C1.92788 5.87384 2.13358 5.08364 2.44239 4.53378C2.72614 4.02875 3.10463 3.66061 3.60353 3.16171L4.10548 2.65976C4.43995 2.33104 4.75168 2.05355 5.09962 1.87753Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M5.09962 1.87753C5.9509 1.447 6.95635 1.44701 7.80763 1.87753C8.2716 2.11222 8.67072 2.52773 9.1465 3.00351L9.34083 3.19882C9.65426 3.51225 9.92551 3.77539 10.1113 4.06113C10.7576 5.05529 10.7575 6.33744 10.1113 7.33163C9.92553 7.61742 9.65428 7.88049 9.34083 8.19394C9.28353 8.25124 9.25386 8.28072 9.23341 8.30234L9.23146 8.31405C9.23473 8.32132 9.23905 8.3314 9.24513 8.34433C9.25471 8.36467 9.26689 8.38855 9.28224 8.4205C9.93001 9.76954 10.8131 11.0353 11.9336 12.1559C13.0541 13.2764 14.3199 14.1594 15.669 14.8072C15.701 14.8226 15.7248 14.8347 15.7451 14.8443C15.7574 14.8501 15.7673 14.8538 15.7744 14.857C15.7764 14.8568 15.7788 14.8574 15.7813 14.857C15.783 14.8567 15.7846 14.8554 15.7861 14.8551C15.8078 14.8346 15.8382 14.806 15.8955 14.7486C16.209 14.4352 16.472 14.1639 16.7578 13.9781C17.752 13.3319 19.0342 13.3319 20.0283 13.9781C20.3141 14.1639 20.5772 14.4352 20.8906 14.7486L21.4297 15.2877C21.7584 15.6221 22.0359 15.9339 22.2119 16.2818C22.6425 17.1331 22.6424 18.1385 22.2119 18.9898C21.9772 19.4538 21.5607 19.852 21.085 20.3277L20.9277 20.4859C20.4288 20.9849 20.0608 21.3633 19.5557 21.6471C19.0057 21.9559 18.2157 22.1616 17.585 22.1598C17.0135 22.158 16.6021 22.0356 16.0557 21.8805C12.8625 20.9741 9.84951 19.2632 7.3379 16.7516C4.82635 14.2399 3.11531 11.2269 2.209 8.03378C2.05393 7.48747 1.93141 7.07591 1.9297 6.50448C1.92788 5.87384 2.13358 5.08364 2.44239 4.53378C2.72614 4.02875 3.10463 3.66061 3.60353 3.16171L4.10548 2.65976C4.43995 2.33104 4.75168 2.05355 5.09962 1.87753Z"
4
+ fill="currentColor" />
5
+ </svg>