feat(blocksAntd): init all antd icons

This commit is contained in:
Gervwyk 2020-11-03 00:32:19 +02:00
parent 2c5af69419
commit bdecc4b751
791 changed files with 18334 additions and 0 deletions

View File

@ -0,0 +1,73 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React, { lazy, Suspense, memo } from 'react';
import { Loading3QuartersOutlined, ExclamationCircleOutlined } from '@ant-design/icons';
import { ErrorBoundary, blockDefaultProps } from '@lowdefy/block-tools';
import { omit, serializer, type } from '@lowdefy/helpers';
const IconBlock = ({ actions, blockId, methods, properties, ...props }) => {
let propertiesCopy = serializer.copy(properties);
if (type.isString(propertiesCopy)) {
propertiesCopy = { name: propertiesCopy };
}
if (!type.isString(propertiesCopy.name)) {
propertiesCopy.name = 'CloseCircleOutlined';
}
const iconProps = {
id: blockId,
className: methods.makeCssClass(properties.style),
rotate: propertiesCopy.rotate,
spin: propertiesCopy.spin,
...omit(props, ['registerAction', 'registerMethod', 'loading', 'schemaErrors']),
};
const IconComp = memo(lazy(() => import(`./icons/${propertiesCopy.name}`)));
return (
<>
{actions.onClick && actions.onClick.loading && !propertiesCopy.disableLoadingIcon ? (
<Loading3QuartersOutlined {...{ ...iconProps, spin: true }} />
) : (
<ErrorBoundary fallback={<ExclamationCircleOutlined {...iconProps} />}>
<Suspense fallback={<Loading3QuartersOutlined {...{ ...iconProps, spin: true }} />}>
<IconComp
id={blockId}
className={methods.makeCssClass([
{ color: propertiesCopy.color, fontSize: propertiesCopy.size },
properties.style,
])}
onClick={
actions.onClick &&
(() =>
methods.callAction({
action: 'onClick',
hideLoading: propertiesCopy.hideActionLoading,
}))
}
twoToneColor={propertiesCopy.color}
rotate={propertiesCopy.rotate}
spin={propertiesCopy.spin}
{...omit(props, ['registerAction', 'registerMethod', 'loading'])} // spread props for Ant design to populate props from parent
/>
</Suspense>
</ErrorBoundary>
)}
</>
);
};
IconBlock.defaultProps = blockDefaultProps;
export default IconBlock;

View File

