a-icons 1.1.48 → 1.1.49

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,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function BoardFilled(componentProps: IconProps): JSX.Element;
4
+ declare namespace BoardFilled {
5
+ var displayName: string;
6
+ }
7
+ export default BoardFilled;
@@ -0,0 +1,42 @@
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 BoardFilled(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
+ fillRule: "evenodd",
22
+ clipRule: "evenodd",
23
+ d: "M12.72 4.927a1.25 1.25 0 00-1.441 0l-7.347 5.186-.865-1.226 7.347-5.186a2.75 2.75 0 013.172 0l7.346 5.186-.865 1.226-7.346-5.186z",
24
+ fill: "currentColor"
25
+ }), /*#__PURE__*/React.createElement("path", {
26
+ fillRule: "evenodd",
27
+ clipRule: "evenodd",
28
+ d: "M2.75 10c0-.966.784-1.75 1.75-1.75h15c.966 0 1.75.784 1.75 1.75v10a1.75 1.75 0 01-1.75 1.75h-15A1.75 1.75 0 012.75 20V10zm1.75-.25a.25.25 0 00-.25.25v10c0 .138.112.25.25.25h15a.25.25 0 00.25-.25V10a.25.25 0 00-.25-.25h-15z",
29
+ fill: "currentColor"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ fillRule: "evenodd",
32
+ clipRule: "evenodd",
33
+ d: "M3.5 10a1 1 0 011-1h15a1 1 0 011 1v10a1 1 0 01-1 1h-15a1 1 0 01-1-1V10zm3.75 7a.75.75 0 01.75-.75h8a.75.75 0 010 1.5H8a.75.75 0 01-.75-.75zM7 12.25a.75.75 0 000 1.5h10a.75.75 0 000-1.5H7z",
34
+ fill: "currentColor"
35
+ }));
36
+ };
37
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
38
+ component: IconNode
39
+ }));
40
+ }
41
+ BoardFilled.displayName = 'BoardFilled';
42
+ export default BoardFilled;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function BoardOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace BoardOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default BoardOutlined;
@@ -0,0 +1,47 @@
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 BoardOutlined(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props), /*#__PURE__*/React.createElement("rect", {
22
+ x: 3.5,
23
+ y: 9,
24
+ width: 17,
25
+ height: 12,
26
+ rx: 1,
27
+ stroke: "currentColor",
28
+ strokeWidth: 1.5
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ d: "M3.5 9.5l7.347-5.186a2 2 0 012.306 0L16.25 6.5l4.25 3",
31
+ stroke: "currentColor",
32
+ strokeWidth: 1.5,
33
+ strokeLinejoin: "round"
34
+ }), /*#__PURE__*/React.createElement("path", {
35
+ d: "M7 13h10M8 17h8",
36
+ stroke: "currentColor",
37
+ strokeWidth: 1.5,
38
+ strokeLinecap: "round",
39
+ strokeLinejoin: "round"
40
+ }));
41
+ };
42
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
43
+ component: IconNode
44
+ }));
45
+ }
46
+ BoardOutlined.displayName = 'BoardOutlined';
47
+ export default BoardOutlined;
package/es/index.d.ts CHANGED
@@ -23,6 +23,8 @@ export { default as BarsOutlined } from './BarsOutlined';
23
23
  export { default as BellOutlined } from './BellOutlined';
24
24
  export { default as BiscuitFilled } from './BiscuitFilled';
25
25
  export { default as BiscuitOutlined } from './BiscuitOutlined';
26
+ export { default as BoardFilled } from './BoardFilled';
27
+ export { default as BoardOutlined } from './BoardOutlined';
26
28
  export { default as BookFilled } from './BookFilled';
27
29
  export { default as BookOutlined } from './BookOutlined';
28
30
  export { default as BoxAddFilled } from './BoxAddFilled';
package/es/index.js CHANGED
@@ -23,6 +23,8 @@ export { default as BarsOutlined } from './BarsOutlined';
23
23
  export { default as BellOutlined } from './BellOutlined';
24
24
  export { default as BiscuitFilled } from './BiscuitFilled';
