├── .nvmrc ├── packages ├── site │ ├── src │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── imgs │ │ │ │ ├── avatar.png │ │ │ │ ├── bg-1.png │ │ │ │ ├── image-1.jpg │ │ │ │ ├── image-2.jpg │ │ │ │ ├── image-3.jpg │ │ │ │ └── image-4.jpg │ │ ├── styles │ │ │ ├── _variables.scss │ │ │ ├── vendor │ │ │ │ ├── highlight.scss │ │ │ │ └── ui.scss │ │ │ ├── _root.scss │ │ │ └── _module.scss │ │ ├── app │ │ │ └── components │ │ │ │ ├── footer │ │ │ │ └── index.ts │ │ │ │ ├── route │ │ │ │ ├── md │ │ │ │ │ └── index.ts │ │ │ │ └── component │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── online-ide │ │ │ │ │ ├── files │ │ │ │ │ │ ├── index.html.ts │ │ │ │ │ │ └── stackblitz │ │ │ │ │ │ │ └── tsconfig.json.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── base64.compose.png │ │ │ │ │ └── base64.virtual-scroll.png │ │ │ │ └── fcp-loader │ │ │ │ ├── index.ts │ │ │ │ └── FCPLoader.tsx │ │ ├── styles.scss │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── startup │ │ │ ├── index.ts │ │ │ └── startup.ts │ │ └── polyfills.ts │ ├── .gitignore │ ├── README.md │ ├── executors │ │ ├── package.json │ │ ├── build-base │ │ │ └── files │ │ │ │ └── routes.txt │ │ └── executors.json │ └── .babelrc ├── platform │ ├── src │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── imgs │ │ │ │ └── avatar.png │ │ ├── startup │ │ │ ├── i18n │ │ │ │ └── index.ts │ │ │ ├── startup.ts │ │ │ ├── index.ts │ │ │ └── config.ts │ │ ├── styles │ │ │ ├── _variables.scss │ │ │ ├── vendor │ │ │ │ └── ui.scss │ │ │ ├── _root.scss │ │ │ ├── theme-dark.scss │ │ │ └── components │ │ │ │ ├── language.scss │ │ │ │ └── chart.scss │ │ ├── app │ │ │ ├── components │ │ │ │ ├── list │ │ │ │ │ └── index.ts │ │ │ │ ├── chart │ │ │ │ │ └── index.ts │ │ │ │ ├── table │ │ │ │ │ └── index.ts │ │ │ │ ├── language │ │ │ │ │ └── index.ts │ │ │ │ ├── detail-view │ │ │ │ │ └── index.ts │ │ │ │ ├── fcp-loader │ │ │ │ │ ├── index.ts │ │ │ │ │ └── FCPLoader.tsx │ │ │ │ ├── status-dot │ │ │ │ │ └── index.ts │ │ │ │ ├── table-filter │ │ │ │ │ └── index.ts │ │ │ │ ├── responsive-form │ │ │ │ │ └── index.ts │ │ │ │ ├── route-header │ │ │ │ │ └── index.ts │ │ │ │ └── map │ │ │ │ │ └── index.ts │ │ │ ├── core │ │ │ │ ├── http │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── dayjs.ts │ │ │ ├── routes │ │ │ │ ├── layout │ │ │ │ │ └── header │ │ │ │ │ │ └── user │ │ │ │ │ │ └── User.module.scss │ │ │ │ ├── dashboard │ │ │ │ │ ├── amap │ │ │ │ │ │ └── AMap.module.scss │ │ │ │ │ └── echarts │ │ │ │ │ │ └── ECharts.module.scss │ │ │ │ ├── login │ │ │ │ │ └── base64.bg.png │ │ │ │ ├── list │ │ │ │ │ └── standard-table │ │ │ │ │ │ ├── detail │ │ │ │ │ │ └── Detail.module.scss │ │ │ │ │ │ └── StandardTable.module.scss │ │ │ │ └── test │ │ │ │ │ └── http │ │ │ │ │ └── Http.module.scss │ │ │ ├── hooks │ │ │ │ └── index.ts │ │ │ ├── utils │ │ │ │ └── vars.ts │ │ │ └── config │ │ │ │ ├── storage.ts │ │ │ │ └── other.ts │ │ ├── environments │ │ │ ├── index.ts │ │ │ └── environment.prod.ts │ │ ├── styles.scss │ │ └── polyfills.ts │ └── .babelrc ├── ui │ ├── src │ │ ├── index.ts │ │ ├── __tests__ │ │ │ ├── config.ts │ │ │ └── index.ts │ │ ├── components │ │ │ ├── menu │ │ │ │ └── index.ts │ │ │ ├── tabs │ │ │ │ └── index.ts │ │ │ ├── tag │ │ │ │ └── index.ts │ │ │ ├── tree │ │ │ │ └── index.ts │ │ │ ├── _footer │ │ │ │ └── index.ts │ │ │ ├── _header │ │ │ │ └── index.ts │ │ │ ├── _mask │ │ │ │ └── index.ts │ │ │ ├── affix │ │ │ │ └── index.ts │ │ │ ├── alert │ │ │ │ └── index.ts │ │ │ ├── anchor │ │ │ │ └── index.ts │ │ │ ├── avatar │ │ │ │ └── index.ts │ │ │ ├── button │ │ │ │ └── index.ts │ │ │ ├── empty │ │ │ │ └── index.ts │ │ │ ├── input │ │ │ │ └── index.ts │ │ │ ├── rating │ │ │ │ └── index.ts │ │ │ ├── select │ │ │ │ └── index.ts │ │ │ ├── slider │ │ │ │ └── index.ts │ │ │ ├── slides │ │ │ │ └── index.ts │ │ │ ├── switch │ │ │ │ └── index.ts │ │ │ ├── toast │ │ │ │ └── index.ts │ │ │ ├── accordion │ │ │ │ └── index.ts │ │ │ ├── cascader │ │ │ │ └── index.ts │ │ │ ├── dropdown │ │ │ │ └── index.ts │ │ │ ├── progress │ │ │ │ └── index.ts │ │ │ ├── separator │ │ │ │ └── index.ts │ │ │ ├── skeleton │ │ │ │ └── index.ts │ │ │ ├── spinner │ │ │ │ └── index.ts │ │ │ ├── stepper │ │ │ │ └── index.ts │ │ │ ├── textarea │ │ │ │ └── index.ts │ │ │ ├── timeline │ │ │ │ └── index.ts │ │ │ ├── tooltip │ │ │ │ └── index.ts │ │ │ ├── transfer │ │ │ │ └── index.ts │ │ │ ├── _base-design │ │ │ │ └── index.ts │ │ │ ├── _base-input │ │ │ │ └── index.ts │ │ │ ├── _date-input │ │ │ │ └── index.ts │ │ │ ├── _selectbox │ │ │ │ └── index.ts │ │ │ ├── breadcrumb │ │ │ │ └── index.ts │ │ │ ├── date-picker │ │ │ │ └── index.ts │ │ │ ├── pagination │ │ │ │ └── index.ts │ │ │ ├── time-picker │ │ │ │ └── index.ts │ │ │ ├── tree-select │ │ │ │ └── index.ts │ │ │ ├── _alert-popover │ │ │ │ └── index.ts │ │ │ ├── _focus-visible │ │ │ │ └── index.ts │ │ │ ├── auto-complete │ │ │ │ └── index.ts │ │ │ ├── notification │ │ │ │ └── index.ts │ │ │ ├── virtual-scroll │ │ │ │ └── index.ts │ │ │ ├── badge │ │ │ │ └── index.ts │ │ │ ├── _popup │ │ │ │ └── index.ts │ │ │ ├── compose │ │ │ │ └── index.ts │ │ │ ├── _keyboard │ │ │ │ ├── index.ts │ │ │ │ ├── utils.ts │ │ │ │ └── types.ts │ │ │ ├── _transition │ │ │ │ └── index.ts │ │ │ ├── fab │ │ │ │ └── index.ts │ │ │ ├── root │ │ │ │ ├── index.ts │ │ │ │ └── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ └── usePrefixConfig.ts │ │ │ ├── image │ │ │ │ └── index.ts │ │ │ ├── modal │ │ │ │ └── index.ts │ │ │ ├── drawer │ │ │ │ └── index.ts │ │ │ ├── popover │ │ │ │ └── index.ts │ │ │ ├── radio │ │ │ │ └── index.ts │ │ │ ├── checkbox │ │ │ │ └── index.ts │ │ │ ├── upload │ │ │ │ └── index.ts │ │ │ ├── card │ │ │ │ └── index.ts │ │ │ ├── table │ │ │ │ └── index.ts │ │ │ └── form │ │ │ │ └── index.ts │ │ ├── styles │ │ │ ├── _reboot.scss │ │ │ ├── components │ │ │ │ ├── mixins │ │ │ │ │ ├── _overwrite.scss │ │ │ │ │ └── _form.scss │ │ │ │ └── icon.scss │ │ │ ├── _mixins.scss │ │ │ ├── mixins │ │ │ │ └── _config.scss │ │ │ └── _animations.scss │ │ ├── utils │ │ │ ├── position │ │ │ │ └── index.ts │ │ │ ├── vars.ts │ │ │ ├── checkNoExpandedEl.ts │ │ │ ├── cloneHTMLElement.ts │ │ │ └── types.ts │ │ └── hooks │ │ │ └── index.ts │ ├── README.md │ ├── jest.setup.js │ └── .babelrc ├── hooks │ ├── README.md │ ├── src │ │ ├── useId.ts │ │ ├── storage │ │ │ ├── index.ts │ │ │ └── storage.ts │ │ ├── useIsomorphicLayoutEffect.ts │ │ ├── useMount.ts │ │ ├── useForceUpdate.ts │ │ ├── useUnmount.ts │ │ └── useEventCallback.ts │ ├── .babelrc │ └── jest.config.js ├── icons │ ├── README.md │ ├── src │ │ ├── index.ts │ │ └── dist │ │ │ ├── ApiFilled.tsx │ │ │ ├── ApiTwoTone.tsx │ │ │ ├── BankFilled.tsx │ │ │ ├── BellFilled.tsx │ │ │ ├── BookFilled.tsx │ │ │ ├── BugFilled.tsx │ │ │ ├── BugTwoTone.tsx │ │ │ ├── BulbFilled.tsx │ │ │ ├── CarFilled.tsx │ │ │ ├── CarTwoTone.tsx │ │ │ ├── CiOutlined.tsx │ │ │ ├── CiTwoTone.tsx │ │ │ ├── CodeFilled.tsx │ │ │ ├── CopyFilled.tsx │ │ │ ├── DiffFilled.tsx │ │ │ ├── EditFilled.tsx │ │ │ ├── EyeFilled.tsx │ │ │ ├── EyeTwoTone.tsx │ │ │ ├── FileFilled.tsx │ │ │ ├── FireFilled.tsx │ │ │ ├── FlagFilled.tsx │ │ │ ├── FundFilled.tsx │ │ │ ├── GiftFilled.tsx │ │ │ ├── GoldFilled.tsx │ │ │ ├── HddFilled.tsx │ │ │ ├── HddTwoTone.tsx │ │ │ ├── HomeFilled.tsx │ │ │ ├── IeOutlined.tsx │ │ │ ├── LikeFilled.tsx │ │ │ ├── LockFilled.tsx │ │ │ ├── MailFilled.tsx │ │ │ ├── MehFilled.tsx │ │ │ ├── MehTwoTone.tsx │ │ │ ├── QqOutlined.tsx │ │ │ ├── ReadFilled.tsx │ │ │ ├── RestFilled.tsx │ │ │ ├── SaveFilled.tsx │ │ │ ├── ShopFilled.tsx │ │ │ ├── SkinFilled.tsx │ │ │ ├── StarFilled.tsx │ │ │ ├── StopFilled.tsx │ │ │ ├── TagFilled.tsx │ │ │ ├── TagTwoTone.tsx │ │ │ ├── TagsFilled.tsx │ │ │ ├── ToolFilled.tsx │ │ │ ├── UpOutlined.tsx │ │ │ ├── UsbFilled.tsx │ │ │ ├── UsbTwoTone.tsx │ │ │ ├── AimOutlined.tsx │ │ │ ├── AlertFilled.tsx │ │ │ ├── ApiOutlined.tsx │ │ │ ├── AppleFilled.tsx │ │ │ ├── AudioFilled.tsx │ │ │ ├── BankTwoTone.tsx │ │ │ ├── BellTwoTone.tsx │ │ │ ├── BookTwoTone.tsx │ │ │ ├── BugOutlined.tsx │ │ │ ├── BuildFilled.tsx │ │ │ ├── BulbTwoTone.tsx │ │ │ ├── CarOutlined.tsx │ │ │ ├── CloudFilled.tsx │ │ │ ├── CodeTwoTone.tsx │ │ │ ├── CopyTwoTone.tsx │ │ │ ├── CrownFilled.tsx │ │ │ ├── DiffTwoTone.tsx │ │ │ ├── EditTwoTone.tsx │ │ │ ├── EuroTwoTone.tsx │ │ │ ├── EyeOutlined.tsx │ │ │ ├── FileTwoTone.tsx │ │ │ ├── FireTwoTone.tsx │ │ │ ├── FlagTwoTone.tsx │ │ │ ├── FrownFilled.tsx │ │ │ ├── FundTwoTone.tsx │ │ │ ├── GifOutlined.tsx │ │ │ ├── GiftTwoTone.tsx │ │ │ ├── GoldTwoTone.tsx │ │ │ ├── HddOutlined.tsx │ │ │ ├── HeartFilled.tsx │ │ │ ├── HomeTwoTone.tsx │ │ │ ├── Html5Filled.tsx │ │ │ ├── KeyOutlined.tsx │ │ │ ├── LikeTwoTone.tsx │ │ │ ├── LockTwoTone.tsx │ │ │ ├── MailTwoTone.tsx │ │ │ ├── ManOutlined.tsx │ │ │ ├── MehOutlined.tsx │ │ │ ├── PhoneFilled.tsx │ │ │ ├── RestTwoTone.tsx │ │ │ ├── RobotFilled.tsx │ │ │ ├── SaveTwoTone.tsx │ │ │ ├── ShopTwoTone.tsx │ │ │ ├── SkinTwoTone.tsx │ │ │ ├── SkypeFilled.tsx │ │ │ ├── SmileFilled.tsx │ │ │ ├── SoundFilled.tsx │ │ │ ├── StarTwoTone.tsx │ │ │ ├── StopTwoTone.tsx │ │ │ ├── TagOutlined.tsx │ │ │ ├── TagsTwoTone.tsx │ │ │ ├── ToolTwoTone.tsx │ │ │ ├── UsbOutlined.tsx │ │ │ ├── YahooFilled.tsx │ │ │ ├── YuqueFilled.tsx │ │ │ ├── AlertOutlined.tsx │ │ │ ├── AlertTwoTone.tsx │ │ │ ├── AndroidFilled.tsx │ │ │ ├── AppleOutlined.tsx │ │ │ ├── AudioOutlined.tsx │ │ │ ├── AudioTwoTone.tsx │ │ │ ├── AuditOutlined.tsx │ │ │ ├── BankOutlined.tsx │ │ │ ├── BarsOutlined.tsx │ │ │ ├── BellOutlined.tsx │ │ │ ├── BlockOutlined.tsx │ │ │ ├── BoldOutlined.tsx │ │ │ ├── BookOutlined.tsx │ │ │ ├── BoxPlotFilled.tsx │ │ │ ├── BuildOutlined.tsx │ │ │ ├── BuildTwoTone.tsx │ │ │ ├── BulbOutlined.tsx │ │ │ ├── CameraFilled.tsx │ │ │ ├── CameraTwoTone.tsx │ │ │ ├── CaretUpFilled.tsx │ │ │ ├── CheckOutlined.tsx │ │ │ ├── ChromeFilled.tsx │ │ │ ├── ClearOutlined.tsx │ │ │ ├── CloseOutlined.tsx │ │ │ ├── CloudOutlined.tsx │ │ │ ├── CloudTwoTone.tsx │ │ │ ├── CodeOutlined.tsx │ │ │ ├── CompassFilled.tsx │ │ │ ├── ControlFilled.tsx │ │ │ ├── CopyOutlined.tsx │ │ │ ├── CrownOutlined.tsx │ │ │ ├── CrownTwoTone.tsx │ │ │ ├── DashOutlined.tsx │ │ │ ├── DeleteFilled.tsx │ │ │ ├── DeleteTwoTone.tsx │ │ │ ├── DiffOutlined.tsx │ │ │ ├── DislikeFilled.tsx │ │ │ ├── DollarTwoTone.tsx │ │ │ ├── DownOutlined.tsx │ │ │ ├── DragOutlined.tsx │ │ │ ├── EditOutlined.tsx │ │ │ ├── EnterOutlined.tsx │ │ │ ├── EuroOutlined.tsx │ │ │ ├── FallOutlined.tsx │ │ │ ├── FileAddFilled.tsx │ │ │ ├── FileOutlined.tsx │ │ │ ├── FilePdfFilled.tsx │ │ │ ├── FilePptFilled.tsx │ │ │ ├── FileZipFilled.tsx │ │ │ ├── FilterFilled.tsx │ │ │ ├── FilterTwoTone.tsx │ │ │ ├── FireOutlined.tsx │ │ │ ├── FlagOutlined.tsx │ │ │ ├── FolderFilled.tsx │ │ │ ├── FolderTwoTone.tsx │ │ │ ├── ForkOutlined.tsx │ │ │ ├── FormOutlined.tsx │ │ │ ├── ForwardFilled.tsx │ │ │ ├── FrownOutlined.tsx │ │ │ ├── FrownTwoTone.tsx │ │ │ ├── FundOutlined.tsx │ │ │ ├── GiftOutlined.tsx │ │ │ ├── GithubFilled.tsx │ │ │ ├── GitlabFilled.tsx │ │ │ ├── GoldOutlined.tsx │ │ │ ├── GoldenFilled.tsx │ │ │ ├── GroupOutlined.tsx │ │ │ ├── HeartOutlined.tsx │ │ │ ├── HeartTwoTone.tsx │ │ │ ├── HomeOutlined.tsx │ │ │ ├── Html5Outlined.tsx │ │ │ ├── Html5TwoTone.tsx │ │ │ ├── IdcardFilled.tsx │ │ │ ├── IdcardTwoTone.tsx │ │ │ ├── InboxOutlined.tsx │ │ │ ├── InfoOutlined.tsx │ │ │ ├── LayoutFilled.tsx │ │ │ ├── LayoutTwoTone.tsx │ │ │ ├── LeftOutlined.tsx │ │ │ ├── LikeOutlined.tsx │ │ │ ├── LineOutlined.tsx │ │ │ ├── LinkOutlined.tsx │ │ │ ├── LockOutlined.tsx │ │ │ ├── LoginOutlined.tsx │ │ │ ├── MailOutlined.tsx │ │ │ ├── MenuOutlined.tsx │ │ │ ├── MessageFilled.tsx │ │ │ ├── MinusOutlined.tsx │ │ │ ├── MobileFilled.tsx │ │ │ ├── MobileTwoTone.tsx │ │ │ ├── MoreOutlined.tsx │ │ │ ├── PauseOutlined.tsx │ │ │ ├── PhoneOutlined.tsx │ │ │ ├── PhoneTwoTone.tsx │ │ │ ├── PictureFilled.tsx │ │ │ ├── PlusOutlined.tsx │ │ │ ├── PoundOutlined.tsx │ │ │ ├── PrinterFilled.tsx │ │ │ ├── ProfileFilled.tsx │ │ │ ├── ProjectFilled.tsx │ │ │ ├── PushpinFilled.tsx │ │ │ ├── ReadOutlined.tsx │ │ │ ├── RedoOutlined.tsx │ │ │ ├── RestOutlined.tsx │ │ │ ├── RightOutlined.tsx │ │ │ ├── RiseOutlined.tsx │ │ │ ├── RobotOutlined.tsx │ │ │ ├── RocketFilled.tsx │ │ │ ├── RocketTwoTone.tsx │ │ │ ├── SaveOutlined.tsx │ │ │ ├── ScanOutlined.tsx │ │ │ ├── SendOutlined.tsx │ │ │ ├── SettingFilled.tsx │ │ │ ├── ShakeOutlined.tsx │ │ │ ├── ShopOutlined.tsx │ │ │ ├── SignalFilled.tsx │ │ │ ├── SkinOutlined.tsx │ │ │ ├── SkypeOutlined.tsx │ │ │ ├── SlackOutlined.tsx │ │ │ ├── SlidersFilled.tsx │ │ │ ├── SmileOutlined.tsx │ │ │ ├── SmileTwoTone.tsx │ │ │ ├── SoundOutlined.tsx │ │ │ ├── SoundTwoTone.tsx │ │ │ ├── StarOutlined.tsx │ │ │ ├── StockOutlined.tsx │ │ │ ├── StopOutlined.tsx │ │ │ ├── SwapOutlined.tsx │ │ │ ├── SyncOutlined.tsx │ │ │ ├── TableOutlined.tsx │ │ │ ├── TabletFilled.tsx │ │ │ ├── TabletTwoTone.tsx │ │ │ ├── TagsOutlined.tsx │ │ │ ├── TeamOutlined.tsx │ │ │ ├── ToTopOutlined.tsx │ │ │ ├── ToolOutlined.tsx │ │ │ ├── TrophyFilled.tsx │ │ │ ├── TrophyTwoTone.tsx │ │ │ ├── UndoOutlined.tsx │ │ │ ├── UnlockFilled.tsx │ │ │ ├── UnlockTwoTone.tsx │ │ │ ├── UserOutlined.tsx │ │ │ ├── WalletFilled.tsx │ │ │ ├── WalletTwoTone.tsx │ │ │ ├── WarningFilled.tsx │ │ │ ├── WechatFilled.tsx │ │ │ ├── WeiboOutlined.tsx │ │ │ ├── WifiOutlined.tsx │ │ │ ├── WindowsFilled.tsx │ │ │ ├── WomanOutlined.tsx │ │ │ ├── YahooOutlined.tsx │ │ │ ├── YoutubeFilled.tsx │ │ │ ├── YuqueOutlined.tsx │ │ │ ├── ZhihuOutlined.tsx │ │ │ ├── AlibabaOutlined.tsx │ │ │ ├── AlipayOutlined.tsx │ │ │ ├── AliyunOutlined.tsx │ │ │ ├── AmazonOutlined.tsx │ │ │ ├── AndroidOutlined.tsx │ │ │ ├── AppstoreFilled.tsx │ │ │ ├── AppstoreTwoTone.tsx │ │ │ ├── ArrowUpOutlined.tsx │ │ │ ├── BackwardFilled.tsx │ │ │ ├── BarcodeOutlined.tsx │ │ │ ├── BehanceOutlined.tsx │ │ │ ├── BorderOutlined.tsx │ │ │ ├── BoxPlotOutlined.tsx │ │ │ ├── BoxPlotTwoTone.tsx │ │ │ ├── CalendarFilled.tsx │ │ │ ├── CalendarTwoTone.tsx │ │ │ ├── CameraOutlined.tsx │ │ │ ├── CaretDownFilled.tsx │ │ │ ├── CaretLeftFilled.tsx │ │ │ ├── CaretUpOutlined.tsx │ │ │ ├── CarryOutFilled.tsx │ │ │ ├── CarryOutTwoTone.tsx │ │ │ ├── ChromeOutlined.tsx │ │ │ ├── CiCircleFilled.tsx │ │ │ ├── CiCircleTwoTone.tsx │ │ │ ├── ClusterOutlined.tsx │ │ │ ├── CodepenOutlined.tsx │ │ │ ├── CoffeeOutlined.tsx │ │ │ ├── CommentOutlined.tsx │ │ │ ├── CompassOutlined.tsx │ │ │ ├── CompassTwoTone.tsx │ │ │ ├── ContactsFilled.tsx │ │ │ ├── ContactsTwoTone.tsx │ │ │ ├── ContainerFilled.tsx │ │ │ ├── ControlOutlined.tsx │ │ │ ├── ControlTwoTone.tsx │ │ │ ├── DashboardFilled.tsx │ │ │ ├── DatabaseFilled.tsx │ │ │ ├── DatabaseTwoTone.tsx │ │ │ ├── DeleteOutlined.tsx │ │ │ ├── DesktopOutlined.tsx │ │ │ ├── DislikeOutlined.tsx │ │ │ ├── DislikeTwoTone.tsx │ │ │ ├── DollarOutlined.tsx │ │ │ ├── DropboxOutlined.tsx │ │ │ ├── ExpandOutlined.tsx │ │ │ ├── ExportOutlined.tsx │ │ │ ├── FacebookFilled.tsx │ │ │ ├── FileAddOutlined.tsx │ │ │ ├── FileAddTwoTone.tsx │ │ │ ├── FileExcelFilled.tsx │ │ │ ├── FileGifOutlined.tsx │ │ │ ├── FileImageFilled.tsx │ │ │ ├── FileJpgOutlined.tsx │ │ │ ├── FilePdfOutlined.tsx │ │ │ ├── FilePdfTwoTone.tsx │ │ │ ├── FilePptOutlined.tsx │ │ │ ├── FilePptTwoTone.tsx │ │ │ ├── FileTextFilled.tsx │ │ │ ├── FileTextTwoTone.tsx │ │ │ ├── FileWordFilled.tsx │ │ │ ├── FileWordTwoTone.tsx │ │ │ ├── FileZipOutlined.tsx │ │ │ ├── FileZipTwoTone.tsx │ │ │ ├── FilterOutlined.tsx │ │ │ ├── FolderAddFilled.tsx │ │ │ ├── FolderOutlined.tsx │ │ │ ├── ForwardOutlined.tsx │ │ │ ├── GatewayOutlined.tsx │ │ │ ├── GithubOutlined.tsx │ │ │ ├── GitlabOutlined.tsx │ │ │ ├── GlobalOutlined.tsx │ │ │ ├── GoogleOutlined.tsx │ │ │ ├── HeatMapOutlined.tsx │ │ │ ├── HighlightFilled.tsx │ │ │ ├── HistoryOutlined.tsx │ │ │ ├── HolderOutlined.tsx │ │ │ ├── HourglassFilled.tsx │ │ │ ├── IdcardOutlined.tsx │ │ │ ├── IeCircleFilled.tsx │ │ │ ├── IeSquareFilled.tsx │ │ │ ├── ImportOutlined.tsx │ │ │ ├── InstagramFilled.tsx │ │ │ ├── InsuranceFilled.tsx │ │ │ ├── ItalicOutlined.tsx │ │ │ ├── LaptopOutlined.tsx │ │ │ ├── LayoutOutlined.tsx │ │ │ ├── LinkedinFilled.tsx │ │ │ ├── LoadingOutlined.tsx │ │ │ ├── LogoutOutlined.tsx │ │ │ ├── MediumOutlined.tsx │ │ │ ├── MessageOutlined.tsx │ │ │ └── MessageTwoTone.tsx │ ├── .babelrc │ └── jest.config.js ├── utils │ ├── README.md │ ├── src │ │ ├── checkNodeExist.ts │ │ ├── types.ts │ │ ├── checkScrollEnd.ts │ │ └── saveFile.ts │ ├── .babelrc │ └── jest.config.js └── vscode-extension │ ├── README.md │ ├── .babelrc │ ├── tsconfig.json │ └── tsconfig.lib.json ├── .gitattributes ├── tools ├── .gitignore ├── executors │ ├── package.json │ └── executors.json └── husky.ts ├── babel.config.json ├── .github ├── ISSUE_TEMPLATE │ └── config.yml └── semantic.yml ├── .npmrc ├── .stylelintignore ├── .prettierignore ├── jest.preset.js ├── jest.config.js ├── .husky ├── pre-commit ├── commit-msg └── common.sh ├── .yarnrc ├── .vscode └── extensions.json └── .prettierrc /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /packages/site/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /packages/platform/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | /executors/**/*.impl.js -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "babelrcRoots": ["*"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/site/.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /executors/**/*.impl.js -------------------------------------------------------------------------------- /packages/ui/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components'; 2 | -------------------------------------------------------------------------------- /packages/hooks/README.md: -------------------------------------------------------------------------------- 1 | # hooks 2 | 3 | hooks directory. 4 | -------------------------------------------------------------------------------- /packages/icons/README.md: -------------------------------------------------------------------------------- 1 | # icons 2 | 3 | icons directory. 4 | -------------------------------------------------------------------------------- /packages/site/README.md: -------------------------------------------------------------------------------- 1 | # site 2 | 3 | site directory. 4 | -------------------------------------------------------------------------------- /packages/ui/README.md: -------------------------------------------------------------------------------- 1 | # ui 2 | 3 | component directory. 4 | -------------------------------------------------------------------------------- /packages/utils/README.md: -------------------------------------------------------------------------------- 1 | # utils 2 | 3 | utils directory. 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /packages/ui/jest.setup.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/__tests__/config.ts: -------------------------------------------------------------------------------- 1 | export const PREFIX = 'rd-'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/__tests__/index.ts: -------------------------------------------------------------------------------- 1 | export * from './config'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/menu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Menu'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/tabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tabs'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/tag/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tag'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/tree/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tree'; 2 | -------------------------------------------------------------------------------- /packages/platform/src/startup/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /packages/platform/src/styles/_variables.scss: -------------------------------------------------------------------------------- 1 | $rd-block-prefix: 'app'; 2 | -------------------------------------------------------------------------------- /packages/site/src/styles/_variables.scss: -------------------------------------------------------------------------------- 1 | $rd-block-prefix: 'app'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/_footer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Footer'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/_header/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Header'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/_mask/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Mask'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/affix/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Affix'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/alert/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Alert'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/anchor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Anchor'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/avatar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Avatar'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/button/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Button'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/empty/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Empty'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/input/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Input'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/rating/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Rating'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Select'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/slider/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Slider'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/slides/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Slides'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/switch/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Switch'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/toast/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Toast'; 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true 2 | node-options = --max-old-space-size=14000 3 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/list/index.ts: -------------------------------------------------------------------------------- 1 | export * from './List'; 2 | -------------------------------------------------------------------------------- /packages/platform/src/app/core/http/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useHttp'; 2 | -------------------------------------------------------------------------------- /packages/platform/src/environments/index.ts: -------------------------------------------------------------------------------- 1 | export * from './environment'; 2 | -------------------------------------------------------------------------------- /packages/site/src/app/components/footer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Footer'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/accordion/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Accordion'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/cascader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Cascader'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/dropdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Dropdown'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/progress/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Progress'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/separator/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Separator'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/skeleton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Skeleton'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/spinner/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Spinner'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Stepper'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/textarea/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Textarea'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/timeline/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Timeline'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/tooltip/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tooltip'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/transfer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Transfer'; 2 | -------------------------------------------------------------------------------- /tools/executors/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "executors": "./executors.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/chart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Chart'; 2 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/table/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Table'; 2 | -------------------------------------------------------------------------------- /packages/site/src/app/components/route/md/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MdRoute'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/_base-design/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BaseDesign'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/_base-input/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BaseInput'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/_date-input/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DateInput'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/_selectbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Selectbox'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/breadcrumb/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Breadcrumb'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/date-picker/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DatePicker'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/pagination/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Pagination'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/time-picker/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TimePicker'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/tree-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TreeSelect'; 2 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/language/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Language'; 2 | -------------------------------------------------------------------------------- /packages/site/executors/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "executors": "./executors.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/site/src/app/components/fcp-loader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FCPLoader'; 2 | -------------------------------------------------------------------------------- /packages/site/src/styles/vendor/highlight.scss: -------------------------------------------------------------------------------- 1 | @import '~highlight.js/scss/github'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/_alert-popover/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AlertPopover'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/_focus-visible/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FocusVisible'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/auto-complete/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AutoComplete'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/notification/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Notification'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/virtual-scroll/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VirtualScroll'; 2 | -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | /coverage 4 | /.yarn 5 | /packages/site/dist 6 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/detail-view/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DetailView'; 2 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/fcp-loader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FCPLoader'; 2 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/status-dot/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StatusDot'; 2 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/table-filter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TableFilter'; 2 | -------------------------------------------------------------------------------- /packages/platform/src/styles.scss: -------------------------------------------------------------------------------- 1 | @import './styles/index'; 2 | @import './styles/theme-dark'; 3 | -------------------------------------------------------------------------------- /packages/site/src/app/components/route/component/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ComponentRoute'; 2 | -------------------------------------------------------------------------------- /packages/site/src/styles.scss: -------------------------------------------------------------------------------- 1 | @import './styles/index'; 2 | @import './styles/theme-dark'; 3 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/responsive-form/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ResponsiveForm'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/badge/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Badge'; 2 | export * from './BadgeText'; 3 | -------------------------------------------------------------------------------- /packages/ui/src/components/_popup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Popup'; 2 | 3 | export * from './hooks'; 4 | -------------------------------------------------------------------------------- /packages/ui/src/styles/_reboot.scss: -------------------------------------------------------------------------------- 1 | *, 2 | *::before, 3 | *::after { 4 | box-sizing: border-box; 5 | } 6 | -------------------------------------------------------------------------------- /packages/platform/src/app/dayjs.ts: -------------------------------------------------------------------------------- 1 | import dayjs from '@react-devui/ui/dayjs'; 2 | 3 | export default dayjs; 4 | -------------------------------------------------------------------------------- /packages/platform/src/startup/startup.ts: -------------------------------------------------------------------------------- 1 | export const startup = new Promise((r) => { 2 | r(); 3 | }); 4 | -------------------------------------------------------------------------------- /packages/ui/src/components/compose/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Compose'; 2 | export * from './ComposeItem'; 3 | -------------------------------------------------------------------------------- /packages/vscode-extension/README.md: -------------------------------------------------------------------------------- 1 | # React DevUI 2 | 3 | This is the extension for React DevUI development. 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Add files here to ignore them from prettier formatting 2 | 3 | /dist 4 | /coverage 5 | /.yarn 6 | -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- 1 | const nxPreset = require('@nrwl/jest/preset').default; 2 | 3 | module.exports = { ...nxPreset }; 4 | -------------------------------------------------------------------------------- /packages/site/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /packages/site/src/startup/index.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/order */ 2 | import './startup'; 3 | 4 | import './i18n'; 5 | -------------------------------------------------------------------------------- /packages/ui/src/components/_keyboard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ComboboxKeyboard'; 2 | 3 | export * from './types'; 4 | -------------------------------------------------------------------------------- /packages/ui/src/components/_transition/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Transition'; 2 | export * from './CollapseTransition'; 3 | -------------------------------------------------------------------------------- /packages/utils/src/checkNodeExist.ts: -------------------------------------------------------------------------------- 1 | export function checkNodeExist(node: React.ReactNode) { 2 | return !!node; 3 | } 4 | -------------------------------------------------------------------------------- /packages/site/src/app/components/route/component/online-ide/files/index.html.ts: -------------------------------------------------------------------------------- 1 | export default `
2 | `; 3 | -------------------------------------------------------------------------------- /packages/platform/src/app/routes/layout/header/user/User.module.scss: -------------------------------------------------------------------------------- 1 | @import '~styles/module'; 2 | 3 | @include b(user) { 4 | } 5 | -------------------------------------------------------------------------------- /packages/ui/src/components/fab/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Fab'; 2 | export * from './FabButton'; 3 | export * from './FabBacktop'; 4 | -------------------------------------------------------------------------------- /packages/ui/src/components/root/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Root'; 2 | 3 | export * from './hooks'; 4 | export * from './contex'; 5 | -------------------------------------------------------------------------------- /packages/platform/src/app/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export { useAPI } from './useAPI'; 2 | export { useQueryParams } from './useQueryParams'; 3 | -------------------------------------------------------------------------------- /packages/platform/src/styles/vendor/ui.scss: -------------------------------------------------------------------------------- 1 | @import '~@react-devui/ui/styles/index'; 2 | @import '~@react-devui/ui/styles/theme-dark'; 3 | -------------------------------------------------------------------------------- /packages/site/src/assets/imgs/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevCloudFE/react-devui/HEAD/packages/site/src/assets/imgs/avatar.png -------------------------------------------------------------------------------- /packages/site/src/assets/imgs/bg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevCloudFE/react-devui/HEAD/packages/site/src/assets/imgs/bg-1.png -------------------------------------------------------------------------------- /packages/site/src/styles/vendor/ui.scss: -------------------------------------------------------------------------------- 1 | @import '../../../../ui/src/styles/index'; 2 | @import '../../../../ui/src/styles/theme-dark'; 3 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | const { getJestProjects } = require('@nrwl/jest'); 2 | 3 | module.exports = { 4 | projects: getJestProjects(), 5 | }; 6 | -------------------------------------------------------------------------------- /packages/site/src/assets/imgs/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevCloudFE/react-devui/HEAD/packages/site/src/assets/imgs/image-1.jpg -------------------------------------------------------------------------------- /packages/site/src/assets/imgs/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevCloudFE/react-devui/HEAD/packages/site/src/assets/imgs/image-2.jpg -------------------------------------------------------------------------------- /packages/site/src/assets/imgs/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevCloudFE/react-devui/HEAD/packages/site/src/assets/imgs/image-3.jpg -------------------------------------------------------------------------------- /packages/site/src/assets/imgs/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevCloudFE/react-devui/HEAD/packages/site/src/assets/imgs/image-4.jpg -------------------------------------------------------------------------------- /packages/ui/src/components/image/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Image'; 2 | export * from './ImageAction'; 3 | export * from './ImagePreview'; 4 | -------------------------------------------------------------------------------- /packages/ui/src/components/modal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Modal'; 2 | export * from './ModalHeader'; 3 | export * from './ModalFooter'; 4 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | . "$(dirname "$0")/common.sh" 4 | 5 | yarn lint:affected 6 | yarn lint:style 7 | -------------------------------------------------------------------------------- /packages/platform/src/assets/imgs/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevCloudFE/react-devui/HEAD/packages/platform/src/assets/imgs/avatar.png -------------------------------------------------------------------------------- /packages/ui/src/components/drawer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Drawer'; 2 | export * from './DrawerHeader'; 3 | export * from './DrawerFooter'; 4 | -------------------------------------------------------------------------------- /packages/ui/src/components/popover/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Popover'; 2 | export * from './PopoverHeader'; 3 | export * from './PopoverFooter'; 4 | -------------------------------------------------------------------------------- /packages/ui/src/components/radio/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Radio'; 2 | export * from './RadioGroup'; 3 | export * from './RadioGroupRenderer'; 4 | -------------------------------------------------------------------------------- /packages/platform/src/app/utils/vars.ts: -------------------------------------------------------------------------------- 1 | let globalKey = 0; 2 | export function getGlobalKey() { 3 | globalKey += 1; 4 | return globalKey; 5 | } 6 | -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | yarn-path ".yarn/releases/yarn-1.22.17.cjs" 6 | -------------------------------------------------------------------------------- /packages/hooks/src/useId.ts: -------------------------------------------------------------------------------- 1 | import { useId as useIdByReact } from 'react'; 2 | 3 | export function useId(): string { 4 | return useIdByReact(); 5 | } 6 | -------------------------------------------------------------------------------- /packages/platform/src/app/routes/dashboard/amap/AMap.module.scss: -------------------------------------------------------------------------------- 1 | @import '~styles/module'; 2 | 3 | @include b(amap) { 4 | @include app-route; 5 | } 6 | -------------------------------------------------------------------------------- /packages/ui/src/components/checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Checkbox'; 2 | export * from './CheckboxGroup'; 3 | export * from './CheckboxGroupRenderer'; 4 | -------------------------------------------------------------------------------- /packages/platform/src/app/routes/dashboard/echarts/ECharts.module.scss: -------------------------------------------------------------------------------- 1 | @import '~styles/module'; 2 | 3 | @include b(echarts) { 4 | @include app-route; 5 | } 6 | -------------------------------------------------------------------------------- /packages/platform/src/app/routes/login/base64.bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevCloudFE/react-devui/HEAD/packages/platform/src/app/routes/login/base64.bg.png -------------------------------------------------------------------------------- /packages/ui/src/components/_keyboard/utils.ts: -------------------------------------------------------------------------------- 1 | export function isPrintableCharacter(str: string) { 2 | return str.length === 1 && str.match(/\S| /); 3 | } 4 | -------------------------------------------------------------------------------- /packages/icons/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dist'; 2 | 3 | export type { DCustomIconeProps } from './CustomIcon'; 4 | export { DCustomIcon } from './CustomIcon'; 5 | -------------------------------------------------------------------------------- /packages/platform/src/styles/_root.scss: -------------------------------------------------------------------------------- 1 | /* stylelint-disable declaration-property-value-allowed-list */ 2 | :root { 3 | --app-background-color: #f0f2f5; 4 | } 5 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | . "$(dirname "$0")/common.sh" 4 | 5 | export 'HUSKY_GIT_PARAMS'="$1" 6 | yarn commitlint --edit $1 7 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/fcp-loader/FCPLoader.tsx: -------------------------------------------------------------------------------- 1 | export function AppFCPLoader(): JSX.Element | null { 2 | return
; 3 | } 4 | -------------------------------------------------------------------------------- /packages/platform/src/app/config/storage.ts: -------------------------------------------------------------------------------- 1 | export const STORAGE_KEY = { 2 | language: ['language', 'en-US'] as const, 3 | theme: ['theme', 'light'] as const, 4 | }; 5 | -------------------------------------------------------------------------------- /packages/platform/src/app/routes/list/standard-table/detail/Detail.module.scss: -------------------------------------------------------------------------------- 1 | @import '~styles/module'; 2 | 3 | @include b(detail) { 4 | @include app-route; 5 | } 6 | -------------------------------------------------------------------------------- /packages/platform/src/startup/index.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/order */ 2 | import './config'; 3 | 4 | import './i18n'; 5 | 6 | export { startup } from './startup'; 7 | -------------------------------------------------------------------------------- /packages/site/src/app/components/fcp-loader/FCPLoader.tsx: -------------------------------------------------------------------------------- 1 | export function AppFCPLoader(): JSX.Element | null { 2 | return
; 3 | } 4 | -------------------------------------------------------------------------------- /packages/site/src/app/components/route/component/online-ide/index.ts: -------------------------------------------------------------------------------- 1 | export { openCodeSandbox } from './codesandbox'; 2 | export { openStackBlitz } from './stackblitz'; 3 | -------------------------------------------------------------------------------- /packages/hooks/src/storage/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useStorage'; 2 | 3 | export * from './parser'; 4 | 5 | export * from './storage'; 6 | export * from './localStorage'; 7 | -------------------------------------------------------------------------------- /packages/platform/src/app/config/other.ts: -------------------------------------------------------------------------------- 1 | export const APP_NAME = 'RD-Platform'; 2 | 3 | export const LOGIN_PATH = '/login'; 4 | 5 | export const PREV_ROUTE_KEY = 'from'; 6 | -------------------------------------------------------------------------------- /packages/platform/src/app/routes/list/standard-table/StandardTable.module.scss: -------------------------------------------------------------------------------- 1 | @import '~styles/module'; 2 | 3 | @include b(standard-table) { 4 | @include app-route; 5 | } 6 | -------------------------------------------------------------------------------- /packages/ui/src/styles/components/mixins/_overwrite.scss: -------------------------------------------------------------------------------- 1 | @mixin overwrite-component($component) { 2 | &#{'.' + $rd-prefix + $component} { 3 | @content; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /packages/ui/src/utils/position/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getHorizontalSidePosition'; 2 | export * from './getPopupPosition'; 3 | export * from './getVerticalSidePosition'; 4 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/route-header/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RouteHeader'; 2 | export * from './RouteHeaderBreadcrumb'; 3 | export * from './RouteHeaderHeader'; 4 | -------------------------------------------------------------------------------- /packages/platform/src/styles/theme-dark.scss: -------------------------------------------------------------------------------- 1 | /* stylelint-disable declaration-property-value-allowed-list */ 2 | body.dark { 3 | --app-background-color: rgb(18 18 18); 4 | } 5 | -------------------------------------------------------------------------------- /tools/husky.ts: -------------------------------------------------------------------------------- 1 | import { execSync } from 'child_process'; 2 | import { platform } from 'os'; 3 | 4 | if (platform() === 'linux') { 5 | execSync('chmod ug+x .husky/*'); 6 | } 7 | -------------------------------------------------------------------------------- /packages/platform/src/app/components/map/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Map'; 2 | export * from './MapMarker'; 3 | export * from './MapMarkerCluster'; 4 | export * from './MapMarkerIcon'; 5 | -------------------------------------------------------------------------------- /packages/site/executors/build-base/files/routes.txt: -------------------------------------------------------------------------------- 1 | // @ts-nocheck 2 | 3 | import { lazy } from 'react'; 4 | 5 | __import__ 6 | 7 | export default [ 8 | __Route__ 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/ui/src/components/upload/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Upload'; 2 | export * from './UploadAction'; 3 | export * from './UploadList'; 4 | export * from './UploadPictureButton'; 5 | -------------------------------------------------------------------------------- /packages/site/src/app/components/route/component/base64.compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevCloudFE/react-devui/HEAD/packages/site/src/app/components/route/component/base64.compose.png -------------------------------------------------------------------------------- /packages/vscode-extension/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@nrwl/web/babel", 5 | { 6 | "useBuiltIns": "usage" 7 | } 8 | ] 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /packages/platform/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@nrwl/react/babel", 5 | { 6 | "runtime": "automatic" 7 | } 8 | ] 9 | ], 10 | "plugins": [] 11 | } 12 | -------------------------------------------------------------------------------- /packages/site/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@nrwl/react/babel", 5 | { 6 | "runtime": "automatic" 7 | } 8 | ] 9 | ], 10 | "plugins": [] 11 | } 12 | -------------------------------------------------------------------------------- /packages/site/src/app/components/route/component/base64.virtual-scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevCloudFE/react-devui/HEAD/packages/site/src/app/components/route/component/base64.virtual-scroll.png -------------------------------------------------------------------------------- /packages/ui/src/components/card/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Card'; 2 | export * from './CardActions'; 3 | export * from './CardAction'; 4 | export * from './CardHeader'; 5 | export * from './CardContent'; 6 | -------------------------------------------------------------------------------- /packages/platform/src/styles/components/language.scss: -------------------------------------------------------------------------------- 1 | @include b(language) { 2 | @include e(item-region) { 3 | display: inline-block; 4 | margin-right: 8px; 5 | font-size: 1.1em; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /packages/ui/src/styles/_mixins.scss: -------------------------------------------------------------------------------- 1 | @import '~rfs/scss'; 2 | 3 | @import 'mixins/config'; 4 | @import 'mixins/function'; 5 | @import 'mixins/bem'; 6 | @import 'mixins/utils'; 7 | @import 'mixins/polyfill'; 8 | -------------------------------------------------------------------------------- /packages/ui/src/styles/components/mixins/_form.scss: -------------------------------------------------------------------------------- 1 | @mixin component-in-form($selector) { 2 | @at-root { 3 | .#{$rd-prefix}form__item-content > #{$selector} { 4 | @content; 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.husky/common.sh: -------------------------------------------------------------------------------- 1 | command_exists () { 2 | command -v "$1" >/dev/null 2>&1 3 | } 4 | 5 | # Workaround for Windows 10, Git Bash and Yarn 6 | if command_exists winpty && test -t 1; then 7 | exec < /dev/tty 8 | fi 9 | -------------------------------------------------------------------------------- /packages/hooks/src/useIsomorphicLayoutEffect.ts: -------------------------------------------------------------------------------- 1 | import { useLayoutEffect, useEffect } from 'react'; 2 | 3 | export const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect; 4 | -------------------------------------------------------------------------------- /packages/hooks/src/useMount.ts: -------------------------------------------------------------------------------- 1 | import { useEffect } from 'react'; 2 | 3 | export function useMount(fn: () => any) { 4 | // eslint-disable-next-line react-hooks/exhaustive-deps 5 | useEffect(() => fn(), []); 6 | } 7 | -------------------------------------------------------------------------------- /packages/ui/src/components/_keyboard/types.ts: -------------------------------------------------------------------------------- 1 | import type { DComboboxKeyboardKey } from './ComboboxKeyboard'; 2 | 3 | export type ComboboxKeyDownRef = (key: DComboboxKeyboardKey | 'click') => void; 4 | 5 | export {}; 6 | -------------------------------------------------------------------------------- /packages/ui/src/components/root/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useComponentConfig'; 2 | export * from './useGlobalScroll'; 3 | export * from './useLayout'; 4 | export * from './usePrefixConfig'; 5 | export * from './useTranslation'; 6 | -------------------------------------------------------------------------------- /packages/hooks/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@nrwl/react/babel", 5 | { 6 | "runtime": "automatic", 7 | "useBuiltIns": "usage" 8 | } 9 | ] 10 | ], 11 | "plugins": [] 12 | } 13 | -------------------------------------------------------------------------------- /packages/icons/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@nrwl/react/babel", 5 | { 6 | "runtime": "automatic", 7 | "useBuiltIns": "usage" 8 | } 9 | ] 10 | ], 11 | "plugins": [] 12 | } 13 | -------------------------------------------------------------------------------- /packages/platform/src/app/core/index.ts: -------------------------------------------------------------------------------- 1 | export { useHttp } from './http'; 2 | export { TOKEN } from './token'; 3 | export { GlobalStore } from './store'; 4 | export { useInit } from './useInit'; 5 | export { useMenu } from './useMenu'; 6 | -------------------------------------------------------------------------------- /packages/ui/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@nrwl/react/babel", 5 | { 6 | "runtime": "automatic", 7 | "useBuiltIns": "usage" 8 | } 9 | ] 10 | ], 11 | "plugins": [] 12 | } 13 | -------------------------------------------------------------------------------- /packages/utils/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@nrwl/react/babel", 5 | { 6 | "runtime": "automatic", 7 | "useBuiltIns": "usage" 8 | } 9 | ] 10 | ], 11 | "plugins": [] 12 | } 13 | -------------------------------------------------------------------------------- /packages/ui/src/styles/mixins/_config.scss: -------------------------------------------------------------------------------- 1 | $rd-block-prefix: $rd-namespace !default; 2 | $rd-element-separator: '__' !default; 3 | $rd-modifier-separator: '--' !default; 4 | $rd-theme-prefix: 't-' !default; 5 | $rd-state-prefix: 'is-' !default; ; 6 | -------------------------------------------------------------------------------- /packages/ui/src/styles/components/icon.scss: -------------------------------------------------------------------------------- 1 | @include b(icon) { 2 | display: block; 3 | 4 | @each $theme, $rgb in $rd-themes { 5 | @include theme(#{$theme}) { 6 | color: var(--#{$rd-prefix}color-#{$theme}); 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /packages/hooks/src/useForceUpdate.ts: -------------------------------------------------------------------------------- 1 | import { useCallback, useState } from 'react'; 2 | 3 | export function useForceUpdate() { 4 | const [, setN] = useState(0); 5 | 6 | return useCallback(() => { 7 | setN((n) => n + 1); 8 | }, []); 9 | } 10 | -------------------------------------------------------------------------------- /packages/ui/src/utils/vars.ts: -------------------------------------------------------------------------------- 1 | export const TTANSITION_DURING_SLOW = 300; 2 | export const TTANSITION_DURING_BASE = 200; 3 | export const TTANSITION_DURING_FAST = 100; 4 | export const TTANSITION_DURING_POPUP = 116; 5 | 6 | export const WINDOW_SPACE = 10; 7 | -------------------------------------------------------------------------------- /packages/utils/src/types.ts: -------------------------------------------------------------------------------- 1 | export type NestedItem = { 2 | [index in keyof T]: index extends K ? NestedItem[] : T[index]; 3 | } & { 4 | [index in K]?: NestedItem[]; 5 | }; 6 | 7 | export {}; 8 | -------------------------------------------------------------------------------- /packages/hooks/src/useUnmount.ts: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from 'react'; 2 | 3 | export function useUnmount(fn: () => any): void { 4 | const ref = useRef(fn); 5 | 6 | ref.current = fn; 7 | 8 | useEffect(() => () => ref.current(), []); 9 | } 10 | -------------------------------------------------------------------------------- /packages/utils/src/checkScrollEnd.ts: -------------------------------------------------------------------------------- 1 | export function checkScrollEnd(el: HTMLElement) { 2 | return { 3 | x: el.scrollWidth <= Math.ceil(el.scrollLeft) + el.clientWidth, 4 | y: el.scrollHeight <= Math.ceil(el.scrollTop) + el.clientHeight, 5 | }; 6 | } 7 | -------------------------------------------------------------------------------- /packages/site/src/polyfills.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Polyfill stable language features. These imports will be optimized by `@babel/preset-env`. 3 | * 4 | * See: https://github.com/zloirock/core-js#babel 5 | */ 6 | import 'core-js/stable'; 7 | import 'regenerator-runtime/runtime'; 8 | -------------------------------------------------------------------------------- /packages/ui/src/utils/checkNoExpandedEl.ts: -------------------------------------------------------------------------------- 1 | import { isNull } from 'lodash'; 2 | 3 | export const ESC_CLOSABLE_DATA = 'data-esc-closable'; 4 | export function checkNoExpandedEl(el: HTMLElement) { 5 | return isNull(el.querySelector(`[${ESC_CLOSABLE_DATA}="true"]`)); 6 | } 7 | -------------------------------------------------------------------------------- /packages/platform/src/app/routes/test/http/Http.module.scss: -------------------------------------------------------------------------------- 1 | @import '~styles/module'; 2 | 3 | @include b(http) { 4 | @include app-route; 5 | 6 | @include e(button-container) { 7 | display: flex; 8 | flex-wrap: wrap; 9 | gap: 8px 20px; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /packages/platform/src/polyfills.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Polyfill stable language features. These imports will be optimized by `@babel/preset-env`. 3 | * 4 | * See: https://github.com/zloirock/core-js#babel 5 | */ 6 | import 'core-js/stable'; 7 | import 'regenerator-runtime/runtime'; 8 | -------------------------------------------------------------------------------- /packages/platform/src/styles/components/chart.scss: -------------------------------------------------------------------------------- 1 | @include b(chart) { 2 | position: relative; 3 | width: 100%; 4 | 5 | @include e(container) { 6 | position: absolute; 7 | top: 0; 8 | right: 0; 9 | bottom: 0; 10 | left: 0; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /packages/site/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | // This file can be replaced during build by using the `fileReplacements` array. 2 | // When building for production, this file is replaced with `environment.prod.ts`. 3 | 4 | export const environment = { 5 | production: false, 6 | }; 7 | -------------------------------------------------------------------------------- /packages/site/src/styles/_root.scss: -------------------------------------------------------------------------------- 1 | /* stylelint-disable declaration-property-value-allowed-list */ 2 | :root { 3 | --app-background-color: #fff; 4 | --app-th-background-color: #f9f9f9; 5 | --app-code-background-color: #f2f4f5; 6 | --app-anchor-toggler-color: #3b3b3e; 7 | } 8 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "nrwl.angular-console", 4 | "esbenp.prettier-vscode", 5 | "firsttris.vscode-jest-runner", 6 | "dbaeumer.vscode-eslint", 7 | "stylelint.vscode-stylelint", 8 | "xiejay97.react-devui" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /packages/site/src/app/components/route/component/online-ide/files/stackblitz/tsconfig.json.ts: -------------------------------------------------------------------------------- 1 | export default `{ 2 | "compilerOptions": { 3 | "strict": true, 4 | "esModuleInterop": true, 5 | "lib": ["dom", "es2015"], 6 | "jsx": "react-jsx" 7 | } 8 | } 9 | `; 10 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 140, 3 | "tabWidth": 2, 4 | "useTabs": false, 5 | "semi": true, 6 | "singleQuote": true, 7 | "jsxSingleQuote": false, 8 | "trailingComma": "es5", 9 | "bracketSpacing": true, 10 | "proseWrap": "never", 11 | "endOfLine": "lf" 12 | } 13 | -------------------------------------------------------------------------------- /packages/platform/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | http: { 4 | mock: true, 5 | baseURL: 'https://example.com', 6 | transformURL: (url: string) => { 7 | return '/api/v1' + url; 8 | }, 9 | }, 10 | }; 11 | -------------------------------------------------------------------------------- /packages/ui/src/components/table/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Table'; 2 | export * from './TableTh'; 3 | export * from './TableThAction'; 4 | export * from './TableTd'; 5 | export * from './TableEmpty'; 6 | export * from './TableFilter'; 7 | export * from './TableSearch'; 8 | export * from './TableExpand'; 9 | -------------------------------------------------------------------------------- /packages/ui/src/utils/cloneHTMLElement.ts: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function cloneHTMLElement>( 4 | element: React.ReactElement, 5 | props: T & { ref?: React.ForwardedRef } 6 | ) { 7 | return React.cloneElement(element, props); 8 | } 9 | -------------------------------------------------------------------------------- /packages/vscode-extension/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "module": "commonjs" 5 | }, 6 | "files": [], 7 | "include": [], 8 | "references": [ 9 | { 10 | "path": "./tsconfig.lib.json" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /tools/executors/executors.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json-schema.org/schema", 3 | "executors": { 4 | "multiple": { 5 | "implementation": "./multiple/multiple.impl", 6 | "schema": "./multiple/schema.json", 7 | "description": "Run multiple task." 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- 1 | # Please see the documentation for all configuration options: 2 | # https://github.com/zeke/semantic-pull-requests#configuration 3 | 4 | titleAndCommits: true 5 | types: 6 | - feat 7 | - fix 8 | - chore 9 | - docs 10 | - style 11 | - refactor 12 | - perf 13 | - test 14 | -------------------------------------------------------------------------------- /packages/hooks/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | displayName: 'hooks', 3 | preset: '../../jest.preset.js', 4 | transform: { 5 | '^.+\\.[tj]sx?$': 'babel-jest', 6 | }, 7 | moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], 8 | coverageDirectory: '../../coverage/packages/hooks', 9 | }; 10 | -------------------------------------------------------------------------------- /packages/hooks/src/useEventCallback.ts: -------------------------------------------------------------------------------- 1 | import { useCallback, useRef } from 'react'; 2 | 3 | export function useEventCallback any>(fn: T): T { 4 | const ref = useRef(fn); 5 | ref.current = fn; 6 | 7 | return useCallback((...args: any[]) => ref.current(...args), []) as T; 8 | } 9 | -------------------------------------------------------------------------------- /packages/icons/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | displayName: 'icons', 3 | preset: '../../jest.preset.js', 4 | transform: { 5 | '^.+\\.[tj]sx?$': 'babel-jest', 6 | }, 7 | moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], 8 | coverageDirectory: '../../coverage/packages/icons', 9 | }; 10 | -------------------------------------------------------------------------------- /packages/ui/src/components/root/hooks/usePrefixConfig.ts: -------------------------------------------------------------------------------- 1 | import { useContextRequired } from '../../../hooks'; 2 | import { DConfigContext } from '../contex'; 3 | 4 | export function usePrefixConfig() { 5 | const namespace = useContextRequired(DConfigContext).namespace; 6 | 7 | return `${namespace}-`; 8 | } 9 | -------------------------------------------------------------------------------- /packages/utils/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | displayName: 'utils', 3 | preset: '../../jest.preset.js', 4 | transform: { 5 | '^.+\\.[tj]sx?$': 'babel-jest', 6 | }, 7 | moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], 8 | coverageDirectory: '../../coverage/packages/utils', 9 | }; 10 | -------------------------------------------------------------------------------- /packages/utils/src/saveFile.ts: -------------------------------------------------------------------------------- 1 | export function saveFile(url: string, name: string) { 2 | const a = document.createElement('a'); 3 | document.body.appendChild(a); 4 | a.style.display = 'none'; 5 | a.href = url; 6 | a.download = name; 7 | a.click(); 8 | document.body.removeChild(a); 9 | } 10 | -------------------------------------------------------------------------------- /packages/site/src/startup/startup.ts: -------------------------------------------------------------------------------- 1 | import { useStorage } from '@react-devui/hooks'; 2 | 3 | const STORAGE_KEY = '0'; 4 | const storageKey = useStorage.SERVICE.getItem('storageKey'); 5 | if (storageKey !== STORAGE_KEY) { 6 | useStorage.SERVICE.clear(); 7 | useStorage.SERVICE.setItem('storageKey', STORAGE_KEY); 8 | } 9 | -------------------------------------------------------------------------------- /packages/ui/src/components/form/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Form'; 2 | export * from './FormItem'; 3 | export * from './FormGroup'; 4 | 5 | export * from './hooks'; 6 | 7 | export * from './abstract-control'; 8 | export * from './form-control'; 9 | export * from './form-group'; 10 | export * from './validators'; 11 | -------------------------------------------------------------------------------- /packages/ui/src/styles/_animations.scss: -------------------------------------------------------------------------------- 1 | @keyframes spin { 2 | 100% { 3 | transform: rotate(360deg); 4 | } 5 | } 6 | 7 | @keyframes wave-spread { 8 | 0% { 9 | opacity: 0.5; 10 | transform: scale(1); 11 | } 12 | 13 | 100% { 14 | opacity: 0; 15 | transform: scale(1.6); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /packages/hooks/src/storage/storage.ts: -------------------------------------------------------------------------------- 1 | export abstract class AbstractStorage { 2 | abstract getItem(key: K): V | null; 3 | abstract getItem(key: K, defaultValue: V): V; 4 | 5 | abstract setItem(key: K, value: V): void; 6 | 7 | abstract removeItem(key: K): void; 8 | 9 | abstract clear(): void; 10 | } 11 | -------------------------------------------------------------------------------- /packages/platform/src/startup/config.ts: -------------------------------------------------------------------------------- 1 | import { useStorage } from '@react-devui/hooks'; 2 | 3 | const STORAGE_KEY = '0'; 4 | const storageKey = useStorage.SERVICE.getItem('storageKey'); 5 | if (storageKey !== STORAGE_KEY) { 6 | useStorage.SERVICE.clear(); 7 | useStorage.SERVICE.setItem('storageKey', STORAGE_KEY); 8 | } 9 | -------------------------------------------------------------------------------- /packages/site/src/styles/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'variables'; 2 | 3 | @import '~bootstrap/scss/functions'; 4 | @import '~bootstrap/scss/variables'; 5 | @import '~bootstrap/scss/maps'; 6 | @import '~bootstrap/scss/mixins'; 7 | 8 | @import '../../../ui/src/styles/variables'; 9 | @import '../../../ui/src/styles/mixins'; 10 | -------------------------------------------------------------------------------- /packages/ui/src/utils/types.ts: -------------------------------------------------------------------------------- 1 | export type DId = string | number; 2 | 3 | export type DSize = 'smaller' | 'larger'; 4 | 5 | export type DLang = 'en-US' | 'zh-CN'; 6 | 7 | export type DCloneHTMLElement

> = (el: React.ReactElement

) => React.ReactElement

; 8 | 9 | export {}; 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ApiFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ApiFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ApiFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ApiTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ApiTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ApiTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BankFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BankFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BankFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BellFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BellFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BellFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BookFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BookFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BookFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BugFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BugFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BugFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BugTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BugTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BugTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BulbFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BulbFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BulbFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CarFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CarFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CarFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CarTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CarTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CarTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CiOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CiOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CiOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CiTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CiTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CiTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CodeFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CodeFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CodeFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CopyFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CopyFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CopyFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DiffFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DiffFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DiffFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/EditFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { EditFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function EditFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/EyeFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { EyeFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function EyeFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/EyeTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { EyeTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function EyeTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FireFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FireFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FireFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FlagFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FlagFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FlagFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FundFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FundFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FundFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GiftFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GiftFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GiftFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GoldFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GoldFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GoldFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HddFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HddFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HddFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HddTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HddTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HddTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HomeFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HomeFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HomeFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/IeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { IeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function IeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LikeFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LikeFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LikeFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LockFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LockFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LockFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MailFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MailFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MailFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MehFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MehFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MehFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MehTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MehTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MehTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/QqOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { QqOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function QqOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ReadFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ReadFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ReadFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/RestFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { RestFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function RestFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SaveFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SaveFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SaveFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ShopFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ShopFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ShopFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SkinFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SkinFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SkinFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/StarFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { StarFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function StarFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/StopFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { StopFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function StopFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TagFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TagFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TagFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TagTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TagTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TagTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TagsFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TagsFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TagsFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ToolFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ToolFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ToolFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/UpOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { UpOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function UpOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/UsbFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { UsbFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function UsbFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/UsbTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { UsbTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function UsbTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AimOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AimOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AimOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AlertFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AlertFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AlertFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ApiOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ApiOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ApiOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AppleFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AppleFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AppleFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AudioFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AudioFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AudioFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BankTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BankTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BankTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BellTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BellTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BellTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BookTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BookTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BookTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BugOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BugOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BugOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BuildFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BuildFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BuildFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BulbTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BulbTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BulbTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CarOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CarOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CarOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CloudFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CloudFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CloudFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CodeTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CodeTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CodeTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CopyTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CopyTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CopyTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CrownFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CrownFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CrownFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DiffTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DiffTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DiffTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/EditTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { EditTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function EditTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/EuroTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { EuroTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function EuroTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/EyeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { EyeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function EyeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FireTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FireTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FireTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FlagTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FlagTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FlagTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FrownFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FrownFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FrownFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FundTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FundTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FundTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GifOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GifOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GifOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GiftTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GiftTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GiftTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GoldTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GoldTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GoldTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HddOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HddOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HddOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HeartFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HeartFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HeartFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HomeTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HomeTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HomeTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/Html5Filled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { Html5Filled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function Html5Filled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/KeyOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { KeyOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function KeyOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LikeTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LikeTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LikeTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LockTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LockTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LockTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MailTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MailTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MailTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ManOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ManOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ManOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MehOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MehOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MehOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/PhoneFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { PhoneFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function PhoneFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/RestTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { RestTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function RestTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/RobotFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { RobotFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function RobotFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SaveTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SaveTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SaveTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ShopTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ShopTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ShopTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SkinTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SkinTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SkinTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SkypeFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SkypeFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SkypeFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SmileFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SmileFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SmileFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SoundFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SoundFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SoundFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/StarTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { StarTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function StarTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/StopTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { StopTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function StopTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TagOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TagOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TagOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TagsTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TagsTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TagsTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ToolTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ToolTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ToolTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/UsbOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { UsbOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function UsbOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/YahooFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { YahooFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function YahooFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/YuqueFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { YuqueFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function YuqueFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/site/executors/executors.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json-schema.org/schema", 3 | "executors": { 4 | "build-base": { 5 | "implementation": "./build-base/build-base.impl", 6 | "schema": "./build-base/schema.json", 7 | "description": "Build necessary files for site." 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /packages/ui/src/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export { useContextRequired } from './useContextRequired'; 2 | export { useDValue } from './useDValue'; 3 | export { useGeneralContext } from './useGeneralContext'; 4 | export { useLockScroll } from './useLockScroll'; 5 | export { useMaxIndex } from './useMaxIndex'; 6 | export { useWave } from './useWave'; 7 | -------------------------------------------------------------------------------- /packages/vscode-extension/tsconfig.lib.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../../dist/out-tsc", 5 | "declaration": true, 6 | "target": "ES2020", 7 | "lib": ["ES2020"] 8 | }, 9 | "exclude": ["**/*.spec.ts", "**/*.test.ts"], 10 | "include": ["**/*.ts"] 11 | } 12 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AlertOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AlertOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AlertOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AlertTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AlertTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AlertTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AndroidFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AndroidFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AndroidFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AppleOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AppleOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AppleOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AudioOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AudioOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AudioOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AudioTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AudioTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AudioTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AuditOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AuditOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AuditOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BankOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BankOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BankOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BarsOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BarsOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BarsOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BellOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BellOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BellOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BlockOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BlockOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BlockOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BoldOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BoldOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BoldOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BookOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BookOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BookOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BoxPlotFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BoxPlotFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BoxPlotFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BuildOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BuildOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BuildOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BuildTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BuildTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BuildTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BulbOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BulbOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BulbOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CameraFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CameraFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CameraFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CameraTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CameraTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CameraTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CaretUpFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CaretUpFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CaretUpFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CheckOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CheckOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CheckOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ChromeFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ChromeFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ChromeFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ClearOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ClearOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ClearOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CloseOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CloseOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CloseOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CloudOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CloudOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CloudOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CloudTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CloudTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CloudTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CodeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CodeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CodeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CompassFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CompassFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CompassFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ControlFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ControlFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ControlFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CopyOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CopyOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CopyOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CrownOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CrownOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CrownOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CrownTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CrownTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CrownTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DashOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DashOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DashOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DeleteFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DeleteFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DeleteFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DeleteTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DeleteTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DeleteTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DiffOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DiffOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DiffOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DislikeFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DislikeFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DislikeFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DollarTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DollarTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DollarTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DownOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DownOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DownOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DragOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DragOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DragOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/EditOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { EditOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function EditOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/EnterOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { EnterOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function EnterOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/EuroOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { EuroOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function EuroOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FallOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FallOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FallOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileAddFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileAddFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileAddFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FilePdfFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FilePdfFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FilePdfFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FilePptFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FilePptFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FilePptFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileZipFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileZipFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileZipFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FilterFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FilterFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FilterFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FilterTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FilterTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FilterTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FireOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FireOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FireOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FlagOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FlagOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FlagOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FolderFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FolderFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FolderFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FolderTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FolderTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FolderTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ForkOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ForkOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ForkOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FormOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FormOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FormOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ForwardFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ForwardFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ForwardFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FrownOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FrownOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FrownOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FrownTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FrownTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FrownTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FundOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FundOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FundOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GiftOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GiftOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GiftOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GithubFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GithubFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GithubFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GitlabFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GitlabFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GitlabFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GoldOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GoldOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GoldOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GoldenFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GoldenFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GoldenFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GroupOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GroupOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GroupOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HeartOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HeartOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HeartOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HeartTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HeartTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HeartTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HomeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HomeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HomeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/Html5Outlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { Html5Outlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function Html5Outlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/Html5TwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { Html5TwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function Html5TwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/IdcardFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { IdcardFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function IdcardFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/IdcardTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { IdcardTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function IdcardTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/InboxOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { InboxOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function InboxOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/InfoOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { InfoOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function InfoOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LayoutFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LayoutFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LayoutFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LayoutTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LayoutTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LayoutTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LeftOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LeftOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LeftOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LikeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LikeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LikeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LineOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LineOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LineOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LinkOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LinkOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LinkOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LockOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LockOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LockOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LoginOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LoginOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LoginOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MailOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MailOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MailOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MenuOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MenuOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MenuOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MessageFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MessageFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MessageFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MinusOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MinusOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MinusOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MobileFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MobileFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MobileFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MobileTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MobileTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MobileTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MoreOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MoreOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MoreOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/PauseOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { PauseOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function PauseOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/PhoneOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { PhoneOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function PhoneOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/PhoneTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { PhoneTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function PhoneTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/PictureFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { PictureFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function PictureFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/PlusOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { PlusOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function PlusOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/PoundOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { PoundOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function PoundOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/PrinterFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { PrinterFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function PrinterFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ProfileFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ProfileFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ProfileFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ProjectFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ProjectFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ProjectFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/PushpinFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { PushpinFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function PushpinFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ReadOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ReadOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ReadOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/RedoOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { RedoOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function RedoOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/RestOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { RestOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function RestOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/RightOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { RightOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function RightOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/RiseOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { RiseOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function RiseOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/RobotOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { RobotOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function RobotOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/RocketFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { RocketFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function RocketFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/RocketTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { RocketTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function RocketTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SaveOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SaveOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SaveOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ScanOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ScanOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ScanOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SendOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SendOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SendOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SettingFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SettingFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SettingFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ShakeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ShakeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ShakeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ShopOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ShopOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ShopOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SignalFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SignalFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SignalFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SkinOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SkinOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SkinOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SkypeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SkypeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SkypeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SlackOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SlackOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SlackOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SlidersFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SlidersFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SlidersFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SmileOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SmileOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SmileOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SmileTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SmileTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SmileTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SoundOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SoundOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SoundOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SoundTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SoundTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SoundTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/StarOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { StarOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function StarOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/StockOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { StockOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function StockOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/StopOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { StopOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function StopOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SwapOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SwapOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SwapOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/SyncOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { SyncOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function SyncOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TableOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TableOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TableOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TabletFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TabletFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TabletFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TabletTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TabletTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TabletTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TagsOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TagsOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TagsOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TeamOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TeamOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TeamOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ToTopOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ToTopOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ToTopOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ToolOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ToolOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ToolOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TrophyFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TrophyFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TrophyFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/TrophyTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { TrophyTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function TrophyTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/UndoOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { UndoOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function UndoOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/UnlockFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { UnlockFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function UnlockFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/UnlockTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { UnlockTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function UnlockTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/UserOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { UserOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function UserOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/WalletFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { WalletFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function WalletFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/WalletTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { WalletTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function WalletTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/WarningFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { WarningFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function WarningFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/WechatFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { WechatFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function WechatFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/WeiboOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { WeiboOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function WeiboOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/WifiOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { WifiOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function WifiOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/WindowsFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { WindowsFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function WindowsFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/WomanOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { WomanOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function WomanOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/YahooOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { YahooOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function YahooOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/YoutubeFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { YoutubeFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function YoutubeFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/YuqueOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { YuqueOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function YuqueOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ZhihuOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ZhihuOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ZhihuOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AlibabaOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AlibabaOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AlibabaOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AlipayOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AlipayOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AlipayOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AliyunOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AliyunOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AliyunOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AmazonOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AmazonOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AmazonOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AndroidOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AndroidOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AndroidOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AppstoreFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AppstoreFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AppstoreFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/AppstoreTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { AppstoreTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function AppstoreTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ArrowUpOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ArrowUpOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ArrowUpOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BackwardFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BackwardFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BackwardFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BarcodeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BarcodeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BarcodeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BehanceOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BehanceOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BehanceOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BorderOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BorderOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BorderOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BoxPlotOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BoxPlotOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BoxPlotOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/BoxPlotTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { BoxPlotTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function BoxPlotTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CalendarFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CalendarFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CalendarFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CalendarTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CalendarTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CalendarTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CameraOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CameraOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CameraOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CaretDownFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CaretDownFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CaretDownFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CaretLeftFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CaretLeftFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CaretLeftFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CaretUpOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CaretUpOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CaretUpOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CarryOutFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CarryOutFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CarryOutFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CarryOutTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CarryOutTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CarryOutTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ChromeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ChromeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ChromeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CiCircleFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CiCircleFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CiCircleFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CiCircleTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CiCircleTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CiCircleTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ClusterOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ClusterOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ClusterOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CodepenOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CodepenOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CodepenOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CoffeeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CoffeeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CoffeeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CommentOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CommentOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CommentOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CompassOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CompassOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CompassOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/CompassTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { CompassTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function CompassTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ContactsFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ContactsFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ContactsFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ContactsTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ContactsTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ContactsTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ContainerFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ContainerFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ContainerFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ControlOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ControlOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ControlOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ControlTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ControlTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ControlTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DashboardFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DashboardFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DashboardFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DatabaseFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DatabaseFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DatabaseFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DatabaseTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DatabaseTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DatabaseTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DeleteOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DeleteOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DeleteOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DesktopOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DesktopOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DesktopOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DislikeOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DislikeOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DislikeOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DislikeTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DislikeTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DislikeTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DollarOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DollarOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DollarOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/DropboxOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { DropboxOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function DropboxOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ExpandOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ExpandOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ExpandOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ExportOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ExportOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ExportOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FacebookFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FacebookFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FacebookFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileAddOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileAddOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileAddOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileAddTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileAddTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileAddTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileExcelFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileExcelFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileExcelFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileGifOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileGifOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileGifOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileImageFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileImageFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileImageFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileJpgOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileJpgOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileJpgOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FilePdfOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FilePdfOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FilePdfOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FilePdfTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FilePdfTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FilePdfTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FilePptOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FilePptOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FilePptOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FilePptTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FilePptTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FilePptTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileTextFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileTextFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileTextFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileTextTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileTextTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileTextTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileWordFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileWordFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileWordFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileWordTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileWordTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileWordTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileZipOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileZipOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileZipOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FileZipTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FileZipTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FileZipTwoTone(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FilterOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FilterOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FilterOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FolderAddFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FolderAddFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FolderAddFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/FolderOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { FolderOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function FolderOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ForwardOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ForwardOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ForwardOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GatewayOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GatewayOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GatewayOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GithubOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GithubOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GithubOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GitlabOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GitlabOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GitlabOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GlobalOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GlobalOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GlobalOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/GoogleOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { GoogleOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function GoogleOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HeatMapOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HeatMapOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HeatMapOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HighlightFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HighlightFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HighlightFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HistoryOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HistoryOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HistoryOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HolderOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HolderOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HolderOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/HourglassFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { HourglassFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function HourglassFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/IdcardOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { IdcardOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function IdcardOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/IeCircleFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { IeCircleFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function IeCircleFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/IeSquareFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { IeSquareFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function IeSquareFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ImportOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ImportOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ImportOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/InstagramFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { InstagramFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function InstagramFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/InsuranceFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { InsuranceFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function InsuranceFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/ItalicOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { ItalicOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function ItalicOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LaptopOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LaptopOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LaptopOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LayoutOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LayoutOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LayoutOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LinkedinFilled.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LinkedinFilled as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LinkedinFilled(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LoadingOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LoadingOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LoadingOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/LogoutOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { LogoutOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function LogoutOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MediumOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MediumOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MediumOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MessageOutlined.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MessageOutlined as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MessageOutlined(props: Omit) { 8 | return ; 9 | } 10 | -------------------------------------------------------------------------------- /packages/icons/src/dist/MessageTwoTone.tsx: -------------------------------------------------------------------------------- 1 | import type { DIconProps } from '../Icon'; 2 | 3 | import { MessageTwoTone as AntIcon } from '@ant-design/icons-svg'; 4 | 5 | import { DIcon } from '../Icon'; 6 | 7 | export function MessageTwoTone(props: Omit) { 8 | return ; 9 | } 10 | --------------------------------------------------------------------------------