@ -0,0 +1,854 @@
{
"category": "display",
"loading": false,
"schema": {
"properties": {
"type": "object",
"additionalProperties": false,
"properties": {
"color": {
"type": "string",
"description": "Primary icon color."
},
"name": {
"type": "string",
"default": "ExclamationCircle",
"description": "Name of icon to be displayed",
"enum": [
"AccountBookFilled",
"AccountBookOutlined",
"AccountBookTwoTone",
"AimOutlined",
"AlertFilled",
"AlertOutlined",
"AlertTwoTone",
"AlibabaOutlined",
"AlignCenterOutlined",
"AlignLeftOutlined",
"AlignRightOutlined",
"AlipayCircleFilled",
"AlipayCircleOutlined",
"AlipayOutlined",
"AlipaySquareFilled",
"AliwangwangFilled",
"AliwangwangOutlined",
"AliyunOutlined",
"AmazonCircleFilled",
"AmazonOutlined",
"AmazonSquareFilled",
"AndroidFilled",
"AndroidOutlined",
"AntCloudOutlined",
"AntDesignOutlined",
"ApartmentOutlined",
"ApiFilled",
"ApiOutlined",
"ApiTwoTone",
"AppleFilled",
"AppleOutlined",
"AppstoreAddOutlined",
"AppstoreFilled",
"AppstoreOutlined",
"AppstoreTwoTone",
"AreaChartOutlined",
"ArrowDownOutlined",
"ArrowLeftOutlined",
"ArrowRightOutlined",
"ArrowUpOutlined",
"ArrowsAltOutlined",
"AudioFilled",
"AudioMutedOutlined",
"AudioOutlined",
"AudioTwoTone",
"AuditOutlined",
"BackwardFilled",
"BackwardOutlined",
"BankFilled",
"BankOutlined",
"BankTwoTone",
"BarChartOutlined",
"BarcodeOutlined",
"BarsOutlined",
"BehanceCircleFilled",
"BehanceOutlined",
"BehanceSquareFilled",
"BehanceSquareOutlined",
"BellFilled",
"BellOutlined",
"BellTwoTone",
"BgColorsOutlined",
"BlockOutlined",
"BoldOutlined",
"BookFilled",
"BookOutlined",
"BookTwoTone",
"BorderBottomOutlined",
"BorderHorizontalOutlined",
"BorderInnerOutlined",
"BorderLeftOutlined",
"BorderOuterOutlined",
"BorderOutlined",
"BorderRightOutlined",
"BorderTopOutlined",
"BorderVerticleOutlined",
"BorderlessTableOutlined",
"BoxPlotFilled",
"BoxPlotOutlined",
"BoxPlotTwoTone",
"BranchesOutlined",
"BugFilled",
"BugOutlined",
"BugTwoTone",
"BuildFilled",
"BuildOutlined",
"BuildTwoTone",
"BulbFilled",
"BulbOutlined",
"BulbTwoTone",
"CalculatorFilled",
"CalculatorOutlined",
"CalculatorTwoTone",
"CalendarFilled",
"CalendarOutlined",
"CalendarTwoTone",
"CameraFilled",
"CameraOutlined",
"CameraTwoTone",
"CarFilled",
"CarOutlined",
"CarTwoTone",
"CaretDownFilled",
"CaretDownOutlined",
"CaretLeftFilled",
"CaretLeftOutlined",
"CaretRightFilled",
"CaretRightOutlined",
"CaretUpFilled",
"CaretUpOutlined",
"CarryOutFilled",
"CarryOutOutlined",
"CarryOutTwoTone",
"CheckCircleFilled",
"CheckCircleOutlined",
"CheckCircleTwoTone",
"CheckOutlined",
"CheckSquareFilled",
"CheckSquareOutlined",
"CheckSquareTwoTone",
"ChromeFilled",
"ChromeOutlined",
"CiCircleFilled",
"CiCircleOutlined",
"CiCircleTwoTone",
"CiOutlined",
"CiTwoTone",
"ClearOutlined",
"ClockCircleFilled",
"ClockCircleOutlined",
"ClockCircleTwoTone",
"CloseCircleFilled",
"CloseCircleOutlined",
"CloseCircleTwoTone",
"CloseOutlined",
"CloseSquareFilled",
"CloseSquareOutlined",
"CloseSquareTwoTone",
"CloudDownloadOutlined",
"CloudFilled",
"CloudOutlined",
"CloudServerOutlined",
"CloudSyncOutlined",
"CloudTwoTone",
"CloudUploadOutlined",
"ClusterOutlined",
"CodeFilled",
"CodeOutlined",
"CodeSandboxCircleFilled",
"CodeSandboxOutlined",
"CodeSandboxSquareFilled",
"CodeTwoTone",
"CodepenCircleFilled",
"CodepenCircleOutlined",
"CodepenOutlined",
"CodepenSquareFilled",
"CoffeeOutlined",
"ColumnHeightOutlined",
"ColumnWidthOutlined",
"CommentOutlined",
"CompassFilled",
"CompassOutlined",
"CompassTwoTone",
"CompressOutlined",
"ConsoleSqlOutlined",
"ContactsFilled",
"ContactsOutlined",
"ContactsTwoTone",
"ContainerFilled",
"ContainerOutlined",
"ContainerTwoTone",
"ControlFilled",
"ControlOutlined",
"ControlTwoTone",
"CopyFilled",
"CopyOutlined",
"CopyTwoTone",
"CopyrightCircleFilled",
"CopyrightCircleOutlined",
"CopyrightCircleTwoTone",
"CopyrightOutlined",
"CopyrightTwoTone",
"CreditCardFilled",
"CreditCardOutlined",
"CreditCardTwoTone",
"CrownFilled",
"CrownOutlined",
"CrownTwoTone",
"CustomerServiceFilled",
"CustomerServiceOutlined",
"CustomerServiceTwoTone",
"DashOutlined",
"DashboardFilled",
"DashboardOutlined",
"DashboardTwoTone",
"DatabaseFilled",
"DatabaseOutlined",
"DatabaseTwoTone",
"DeleteColumnOutlined",
"DeleteFilled",
"DeleteOutlined",
"DeleteRowOutlined",
"DeleteTwoTone",
"DeliveredProcedureOutlined",
"DeploymentUnitOutlined",
"DesktopOutlined",
"DiffFilled",
"DiffOutlined",
"DiffTwoTone",
"DingdingOutlined",
"DingtalkCircleFilled",
"DingtalkOutlined",
"DingtalkSquareFilled",
"DisconnectOutlined",
"DislikeFilled",
"DislikeOutlined",
"DislikeTwoTone",
"DollarCircleFilled",
"DollarCircleOutlined",
"DollarCircleTwoTone",
"DollarOutlined",
"DollarTwoTone",
"DotChartOutlined",
"DoubleLeftOutlined",
"DoubleRightOutlined",
"DownCircleFilled",
"DownCircleOutlined",
"DownCircleTwoTone",
"DownOutlined",
"DownSquareFilled",
"DownSquareOutlined",
"DownSquareTwoTone",
"DownloadOutlined",
"DragOutlined",
"DribbbleCircleFilled",
"DribbbleOutlined",
"DribbbleSquareFilled",
"DribbbleSquareOutlined",
"DropboxCircleFilled",
"DropboxOutlined",
"DropboxSquareFilled",
"EditFilled",
"EditOutlined",
"EditTwoTone",
"EllipsisOutlined",
"EnterOutlined",
"EnvironmentFilled",
"EnvironmentOutlined",
"EnvironmentTwoTone",
"EuroCircleFilled",
"EuroCircleOutlined",
"EuroCircleTwoTone",
"EuroOutlined",
"EuroTwoTone",
"ExceptionOutlined",
"ExclamationCircleFilled",
"ExclamationCircleOutlined",
"ExclamationCircleTwoTone",
"ExclamationOutlined",
"ExpandAltOutlined",
"ExpandOutlined",
"ExperimentFilled",
"ExperimentOutlined",
"ExperimentTwoTone",
"ExportOutlined",
"EyeFilled",
"EyeInvisibleFilled",
"EyeInvisibleOutlined",
"EyeInvisibleTwoTone",
"EyeOutlined",
"EyeTwoTone",
"FacebookFilled",
"FacebookOutlined",
"FallOutlined",
"FastBackwardFilled",
"FastBackwardOutlined",
"FastForwardFilled",
"FastForwardOutlined",
"FieldBinaryOutlined",
"FieldNumberOutlined",
"FieldStringOutlined",
"FieldTimeOutlined",
"FileAddFilled",
"FileAddOutlined",
"FileAddTwoTone",
"FileDoneOutlined",
"FileExcelFilled",
"FileExcelOutlined",
"FileExcelTwoTone",
"FileExclamationFilled",
"FileExclamationOutlined",
"FileExclamationTwoTone",
"FileFilled",
"FileGifOutlined",
"FileImageFilled",
"FileImageOutlined",
"FileImageTwoTone",
"FileJpgOutlined",
"FileMarkdownFilled",
"FileMarkdownOutlined",
"FileMarkdownTwoTone",
"FileOutlined",
"FilePdfFilled",
"FilePdfOutlined",
"FilePdfTwoTone",
"FilePptFilled",
"FilePptOutlined",
"FilePptTwoTone",
"FileProtectOutlined",
"FileSearchOutlined",
"FileSyncOutlined",
"FileTextFilled",
"FileTextOutlined",
"FileTextTwoTone",
"FileTwoTone",
"FileUnknownFilled",
"FileUnknownOutlined",
"FileUnknownTwoTone",
"FileWordFilled",
"FileWordOutlined",
"FileWordTwoTone",
"FileZipFilled",
"FileZipOutlined",
"FileZipTwoTone",
"FilterFilled",
"FilterOutlined",
"FilterTwoTone",
"FireFilled",
"FireOutlined",
"FireTwoTone",
"FlagFilled",
"FlagOutlined",
"FlagTwoTone",
"FolderAddFilled",
"FolderAddOutlined",
"FolderAddTwoTone",
"FolderFilled",
"FolderOpenFilled",
"FolderOpenOutlined",
"FolderOpenTwoTone",
"FolderOutlined",
"FolderTwoTone",
"FolderViewOutlined",
"FontColorsOutlined",
"FontSizeOutlined",
"ForkOutlined",
"FormOutlined",
"FormatPainterFilled",
"FormatPainterOutlined",
"ForwardFilled",
"ForwardOutlined",
"FrownFilled",
"FrownOutlined",
"FrownTwoTone",
"FullscreenExitOutlined",
"FullscreenOutlined",
"FunctionOutlined",
"FundFilled",
"FundOutlined",
"FundProjectionScreenOutlined",
"FundTwoTone",
"FundViewOutlined",
"FunnelPlotFilled",
"FunnelPlotOutlined",
"FunnelPlotTwoTone",
"GatewayOutlined",
"GifOutlined",
"GiftFilled",
"GiftOutlined",
"GiftTwoTone",
"GithubFilled",
"GithubOutlined",
"GitlabFilled",
"GitlabOutlined",
"GlobalOutlined",
"GoldFilled",
"GoldOutlined",
"GoldTwoTone",
"GoldenFilled",
"GoogleCircleFilled",
"GoogleOutlined",
"GooglePlusCircleFilled",
"GooglePlusOutlined",
"GooglePlusSquareFilled",
"GoogleSquareFilled",
"GroupOutlined",
"HddFilled",
"HddOutlined",
"HddTwoTone",
"HeartFilled",
"HeartOutlined",
"HeartTwoTone",
"HeatMapOutlined",
"HighlightFilled",
"HighlightOutlined",
"HighlightTwoTone",
"HistoryOutlined",
"HomeFilled",
"HomeOutlined",
"HomeTwoTone",
"HourglassFilled",
"HourglassOutlined",
"HourglassTwoTone",
"Html5Filled",
"Html5Outlined",
"Html5TwoTone",
"IdcardFilled",
"IdcardOutlined",
"IdcardTwoTone",
"IeCircleFilled",
"IeOutlined",
"IeSquareFilled",
"ImportOutlined",
"InboxOutlined",
"InfoCircleFilled",
"InfoCircleOutlined",
"InfoCircleTwoTone",
"InfoOutlined",
"InsertRowAboveOutlined",
"InsertRowBelowOutlined",
"InsertRowLeftOutlined",
"InsertRowRightOutlined",
"InstagramFilled",
"InstagramOutlined",
"InsuranceFilled",
"InsuranceOutlined",
"InsuranceTwoTone",
"InteractionFilled",
"InteractionOutlined",
"InteractionTwoTone",
"IssuesCloseOutlined",
"ItalicOutlined",
"KeyOutlined",
"LaptopOutlined",
"LayoutFilled",
"LayoutOutlined",
"LayoutTwoTone",
"LeftCircleFilled",
"LeftCircleOutlined",
"LeftCircleTwoTone",
"LeftOutlined",
"LeftSquareFilled",
"LeftSquareOutlined",
"LeftSquareTwoTone",
"LikeFilled",
"LikeOutlined",
"LikeTwoTone",
"LineChartOutlined",
"LineHeightOutlined",
"LineOutlined",
"LinkOutlined",
"LinkedinFilled",
"LinkedinOutlined",
"Loading3QuartersOutlined",
"LoadingOutlined",
"LockFilled",
"LockOutlined",
"LockTwoTone",
"LoginOutlined",
"LogoutOutlined",
"MacCommandFilled",
"MacCommandOutlined",
"MailFilled",
"MailOutlined",
"MailTwoTone",
"ManOutlined",
"MedicineBoxFilled",
"MedicineBoxOutlined",
"MedicineBoxTwoTone",
"MediumCircleFilled",
"MediumOutlined",
"MediumSquareFilled",
"MediumWorkmarkOutlined",
"MehFilled",
"MehOutlined",
"MehTwoTone",
"MenuFoldOutlined",
"MenuOutlined",
"MenuUnfoldOutlined",
"MergeCellsOutlined",
"MessageFilled",
"MessageOutlined",
"MessageTwoTone",
"MinusCircleFilled",
"MinusCircleOutlined",
"MinusCircleTwoTone",
"MinusOutlined",
"MinusSquareFilled",
"MinusSquareOutlined",
"MinusSquareTwoTone",
"MobileFilled",
"MobileOutlined",
"MobileTwoTone",
"MoneyCollectFilled",
"MoneyCollectOutlined",
"MoneyCollectTwoTone",
"MonitorOutlined",
"MoreOutlined",
"NodeCollapseOutlined",
"NodeExpandOutlined",
"NodeIndexOutlined",
"NotificationFilled",
"NotificationOutlined",
"NotificationTwoTone",
"NumberOutlined",
"OneToOneOutlined",
"OrderedListOutlined",
"PaperClipOutlined",
"PartitionOutlined",
"PauseCircleFilled",
"PauseCircleOutlined",
"PauseCircleTwoTone",
"PauseOutlined",
"PayCircleFilled",
"PayCircleOutlined",
"PercentageOutlined",
"PhoneFilled",
"PhoneOutlined",
"PhoneTwoTone",
"PicCenterOutlined",
"PicLeftOutlined",
"PicRightOutlined",
"PictureFilled",
"PictureOutlined",
"PictureTwoTone",
"PieChartFilled",
"PieChartOutlined",
"PieChartTwoTone",
"PlayCircleFilled",
"PlayCircleOutlined",
"PlayCircleTwoTone",
"PlaySquareFilled",
"PlaySquareOutlined",
"PlaySquareTwoTone",
"PlusCircleFilled",
"PlusCircleOutlined",
"PlusCircleTwoTone",
"PlusOutlined",
"PlusSquareFilled",
"PlusSquareOutlined",
"PlusSquareTwoTone",
"PoundCircleFilled",
"PoundCircleOutlined",
"PoundCircleTwoTone",
"PoundOutlined",
"PoweroffOutlined",
"PrinterFilled",
"PrinterOutlined",
"PrinterTwoTone",
"ProfileFilled",
"ProfileOutlined",
"ProfileTwoTone",
"ProjectFilled",
"ProjectOutlined",
"ProjectTwoTone",
"PropertySafetyFilled",
"PropertySafetyOutlined",
"PropertySafetyTwoTone",
"PullRequestOutlined",
"PushpinFilled",
"PushpinOutlined",
"PushpinTwoTone",
"QqCircleFilled",
"QqOutlined",
"QqSquareFilled",
"QrcodeOutlined",
"QuestionCircleFilled",
"QuestionCircleOutlined",
"QuestionCircleTwoTone",
"QuestionOutlined",
"RadarChartOutlined",
"RadiusBottomleftOutlined",
"RadiusBottomrightOutlined",
"RadiusSettingOutlined",
"RadiusUpleftOutlined",
"RadiusUprightOutlined",
"ReadFilled",
"ReadOutlined",
"ReconciliationFilled",
"ReconciliationOutlined",
"ReconciliationTwoTone",
"RedEnvelopeFilled",
"RedEnvelopeOutlined",
"RedEnvelopeTwoTone",
"RedditCircleFilled",
"RedditOutlined",
"RedditSquareFilled",
"RedoOutlined",
"ReloadOutlined",
"RestFilled",
"RestOutlined",
"RestTwoTone",
"RetweetOutlined",
"RightCircleFilled",
"RightCircleOutlined",
"RightCircleTwoTone",
"RightOutlined",
"RightSquareFilled",
"RightSquareOutlined",
"RightSquareTwoTone",
"RiseOutlined",
"RobotFilled",
"RobotOutlined",
"RocketFilled",
"RocketOutlined",
"RocketTwoTone",
"RollbackOutlined",
"RotateLeftOutlined",
"RotateRightOutlined",
"SafetyCertificateFilled",
"SafetyCertificateOutlined",
"SafetyCertificateTwoTone",
"SafetyOutlined",
"SaveFilled",
"SaveOutlined",
"SaveTwoTone",
"ScanOutlined",
"ScheduleFilled",
"ScheduleOutlined",
"ScheduleTwoTone",
"ScissorOutlined",
"SearchOutlined",
"SecurityScanFilled",
"SecurityScanOutlined",
"SecurityScanTwoTone",
"SelectOutlined",
"SendOutlined",
"SettingFilled",
"SettingOutlined",
"SettingTwoTone",
"ShakeOutlined",
"ShareAltOutlined",
"ShopFilled",
"ShopOutlined",
"ShopTwoTone",
"ShoppingCartOutlined",
"ShoppingFilled",
"ShoppingOutlined",
"ShoppingTwoTone",
"ShrinkOutlined",
"SignalFilled",
"SisternodeOutlined",
"SketchCircleFilled",
"SketchOutlined",
"SketchSquareFilled",
"SkinFilled",
"SkinOutlined",
"SkinTwoTone",
"SkypeFilled",
"SkypeOutlined",
"SlackCircleFilled",
"SlackOutlined",
"SlackSquareFilled",
"SlackSquareOutlined",
"SlidersFilled",
"SlidersOutlined",
"SlidersTwoTone",
"SmallDashOutlined",
"SmileFilled",
"SmileOutlined",
"SmileTwoTone",
"SnippetsFilled",
"SnippetsOutlined",
"SnippetsTwoTone",
"SolutionOutlined",
"SortAscendingOutlined",
"SortDescendingOutlined",
"SoundFilled",
"SoundOutlined",
"SoundTwoTone",
"SplitCellsOutlined",
"StarFilled",
"StarOutlined",
"StarTwoTone",
"StepBackwardFilled",
"StepBackwardOutlined",
"StepForwardFilled",
"StepForwardOutlined",
"StockOutlined",
"StopFilled",
"StopOutlined",
"StopTwoTone",
"StrikethroughOutlined",
"SubnodeOutlined",
"SwapLeftOutlined",
"SwapOutlined",
"SwapRightOutlined",
"SwitcherFilled",
"SwitcherOutlined",
"SwitcherTwoTone",
"SyncOutlined",
"TableOutlined",
"TabletFilled",
"TabletOutlined",
"TabletTwoTone",
"TagFilled",
"TagOutlined",
"TagTwoTone",
"TagsFilled",
"TagsOutlined",
"TagsTwoTone",
"TaobaoCircleFilled",
"TaobaoCircleOutlined",
"TaobaoOutlined",
"TaobaoSquareFilled",
"TeamOutlined",
"ThunderboltFilled",
"ThunderboltOutlined",
"ThunderboltTwoTone",
"ToTopOutlined",
"ToolFilled",
"ToolOutlined",
"ToolTwoTone",
"TrademarkCircleFilled",
"TrademarkCircleOutlined",
"TrademarkCircleTwoTone",
"TrademarkOutlined",
"TransactionOutlined",
"TranslationOutlined",
"TrophyFilled",
"TrophyOutlined",
"TrophyTwoTone",
"TwitterCircleFilled",
"TwitterOutlined",
"TwitterSquareFilled",
"UnderlineOutlined",
"UndoOutlined",
"UngroupOutlined",
"UnlockFilled",
"UnlockOutlined",
"UnlockTwoTone",
"UnorderedListOutlined",
"UpCircleFilled",
"UpCircleOutlined",
"UpCircleTwoTone",
"UpOutlined",
"UpSquareFilled",
"UpSquareOutlined",
"UpSquareTwoTone",
"UploadOutlined",
"UsbFilled",
"UsbOutlined",
"UsbTwoTone",
"UserAddOutlined",
"UserDeleteOutlined",
"UserOutlined",
"UserSwitchOutlined",
"UsergroupAddOutlined",
"UsergroupDeleteOutlined",
"VerifiedOutlined",
"VerticalAlignBottomOutlined",
"VerticalAlignMiddleOutlined",
"VerticalAlignTopOutlined",
"VerticalLeftOutlined",
"VerticalRightOutlined",
"VideoCameraAddOutlined",
"VideoCameraFilled",
"VideoCameraOutlined",
"VideoCameraTwoTone",
"WalletFilled",
"WalletOutlined",
"WalletTwoTone",
"WarningFilled",
"WarningOutlined",
"WarningTwoTone",
"WechatFilled",
"WechatOutlined",
"WeiboCircleFilled",
"WeiboCircleOutlined",
"WeiboOutlined",
"WeiboSquareFilled",
"WeiboSquareOutlined",
"WhatsAppOutlined",
"WifiOutlined",
"WindowsFilled",
"WindowsOutlined",
"WomanOutlined",
"YahooFilled",
"YahooOutlined",
"YoutubeFilled",
"YoutubeOutlined",
"YuqueFilled",
"YuqueOutlined",
"ZhihuCircleFilled",
"ZhihuOutlined",
"ZhihuSquareFilled",
"ZoomInOutlined",
"ZoomOutOutlined"
]
},
"theme": {
"type": "string",
"enum": ["Outlined", "Filled", "TwoTone"],
"default": "Outlined",
"description": "Icon theme style"
},
"rotate": {
"type": "number",
"description": "Number of degrees to rotate the icon"
},
"size": {
"type": ["string", "number"],
"description": "Size of the icon"
},
"spin": {
"type": "boolean",
"default": false,
"description": "Continuously spin icon with animation"
},
"style": {
"type": "object",
"description": "CSS style object"
},
"disableLoadingIcon": {
"type": "boolean",
"default": false,
"description": "While loading after the icon has been clicked, don't render the loading icon"
},
"hideLoadingMessage": {
"type": "boolean",
"default": false,
"description": "While loading after the icon has been clicked, don't show the loading message"
}
}
},
"actions": {
"type": "object",
"additionalProperties": false,
"properties": {
"onClick": {
"type": "array"
}
}
}
}
}