25
25
  export { default as BiscuitOutlined } from './BiscuitOutlined';
26
+ export { default as BoardFilled } from './BoardFilled';
27
+ export { default as BoardOutlined } from './BoardOutlined';
26
28
  export { default as BookFilled } from './BookFilled';
27
29
  export { default as BookOutlined } from './BookOutlined';
28
30
  export { default as BoxAddFilled } from './BoxAddFilled';
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function BoardFilled(componentProps: IconProps): JSX.Element;
4
+ declare namespace BoardFilled {
5
+ var displayName: string;
6
+ }
7
+ export default BoardFilled;
@@ -0,0 +1,85 @@
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 BoardFilled(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
+ fillRule: "evenodd",
65
+ clipRule: "evenodd",
66
+ d: "M12.72 4.927a1.25 1.25 0 00-1.441 0l-7.347 5.186-.865-1.226 7.347-5.186a2.75 2.75 0 013.172 0l7.346 5.186-.865 1.226-7.346-5.186z",
67
+ fill: "currentColor"
68
+ }), React.createElement("path", {
69
+ fillRule: "evenodd",
70
+ clipRule: "evenodd",
71
+ d: "M2.75 10c0-.966.784-1.75 1.75-1.75h15c.966 0 1.75.784 1.75 1.75v10a1.75 1.75 0 01-1.75 1.75h-15A1.75 1.75 0 012.75 20V10zm1.75-.25a.25.25 0 00-.25.25v10c0 .138.112.25.25.25h15a.25.25 0 00.25-.25V10a.25.25 0 00-.25-.25h-15z",
72
+ fill: "currentColor"
73
+ }), React.createElement("path", {
74
+ fillRule: "evenodd",
75
+ clipRule: "evenodd",
76
+ d: "M3.5 10a1 1 0 011-1h15a1 1 0 011 1v10a1 1 0 01-1 1h-15a1 1 0 01-1-1V10zm3.75 7a.75.75 0 01.75-.75h8a.75.75 0 010 1.5H8a.75.75 0 01-.75-.75zM7 12.25a.75.75 0 000 1.5h10a.75.75 0 000-1.5H7z",
77
+ fill: "currentColor"
78
+ }));
79
+ };
80
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
81
+ component: IconNode
82
+ }));
83
+ }
84
+ BoardFilled.displayName = 'BoardFilled';
85
+ exports["default"] = BoardFilled;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function BoardOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace BoardOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default BoardOutlined;
@@ -0,0 +1,90 @@
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 BoardOutlined(componentProps) {
59
+ var IconNode = function IconNode(props) {
60
+ return React.createElement("svg", __assign({
61
+ viewBox: "0 0 24 24",
62
+ fill: "none",
63
+ xmlns: "http://www.w3.org/2000/svg"
64
+ }, props), React.createElement("rect", {
65
+ x: 3.5,
66
+ y: 9,
67
+ width: 17,
68
+ height: 12,
69
+ rx: 1,
70
+ stroke: "currentColor",
71
+ strokeWidth: 1.5
72
+ }), React.createElement("path", {
73
+ d: "M3.5 9.5l7.347-5.186a2 2 0 012.306 0L16.25 6.5l4.25 3",
74
+ stroke: "currentColor",
75
+ strokeWidth: 1.5,
76
+ strokeLinejoin: "round"
77
+ }), React.createElement("path", {
78
+ d: "M7 13h10M8 17h8",
79
+ stroke: "currentColor",
80
+ strokeWidth: 1.5,
81
+ strokeLinecap: "round",
82
+ strokeLinejoin: "round"
83
+ }));
84
+ };
85
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
86
+ component: IconNode
87
+ }));
88
+ }
89
+ BoardOutlined.displayName = 'BoardOutlined';
90
+ exports["default"] = BoardOutlined;
package/lib/index.d.ts CHANGED
@@ -23,6 +23,8 @@ export { default as BarsOutlined } from './BarsOutlined';
23
23
  export { default as BellOutlined } from './BellOutlined';
24
24
  export { default as BiscuitFilled } from './BiscuitFilled';