View File

@ -0,0 +1,71 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const AllIcons = require('@ant-design/icons');
const fs = require('fs');
const promisify = require('util').promisify;
function isIcon(str) {
return str.charAt(0).toUpperCase() === str.charAt(0);
}
const writeFile = promisify(fs.writeFile);
async function generate() {
const allIcons = new Set();
Object.keys(AllIcons).forEach(async (key) => {
if (isIcon(key)) {
allIcons.add(key);
await writeFile(
`./src/blocks/Icon/icons/${key}.js`,
`/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { ${key} } from '@ant-design/icons';
const Comp = (props) => <${key} {...props} />;
export default Comp;
`
);
}
});
console.log('Json Icon Array for Schema');
console.log('--------------------------');
[...allIcons].forEach(async (key) => {
console.log(`"${key}",`);
});
console.log('--------------------------');
console.log('Yaml Icon Array for Docs');
console.log('--------------------------');
[...allIcons].forEach(async (key) => {
console.log(`- { label: "${key}", value: "${key}" }`);
});
}
generate();

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AccountBookFilled } from '@ant-design/icons';
const Comp = (props) => <AccountBookFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AccountBookOutlined } from '@ant-design/icons';
const Comp = (props) => <AccountBookOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AccountBookTwoTone } from '@ant-design/icons';
const Comp = (props) => <AccountBookTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AimOutlined } from '@ant-design/icons';
const Comp = (props) => <AimOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlertFilled } from '@ant-design/icons';
const Comp = (props) => <AlertFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlertOutlined } from '@ant-design/icons';
const Comp = (props) => <AlertOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlertTwoTone } from '@ant-design/icons';
const Comp = (props) => <AlertTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlibabaOutlined } from '@ant-design/icons';
const Comp = (props) => <AlibabaOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlignCenterOutlined } from '@ant-design/icons';
const Comp = (props) => <AlignCenterOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlignLeftOutlined } from '@ant-design/icons';
const Comp = (props) => <AlignLeftOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlignRightOutlined } from '@ant-design/icons';
const Comp = (props) => <AlignRightOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlipayCircleFilled } from '@ant-design/icons';
const Comp = (props) => <AlipayCircleFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlipayCircleOutlined } from '@ant-design/icons';
const Comp = (props) => <AlipayCircleOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlipayOutlined } from '@ant-design/icons';
const Comp = (props) => <AlipayOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AlipaySquareFilled } from '@ant-design/icons';
const Comp = (props) => <AlipaySquareFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AliwangwangFilled } from '@ant-design/icons';
const Comp = (props) => <AliwangwangFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AliwangwangOutlined } from '@ant-design/icons';
const Comp = (props) => <AliwangwangOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AliyunOutlined } from '@ant-design/icons';
const Comp = (props) => <AliyunOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AmazonCircleFilled } from '@ant-design/icons';
const Comp = (props) => <AmazonCircleFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AmazonOutlined } from '@ant-design/icons';
const Comp = (props) => <AmazonOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AmazonSquareFilled } from '@ant-design/icons';
const Comp = (props) => <AmazonSquareFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AndroidFilled } from '@ant-design/icons';
const Comp = (props) => <AndroidFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AndroidOutlined } from '@ant-design/icons';
const Comp = (props) => <AndroidOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AntCloudOutlined } from '@ant-design/icons';
const Comp = (props) => <AntCloudOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AntDesignOutlined } from '@ant-design/icons';
const Comp = (props) => <AntDesignOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { ApartmentOutlined } from '@ant-design/icons';
const Comp = (props) => <ApartmentOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { ApiFilled } from '@ant-design/icons';
const Comp = (props) => <ApiFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { ApiOutlined } from '@ant-design/icons';
const Comp = (props) => <ApiOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { ApiTwoTone } from '@ant-design/icons';
const Comp = (props) => <ApiTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AppleFilled } from '@ant-design/icons';
const Comp = (props) => <AppleFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AppleOutlined } from '@ant-design/icons';
const Comp = (props) => <AppleOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AppstoreAddOutlined } from '@ant-design/icons';
const Comp = (props) => <AppstoreAddOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AppstoreFilled } from '@ant-design/icons';
const Comp = (props) => <AppstoreFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AppstoreOutlined } from '@ant-design/icons';
const Comp = (props) => <AppstoreOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AppstoreTwoTone } from '@ant-design/icons';
const Comp = (props) => <AppstoreTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AreaChartOutlined } from '@ant-design/icons';
const Comp = (props) => <AreaChartOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { ArrowDownOutlined } from '@ant-design/icons';
const Comp = (props) => <ArrowDownOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { ArrowLeftOutlined } from '@ant-design/icons';
const Comp = (props) => <ArrowLeftOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { ArrowRightOutlined } from '@ant-design/icons';
const Comp = (props) => <ArrowRightOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { ArrowUpOutlined } from '@ant-design/icons';
const Comp = (props) => <ArrowUpOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { ArrowsAltOutlined } from '@ant-design/icons';
const Comp = (props) => <ArrowsAltOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AudioFilled } from '@ant-design/icons';
const Comp = (props) => <AudioFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AudioMutedOutlined } from '@ant-design/icons';
const Comp = (props) => <AudioMutedOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AudioOutlined } from '@ant-design/icons';
const Comp = (props) => <AudioOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AudioTwoTone } from '@ant-design/icons';
const Comp = (props) => <AudioTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { AuditOutlined } from '@ant-design/icons';
const Comp = (props) => <AuditOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BackwardFilled } from '@ant-design/icons';
const Comp = (props) => <BackwardFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BackwardOutlined } from '@ant-design/icons';
const Comp = (props) => <BackwardOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BankFilled } from '@ant-design/icons';
const Comp = (props) => <BankFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BankOutlined } from '@ant-design/icons';
const Comp = (props) => <BankOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BankTwoTone } from '@ant-design/icons';
const Comp = (props) => <BankTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BarChartOutlined } from '@ant-design/icons';
const Comp = (props) => <BarChartOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BarcodeOutlined } from '@ant-design/icons';
const Comp = (props) => <BarcodeOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BarsOutlined } from '@ant-design/icons';
const Comp = (props) => <BarsOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BehanceCircleFilled } from '@ant-design/icons';
const Comp = (props) => <BehanceCircleFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BehanceOutlined } from '@ant-design/icons';
const Comp = (props) => <BehanceOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BehanceSquareFilled } from '@ant-design/icons';
const Comp = (props) => <BehanceSquareFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BehanceSquareOutlined } from '@ant-design/icons';
const Comp = (props) => <BehanceSquareOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BellFilled } from '@ant-design/icons';
const Comp = (props) => <BellFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BellOutlined } from '@ant-design/icons';
const Comp = (props) => <BellOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BellTwoTone } from '@ant-design/icons';
const Comp = (props) => <BellTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BgColorsOutlined } from '@ant-design/icons';
const Comp = (props) => <BgColorsOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BlockOutlined } from '@ant-design/icons';
const Comp = (props) => <BlockOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BoldOutlined } from '@ant-design/icons';
const Comp = (props) => <BoldOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BookFilled } from '@ant-design/icons';
const Comp = (props) => <BookFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BookOutlined } from '@ant-design/icons';
const Comp = (props) => <BookOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BookTwoTone } from '@ant-design/icons';
const Comp = (props) => <BookTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BorderBottomOutlined } from '@ant-design/icons';
const Comp = (props) => <BorderBottomOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BorderHorizontalOutlined } from '@ant-design/icons';
const Comp = (props) => <BorderHorizontalOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BorderInnerOutlined } from '@ant-design/icons';
const Comp = (props) => <BorderInnerOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BorderLeftOutlined } from '@ant-design/icons';
const Comp = (props) => <BorderLeftOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BorderOuterOutlined } from '@ant-design/icons';
const Comp = (props) => <BorderOuterOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BorderOutlined } from '@ant-design/icons';
const Comp = (props) => <BorderOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BorderRightOutlined } from '@ant-design/icons';
const Comp = (props) => <BorderRightOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BorderTopOutlined } from '@ant-design/icons';
const Comp = (props) => <BorderTopOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BorderVerticleOutlined } from '@ant-design/icons';
const Comp = (props) => <BorderVerticleOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BorderlessTableOutlined } from '@ant-design/icons';
const Comp = (props) => <BorderlessTableOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BoxPlotFilled } from '@ant-design/icons';
const Comp = (props) => <BoxPlotFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BoxPlotOutlined } from '@ant-design/icons';
const Comp = (props) => <BoxPlotOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BoxPlotTwoTone } from '@ant-design/icons';
const Comp = (props) => <BoxPlotTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BranchesOutlined } from '@ant-design/icons';
const Comp = (props) => <BranchesOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BugFilled } from '@ant-design/icons';
const Comp = (props) => <BugFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BugOutlined } from '@ant-design/icons';
const Comp = (props) => <BugOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BugTwoTone } from '@ant-design/icons';
const Comp = (props) => <BugTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BuildFilled } from '@ant-design/icons';
const Comp = (props) => <BuildFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BuildOutlined } from '@ant-design/icons';
const Comp = (props) => <BuildOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BuildTwoTone } from '@ant-design/icons';
const Comp = (props) => <BuildTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BulbFilled } from '@ant-design/icons';
const Comp = (props) => <BulbFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BulbOutlined } from '@ant-design/icons';
const Comp = (props) => <BulbOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { BulbTwoTone } from '@ant-design/icons';
const Comp = (props) => <BulbTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { CalculatorFilled } from '@ant-design/icons';
const Comp = (props) => <CalculatorFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { CalculatorOutlined } from '@ant-design/icons';
const Comp = (props) => <CalculatorOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { CalculatorTwoTone } from '@ant-design/icons';
const Comp = (props) => <CalculatorTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { CalendarFilled } from '@ant-design/icons';
const Comp = (props) => <CalendarFilled {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { CalendarOutlined } from '@ant-design/icons';
const Comp = (props) => <CalendarOutlined {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { CalendarTwoTone } from '@ant-design/icons';
const Comp = (props) => <CalendarTwoTone {...props} />;
export default Comp;

View File

@ -0,0 +1,22 @@
/*
Copyright 2020 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
import { CameraFilled } from '@ant-design/icons';
const Comp = (props) => <CameraFilled {...props} />;
export default Comp;

Some files were not shown because too many files have changed in this diff Show More