25
25
  export { default as BiscuitOutlined } from './BiscuitOutlined';
26
+ export { default as BoardFilled } from './BoardFilled';
27
+ export { default as BoardOutlined } from './BoardOutlined';
26
28
  export { default as BookFilled } from './BookFilled';
27
29
  export { default as BookOutlined } from './BookOutlined';
28
30
  export { default as BoxAddFilled } from './BoxAddFilled';
package/lib/index.js CHANGED
@@ -8,12 +8,12 @@ var __importDefault = this && this.__importDefault || function (mod) {
8
8
  Object.defineProperty(exports, "__esModule", {
9
9
  value: true
10
10
  });
11
- exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CellPhoneCallFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowTopRightOutlined = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddFilled = exports.ImpassabilityFilled = void 0;
12
- exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = exports.DownloadReportOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownlaodAppOutlined = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotCalenderOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DisplayerOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockOutline = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CirculationFilled = exports.CirclePlusFilled = void 0;
13
- exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InsFilled = exports.ImportOutlined = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GiftWithClipFilled = exports.GiftFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.FileBottomArrowOutlined = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = void 0;
14
- exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OtcMerchant = exports.OtcMerchantLine = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LimitlessFilled = exports.LeftOutlined = void 0;
15
- exports.SiteMapOutlined = exports.SimpleEarthOutlined = exports.SignalDiffusionOutlined = 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 = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = 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.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = void 0;
16
- exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UserOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareUpRightOutlined = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareBoxOutlined = exports.SquareAOutlined = exports.SpeakerOutlined = exports.SpeakerFilled = void 0;
11
+ exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CellPhoneCallFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowTopRightOutlined = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddFilled = exports.ImpassabilityFilled = void 0;
12
+ exports.EarthFilled = exports.DownloadReportOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownlaodAppOutlined = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotCalenderOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DisplayerOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockOutline = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CirculationFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = void 0;
13
+ exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InsFilled = exports.ImportOutlined = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GiftWithClipFilled = exports.GiftFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.FileBottomArrowOutlined = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = void 0;
14
+ exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OtcMerchant = exports.OtcMerchantLine = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = void 0;
15
+ exports.SignalDiffusionOutlined = 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 = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = 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.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = void 0;
16
+ exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UserOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareUpRightOutlined = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareBoxOutlined = exports.SquareAOutlined = exports.SpeakerOutlined = exports.SpeakerFilled = exports.SiteMapOutlined = exports.SimpleEarthOutlined = void 0;
17
17
  var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
18
18
  Object.defineProperty(exports, "ImpassabilityFilled", {
19
19
  enumerable: true,
@@ -189,6 +189,20 @@ Object.defineProperty(exports, "BiscuitOutlined", {
189
189
  return __importDefault(BiscuitOutlined_1)["default"];
190
190
  }
191
191
  });
192
+ var BoardFilled_1 = require("./BoardFilled");
193
+ Object.defineProperty(exports, "BoardFilled", {
194
+ enumerable: true,
195
+ get: function get() {
196
+ return __importDefault(BoardFilled_1)["default"];
197
+ }
198
+ });
199
+ var BoardOutlined_1 = require("./BoardOutlined");
200
+ Object.defineProperty(exports, "BoardOutlined", {
201
+ enumerable: true,
202
+ get: function get() {
203
+ return __importDefault(BoardOutlined_1)["default"];
204
+ }
205
+ });
192
206
  var BookFilled_1 = require("./BookFilled");
193
207
  Object.defineProperty(exports, "BookFilled", {
194
208
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.1.48",
3
+ "version": "1.1.49",
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": "411a832041c1392977983f3b2fc180a51da19beb"
25
+ "gitHead": "8bd4bc099df983dc1be323271c0a9a1f9bcc284b"
26
26
  }
@@ -0,0 +1,32 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function BoardFilled(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
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M12.72 4.927a1.25 1.25 0 00-1.441 0l-7.347 5.186-.865-1.226 7.347-5.186a2.75 2.75 0 013.172 0l7.346 5.186-.865 1.226-7.346-5.186z"
11
+ fill="currentColor"
12
+ />
13
+ <path
14
+ fillRule="evenodd"
15
+ clipRule="evenodd"
16
+ d="M2.75 10c0-.966.784-1.75 1.75-1.75h15c.966 0 1.75.784 1.75 1.75v10a1.75 1.75 0 01-1.75 1.75h-15A1.75 1.75 0 012.75 20V10zm1.75-.25a.25.25 0 00-.25.25v10c0 .138.112.25.25.25h15a.25.25 0 00.25-.25V10a.25.25 0 00-.25-.25h-15z"
17
+ fill="currentColor"
18
+ />
19
+ <path
20
+ fillRule="evenodd"
21
+ clipRule="evenodd"
22
+ d="M3.5 10a1 1 0 011-1h15a1 1 0 011 1v10a1 1 0 01-1 1h-15a1 1 0 01-1-1V10zm3.75 7a.75.75 0 01.75-.75h8a.75.75 0 010 1.5H8a.75.75 0 01-.75-.75zM7 12.25a.75.75 0 000 1.5h10a.75.75 0 000-1.5H7z"
23
+ fill="currentColor"
24
+ />
25
+ </svg>
26
+ );
27
+
28
+ return <Icon {...componentProps} component={IconNode} />;
29
+ }
30
+
31
+ BoardFilled.displayName = 'BoardFilled';
32
+ export default BoardFilled;
@@ -0,0 +1,36 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function BoardOutlined(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <rect
8
+ x={3.5}
9
+ y={9}
10
+ width={17}
11
+ height={12}
12
+ rx={1}
13
+ stroke="currentColor"
14
+ strokeWidth={1.5}
15
+ />
16
+ <path
17
+ d="M3.5 9.5l7.347-5.186a2 2 0 012.306 0L16.25 6.5l4.25 3"
18
+ stroke="currentColor"
19
+ strokeWidth={1.5}
20
+ strokeLinejoin="round"
21
+ />
22
+ <path
23
+ d="M7 13h10M8 17h8"
24
+ stroke="currentColor"
25
+ strokeWidth={1.5}
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ />
29
+ </svg>
30
+ );
31
+
32
+ return <Icon {...componentProps} component={IconNode} />;
33
+ }
34
+
35
+ BoardOutlined.displayName = 'BoardOutlined';
36
+ export default BoardOutlined;
package/src/index.tsx CHANGED
@@ -23,6 +23,8 @@ export { default as BarsOutlined } from './BarsOutlined';
23
23
  export { default as BellOutlined } from './BellOutlined';
24
24
  export { default as BiscuitFilled } from './BiscuitFilled';
25
25
  export { default as BiscuitOutlined } from './BiscuitOutlined';
26
+ export { default as BoardFilled } from './BoardFilled';
27
+ export { default as BoardOutlined } from './BoardOutlined';
26
28
  export { default as BookFilled } from './BookFilled';
27
29
  export { default as BookOutlined } from './BookOutlined';
28
30
  export { default as BoxAddFilled } from './BoxAddFilled';
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M12.7207 4.92691C12.2886 4.62186 11.7112 4.62186 11.279 4.92691L3.93241 10.1128L3.06738 8.88732L10.414 3.70146C11.3648 3.03034 12.635 3.03034 13.5858 3.70146L20.9324 8.88732L20.0674 10.1128L12.7207 4.92691Z"
4
+ fill="currentColor" />
5
+ <path fill-rule="evenodd" clip-rule="evenodd"
6
+ d="M2.75 10C2.75 9.0335 3.5335 8.25 4.5 8.25H19.5C20.4665 8.25 21.25 9.0335 21.25 10V20C21.25 20.9665 20.4665 21.75 19.5 21.75H4.5C3.5335 21.75 2.75 20.9665 2.75 20V10ZM4.5 9.75C4.36193 9.75 4.25 9.86193 4.25 10V20C4.25 20.1381 4.36193 20.25 4.5 20.25H19.5C19.6381 20.25 19.75 20.1381 19.75 20V10C19.75 9.86193 19.6381 9.75 19.5 9.75H4.5Z"
7
+ fill="currentColor" />
8
+ <path fill-rule="evenodd" clip-rule="evenodd"
9
+ d="M3.5 10C3.5 9.44772 3.94772 9 4.5 9H19.5C20.0523 9 20.5 9.44772 20.5 10V20C20.5 20.5523 20.0523 21 19.5 21H4.5C3.94772 21 3.5 20.5523 3.5 20V10ZM7.25 17C7.25 16.5858 7.58579 16.25 8 16.25H16C16.4142 16.25 16.75 16.5858 16.75 17C16.75 17.4142 16.4142 17.75 16 17.75H8C7.58579 17.75 7.25 17.4142 7.25 17ZM7 12.25C6.58579 12.25 6.25 12.5858 6.25 13C6.25 13.4142 6.58579 13.75 7 13.75H17C17.4142 13.75 17.75 13.4142 17.75 13C17.75 12.5858 17.4142 12.25 17 12.25H7Z"
10
+ fill="currentColor" />
11
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="3.5" y="9" width="17" height="12" rx="1" stroke="currentColor" stroke-width="1.5" />
3
+ <path d="M3.5 9.5L10.8466 4.31414C11.5381 3.82606 12.4619 3.82606 13.1534 4.31414L16.25 6.5L20.5 9.5"
4
+ stroke="currentColor" stroke-width="1.5" stroke-linejoin="round" />
5
+ <path d="M7 13H17" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
6
+ <path d="M8 17H16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
7
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M12.7207 4.92691C12.2886 4.62186 11.7112 4.62186 11.279 4.92691L3.93241 10.1128L3.06738 8.88732L10.414 3.70146C11.3648 3.03034 12.635 3.03034 13.5858 3.70146L20.9324 8.88732L20.0674 10.1128L12.7207 4.92691Z"
4
+ fill="currentColor" />
5
+ <path fill-rule="evenodd" clip-rule="evenodd"
6
+ d="M2.75 10C2.75 9.0335 3.5335 8.25 4.5 8.25H19.5C20.4665 8.25 21.25 9.0335 21.25 10V20C21.25 20.9665 20.4665 21.75 19.5 21.75H4.5C3.5335 21.75 2.75 20.9665 2.75 20V10ZM4.5 9.75C4.36193 9.75 4.25 9.86193 4.25 10V20C4.25 20.1381 4.36193 20.25 4.5 20.25H19.5C19.6381 20.25 19.75 20.1381 19.75 20V10C19.75 9.86193 19.6381 9.75 19.5 9.75H4.5Z"
7
+ fill="currentColor" />
8
+ <path fill-rule="evenodd" clip-rule="evenodd"
9
+ d="M3.5 10C3.5 9.44772 3.94772 9 4.5 9H19.5C20.0523 9 20.5 9.44772 20.5 10V20C20.5 20.5523 20.0523 21 19.5 21H4.5C3.94772 21 3.5 20.5523 3.5 20V10ZM7.25 17C7.25 16.5858 7.58579 16.25 8 16.25H16C16.4142 16.25 16.75 16.5858 16.75 17C16.75 17.4142 16.4142 17.75 16 17.75H8C7.58579 17.75 7.25 17.4142 7.25 17ZM7 12.25C6.58579 12.25 6.25 12.5858 6.25 13C6.25 13.4142 6.58579 13.75 7 13.75H17C17.4142 13.75 17.75 13.4142 17.75 13C17.75 12.5858 17.4142 12.25 17 12.25H7Z"
10
+ fill="currentColor" />
11
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="3.5" y="9" width="17" height="12" rx="1" stroke="currentColor" stroke-width="1.5" />
3
+ <path d="M3.5 9.5L10.8466 4.31414C11.5381 3.82606 12.4619 3.82606 13.1534 4.31414L16.25 6.5L20.5 9.5"
4
+ stroke="currentColor" stroke-width="1.5" stroke-linejoin="round" />
5
+ <path d="M7 13H17" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
6
+ <path d="M8 17H16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
7
+ </svg>