├── .gitignore ├── src ├── Me │ ├── index.tsx │ ├── Me.stories.tsx │ └── Me.presenter.tsx ├── Add │ ├── index.tsx │ ├── Add.stories.tsx │ └── Add.presenter.tsx ├── Child │ ├── index.tsx │ ├── Child.stories.tsx │ └── Child.presenter.tsx ├── Copy │ ├── index.tsx │ ├── Copy.stories.tsx │ └── Copy.presenter.tsx ├── Help │ ├── index.tsx │ ├── Help.stories.tsx │ └── Help.presenter.tsx ├── House │ ├── index.tsx │ ├── House.stories.tsx │ └── House.presenter.tsx ├── Inbox │ ├── index.tsx │ ├── Inbox.stories.tsx │ └── Inbox.presenter.tsx ├── Laws │ ├── index.tsx │ ├── Laws.stories.tsx │ └── Laws.presenter.tsx ├── Menu │ ├── index.tsx │ ├── Menu.stories.tsx │ └── Menu.presenter.tsx ├── Money │ ├── index.tsx │ ├── Money.stories.tsx │ └── Money.presenter.tsx ├── Stamp │ ├── index.tsx │ ├── Stamp.stories.tsx │ └── Stamp.presenter.tsx ├── Tax │ ├── index.tsx │ ├── Tax.stories.tsx │ └── Tax.presenter.tsx ├── Work │ ├── index.tsx │ ├── Work.stories.tsx │ └── Work.presenter.tsx ├── Arrival │ ├── index.tsx │ ├── Arrival.stories.tsx │ └── Arrival.presenter.tsx ├── ArrowUp │ ├── index.tsx │ ├── ArrowUp.stories.tsx │ └── ArrowUp.presenter.tsx ├── Family │ ├── index.tsx │ ├── Family.stories.tsx │ └── Family.presenter.tsx ├── Health │ ├── index.tsx │ ├── Health.stories.tsx │ └── Health.presenter.tsx ├── History │ ├── index.tsx │ ├── History.stories.tsx │ └── History.presenter.tsx ├── Income │ ├── index.tsx │ ├── Income.stories.tsx │ └── Income.presenter.tsx ├── Invoice │ ├── index.tsx │ ├── Invoice.stories.tsx │ └── Invoice.presenter.tsx ├── Luggage │ ├── index.tsx │ ├── Luggage.stories.tsx │ └── Luggage.presenter.tsx ├── Mailing │ ├── index.tsx │ ├── Mailing.stories.tsx │ └── Mailing.presenter.tsx ├── Pension │ ├── index.tsx │ └── Pension.stories.tsx ├── Printer │ ├── index.tsx │ ├── Printer.stories.tsx │ └── Printer.presenter.tsx ├── Search │ ├── index.tsx │ ├── Search.stories.tsx │ └── Search.presenter.tsx ├── Update │ ├── index.tsx │ ├── Update.stories.tsx │ └── Update.presenter.tsx ├── ArrowDown │ ├── index.tsx │ ├── ArrowDown.stories.tsx │ └── ArrowDown.presenter.tsx ├── ArrowLeft │ ├── index.tsx │ ├── ArrowLeft.stories.tsx │ └── ArrowLeft.presenter.tsx ├── ArrowRight │ ├── index.tsx │ ├── ArrowRight.stories.tsx │ └── ArrowRight.presenter.tsx ├── Attention │ ├── index.tsx │ ├── Attention.stories.tsx │ └── Attention.presenter.tsx ├── CodeReader │ ├── index.tsx │ ├── CodeReader.stories.tsx │ └── CodeReader.presenter.tsx ├── Complete │ ├── index.tsx │ ├── Complete.stories.tsx │ └── Complete.presenter.tsx ├── Departure │ ├── index.tsx │ ├── Departure.stories.tsx │ └── Departure.presenter.tsx ├── Documents │ ├── index.tsx │ ├── Documents.stories.tsx │ └── Documents.presenter.tsx ├── Download │ ├── index.tsx │ ├── Download.stories.tsx │ └── Download.presenter.tsx ├── FastTrack │ ├── index.tsx │ ├── FastTrack.stories.tsx │ └── FastTrack.presenter.tsx ├── Itinerary │ ├── index.tsx │ ├── Itinerary.stories.tsx │ └── Itinerary.presenter.tsx ├── MeOutlined │ ├── index.tsx │ ├── MeOutlined.stories.tsx │ └── MeOutlined.presenter.tsx ├── Medicine │ ├── index.tsx │ ├── Medicine.stories.tsx │ └── Medicine.presenter.tsx ├── NewWindow │ ├── index.tsx │ ├── NewWindow.stories.tsx │ └── NewWindow.presenter.tsx ├── Password │ ├── index.tsx │ ├── Password.stories.tsx │ └── Password.presenter.tsx ├── Smartphone │ ├── index.tsx │ ├── Smartphone.stories.tsx │ └── Smartphone.presenter.tsx ├── Specialist │ ├── index.tsx │ ├── Specialist.stories.tsx │ └── Specialist.presenter.tsx ├── AddOutlined │ ├── index.tsx │ ├── AddOutlined.stories.tsx │ └── AddOutlined.presenter.tsx ├── Application │ ├── index.tsx │ ├── Application.stories.tsx │ └── Application.presenter.tsx ├── BankAccount │ ├── index.tsx │ ├── BankAccount.stories.tsx │ └── BankAccount.presenter.tsx ├── CopyOutlined │ ├── index.tsx │ ├── CopyOutlined.stories.tsx │ └── CopyOutlined.presenter.tsx ├── EApplication │ ├── index.tsx │ ├── EApplication.stories.tsx │ └── EApplication.presenter.tsx ├── Expenditure │ ├── index.tsx │ ├── Expenditure.stories.tsx │ └── Expenditure.presenter.tsx ├── FillableCard │ ├── index.tsx │ ├── FillableCard.stories.tsx │ └── FillableCard.presenter.tsx ├── HelpOutlined │ ├── index.tsx │ ├── HelpOutlined.stories.tsx │ └── HelpOutlined.presenter.tsx ├── Immunization │ ├── index.tsx │ ├── Immunization.stories.tsx │ └── Immunization.presenter.tsx ├── Information │ ├── index.tsx │ ├── Information.stories.tsx │ └── Information.presenter.tsx ├── LawsOutlined │ ├── index.tsx │ ├── LawsOutlined.stories.tsx │ └── LawsOutlined.presenter.tsx ├── MenuOutlined │ ├── index.tsx │ ├── MenuOutlined.stories.tsx │ └── MenuOutlined.presenter.tsx ├── Municipality │ ├── index.tsx │ ├── Municipality.stories.tsx │ └── Municipality.presenter.tsx ├── Notification │ ├── index.tsx │ ├── Notification.stories.tsx │ └── Notification.presenter.tsx ├── TaxOutlined │ ├── index.tsx │ ├── TaxOutlined.stories.tsx │ └── TaxOutlined.presenter.tsx ├── Transaction │ ├── index.tsx │ ├── Transaction.stories.tsx │ └── Transaction.presenter.tsx ├── WorkOutlined │ ├── index.tsx │ ├── WorkOutlined.stories.tsx │ └── WorkOutlined.presenter.tsx ├── @types │ ├── css.d.ts │ └── IconProps.d.ts ├── ArrivalOutlined │ ├── index.tsx │ ├── ArrivalOutlined.stories.tsx │ └── ArrivalOutlined.presenter.tsx ├── ArrowUpOutlined │ ├── index.tsx │ ├── ArrowUpOutlined.presenter.tsx │ └── ArrowUpOutlined.stories.tsx ├── Authentication │ ├── index.tsx │ ├── Authentication.stories.tsx │ └── Authentication.presenter.tsx ├── Certification │ ├── index.tsx │ ├── Certification.stories.tsx │ └── Certification.presenter.tsx ├── ChildOutlined │ ├── index.tsx │ ├── ChildOutlined.stories.tsx │ └── ChildOutlined.presenter.tsx ├── FamilyOutlined │ ├── index.tsx │ └── FamilyOutlined.stories.tsx ├── HealthOutlined │ ├── index.tsx │ ├── HealthOutlined.stories.tsx │ └── HealthOutlined.presenter.tsx ├── HistoryOutlined │ ├── index.tsx │ ├── HistoryOutlined.stories.tsx │ └── HistoryOutlined.presenter.tsx ├── HouseOutlined │ ├── index.tsx │ ├── HouseOutlined.stories.tsx │ └── HouseOutlined.presenter.tsx ├── InboxOutlined │ ├── index.tsx │ ├── InboxOutlined.stories.tsx │ └── InboxOutlined.presenter.tsx ├── IncomeOutlined │ ├── index.tsx │ └── IncomeOutlined.stories.tsx ├── InvoiceOutlined │ ├── index.tsx │ ├── InvoiceOutlined.stories.tsx │ └── InvoiceOutlined.presenter.tsx ├── LuggageOutlined │ ├── index.tsx │ ├── LuggageOutlined.stories.tsx │ └── LuggageOutlined.presenter.tsx ├── MailingOutlined │ ├── index.tsx │ ├── MailingOutlined.stories.tsx │ └── MailingOutlined.presenter.tsx ├── MoneyOutlined │ ├── index.tsx │ ├── MoneyOutlined.stories.tsx │ └── MoneyOutlined.presenter.tsx ├── MotherAndChild │ ├── index.tsx │ ├── MotherAndChild.stories.tsx │ └── MotherAndChild.presenter.tsx ├── PensionOutlined │ ├── index.tsx │ └── PensionOutlined.stories.tsx ├── PrinterOutlined │ ├── index.tsx │ ├── PrinterOutlined.stories.tsx │ └── PrinterOutlined.presenter.tsx ├── PublicOffering │ ├── index.tsx │ ├── PublicOffering.stories.tsx │ └── PublicOffering.presenter.tsx ├── SealCertificate │ ├── index.tsx │ ├── SealCertificate.stories.tsx │ └── SealCertificate.presenter.tsx ├── SearchOutlined │ ├── index.tsx │ ├── SearchOutlined.stories.tsx │ └── SearchOutlined.presenter.tsx ├── StampOutlined │ ├── index.tsx │ ├── StampOutlined.stories.tsx │ └── StampOutlined.presenter.tsx ├── UpdateOutlined │ ├── index.tsx │ ├── UpdateOutlined.stories.tsx │ └── UpdateOutlined.presenter.tsx ├── ArrowDownOutlined │ ├── index.tsx │ ├── ArrowDownOutlined.stories.tsx │ └── ArrowDownOutlined.presenter.tsx ├── ArrowLeftOutlined │ ├── index.tsx │ ├── ArrowLeftOutlined.stories.tsx │ └── ArrowLeftOutlined.presenter.tsx ├── AttentionOutlined │ ├── index.tsx │ ├── AttentionOutlined.stories.tsx │ └── AttentionOutlined.presenter.tsx ├── CompleteOutlined │ ├── index.tsx │ ├── CompleteOutlined.stories.tsx │ └── CompleteOutlined.presenter.tsx ├── DepartureOutlined │ ├── index.tsx │ ├── DepartureOutlined.stories.tsx │ └── DepartureOutlined.presenter.tsx ├── DocumentsOutlined │ ├── index.tsx │ ├── DocumentsOutlined.stories.tsx │ └── DocumentsOutlined.presenter.tsx ├── DownloadOutlined │ ├── index.tsx │ ├── DownloadOutlined.stories.tsx │ └── DownloadOutlined.presenter.tsx ├── FastTrackOutlined │ ├── index.tsx │ └── FastTrackOutlined.stories.tsx ├── ItineraryOutlined │ ├── index.tsx │ ├── ItineraryOutlined.stories.tsx │ └── ItineraryOutlined.presenter.tsx ├── MedicineOutlined │ ├── index.tsx │ ├── MedicineOutlined.stories.tsx │ └── MedicineOutlined.presenter.tsx ├── NewWindowOutlined │ ├── index.tsx │ ├── NewWindowOutlined.stories.tsx │ └── NewWindowOutlined.presenter.tsx ├── PasswordOutlined │ ├── index.tsx │ ├── PasswordOutlined.stories.tsx │ └── PasswordOutlined.presenter.tsx ├── PersonalComputer │ ├── index.tsx │ ├── PersonalComputer.stories.tsx │ └── PersonalComputer.presenter.tsx ├── PrivacyProtection │ ├── index.tsx │ ├── PrivacyProtection.stories.tsx │ └── PrivacyProtection.presenter.tsx ├── ApplicationOutlined │ ├── index.tsx │ ├── ApplicationOutlined.stories.tsx │ └── ApplicationOutlined.presenter.tsx ├── ArrowRightOutlined │ ├── index.tsx │ ├── ArrowRightOutlined.stories.tsx │ └── ArrowRightOutlined.presenter.tsx ├── BankAccountOutlined │ ├── index.tsx │ ├── BankAccountOutlined.stories.tsx │ └── BankAccountOutlined.presenter.tsx ├── CodeReaderOutlined │ ├── index.tsx │ ├── CodeReaderOutlined.stories.tsx │ └── CodeReaderOutlined.presenter.tsx ├── EApplicationOutlined │ ├── index.tsx │ ├── EApplicationOutlined.stories.tsx │ └── EApplicationOutlined.presenter.tsx ├── ExpenditureOutlined │ ├── index.tsx │ ├── ExpenditureOutlined.stories.tsx │ └── ExpenditureOutlined.presenter.tsx ├── FillableCardOutlined │ ├── index.tsx │ ├── FillableCardOutlined.stories.tsx │ └── FillableCardOutlined.presenter.tsx ├── ImmunizationOutlined │ ├── index.tsx │ ├── ImmunizationOutlined.stories.tsx │ └── ImmunizationOutlined.presenter.tsx ├── InformationOutlined │ ├── index.tsx │ ├── InformationOutlined.stories.tsx │ └── InformationOutlined.presenter.tsx ├── MunicipalityOutlined │ ├── index.tsx │ ├── MunicipalityOutlined.stories.tsx │ └── MunicipalityOutlined.presenter.tsx ├── NotificationOutlined │ ├── index.tsx │ ├── NotificationOutlined.stories.tsx │ └── NotificationOutlined.presenter.tsx ├── SmartphoneOutlined │ ├── index.tsx │ ├── SmartphoneOutlined.stories.tsx │ └── SmartphoneOutlined.presenter.tsx ├── SpecialistOutlined │ ├── index.tsx │ └── SpecialistOutlined.stories.tsx ├── TransactionOutlined │ ├── index.tsx │ ├── TransactionOutlined.stories.tsx │ └── TransactionOutlined.presenter.tsx ├── AuthenticationOutlined │ ├── index.tsx │ ├── AuthenticationOutlined.stories.tsx │ └── AuthenticationOutlined.presenter.tsx ├── CertificationOutlined │ ├── index.tsx │ ├── CertificationOutlined.stories.tsx │ └── CertificationOutlined.presenter.tsx ├── CertificationWithSeal │ ├── index.tsx │ ├── CertificationWithSeal.stories.tsx │ └── CertificationWithSeal.presenter.tsx ├── MotherAndChildOutlined │ ├── index.tsx │ ├── MotherAndChildOutlined.stories.tsx │ └── MotherAndChildOutlined.presenter.tsx ├── PublicOfferingOutlined │ ├── index.tsx │ ├── PublicOfferingOutlined.stories.tsx │ └── PublicOfferingOutlined.presenter.tsx ├── PersonalComputerOutlined │ ├── index.tsx │ ├── PersonalComputerOutlined.stories.tsx │ └── PersonalComputerOutlined.presenter.tsx ├── PrivacyProtectionOutlined │ ├── index.tsx │ ├── PrivacyProtectionOutlined.stories.tsx │ └── PrivacyProtectionOutlined.presenter.tsx ├── SealCertificateOutlined │ ├── index.tsx │ ├── SealCertificateOutlined.stories.tsx │ └── SealCertificateOutlined.presenter.tsx ├── CertificationWithSealOutlined │ ├── index.tsx │ ├── CertificationWithSealOutlined.stories.tsx │ └── CertificationWithSealOutlined.presenter.tsx ├── _docs │ ├── index.mdx │ ├── docs.module.css │ └── list.ts └── BaseSvg.tsx ├── .husky └── pre-commit ├── .babelrc.js ├── lint-staged.config.mjs ├── tsconfig.eslint.json ├── rollup.config.dts.mjs ├── .storybook ├── preview.ts └── main.ts ├── util └── resolve-path-alias.js ├── rollup.config.mjs ├── .github └── workflows │ └── docs.yml ├── LICENSE ├── .eslintrc.js └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | node_modules 4 | dist -------------------------------------------------------------------------------- /src/Me/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Me.presenter"; 2 | -------------------------------------------------------------------------------- /src/Add/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Add.presenter"; 2 | -------------------------------------------------------------------------------- /src/Child/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Child.presenter"; 2 | -------------------------------------------------------------------------------- /src/Copy/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Copy.presenter"; 2 | -------------------------------------------------------------------------------- /src/Help/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Help.presenter"; 2 | -------------------------------------------------------------------------------- /src/House/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./House.presenter"; 2 | -------------------------------------------------------------------------------- /src/Inbox/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Inbox.presenter"; 2 | -------------------------------------------------------------------------------- /src/Laws/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Laws.presenter"; 2 | -------------------------------------------------------------------------------- /src/Menu/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Menu.presenter"; 2 | -------------------------------------------------------------------------------- /src/Money/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Money.presenter"; 2 | -------------------------------------------------------------------------------- /src/Stamp/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Stamp.presenter"; 2 | -------------------------------------------------------------------------------- /src/Tax/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Tax.presenter"; 2 | -------------------------------------------------------------------------------- /src/Work/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Work.presenter"; 2 | -------------------------------------------------------------------------------- /src/Arrival/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Arrival.presenter"; 2 | -------------------------------------------------------------------------------- /src/ArrowUp/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ArrowUp.presenter"; 2 | -------------------------------------------------------------------------------- /src/Family/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Family.presenter"; 2 | -------------------------------------------------------------------------------- /src/Health/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Health.presenter"; 2 | -------------------------------------------------------------------------------- /src/History/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./History.presenter"; 2 | -------------------------------------------------------------------------------- /src/Income/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Income.presenter"; 2 | -------------------------------------------------------------------------------- /src/Invoice/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Invoice.presenter"; 2 | -------------------------------------------------------------------------------- /src/Luggage/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Luggage.presenter"; 2 | -------------------------------------------------------------------------------- /src/Mailing/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Mailing.presenter"; 2 | -------------------------------------------------------------------------------- /src/Pension/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Pension.presenter"; 2 | -------------------------------------------------------------------------------- /src/Printer/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Printer.presenter"; 2 | -------------------------------------------------------------------------------- /src/Search/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Search.presenter"; 2 | -------------------------------------------------------------------------------- /src/Update/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Update.presenter"; 2 | -------------------------------------------------------------------------------- /src/ArrowDown/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ArrowDown.presenter"; 2 | -------------------------------------------------------------------------------- /src/ArrowLeft/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ArrowLeft.presenter"; 2 | -------------------------------------------------------------------------------- /src/ArrowRight/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ArrowRight.presenter"; 2 | -------------------------------------------------------------------------------- /src/Attention/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Attention.presenter"; 2 | -------------------------------------------------------------------------------- /src/CodeReader/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./CodeReader.presenter"; 2 | -------------------------------------------------------------------------------- /src/Complete/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Complete.presenter"; 2 | -------------------------------------------------------------------------------- /src/Departure/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Departure.presenter"; 2 | -------------------------------------------------------------------------------- /src/Documents/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Documents.presenter"; 2 | -------------------------------------------------------------------------------- /src/Download/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Download.presenter"; 2 | -------------------------------------------------------------------------------- /src/FastTrack/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./FastTrack.presenter"; 2 | -------------------------------------------------------------------------------- /src/Itinerary/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Itinerary.presenter"; 2 | -------------------------------------------------------------------------------- /src/MeOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./MeOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/Medicine/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Medicine.presenter"; 2 | -------------------------------------------------------------------------------- /src/NewWindow/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./NewWindow.presenter"; 2 | -------------------------------------------------------------------------------- /src/Password/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Password.presenter"; 2 | -------------------------------------------------------------------------------- /src/Smartphone/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Smartphone.presenter"; 2 | -------------------------------------------------------------------------------- /src/Specialist/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Specialist.presenter"; 2 | -------------------------------------------------------------------------------- /src/AddOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./AddOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/Application/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Application.presenter"; 2 | -------------------------------------------------------------------------------- /src/BankAccount/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./BankAccount.presenter"; 2 | -------------------------------------------------------------------------------- /src/CopyOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./CopyOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/EApplication/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./EApplication.presenter"; 2 | -------------------------------------------------------------------------------- /src/Expenditure/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Expenditure.presenter"; 2 | -------------------------------------------------------------------------------- /src/FillableCard/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./FillableCard.presenter"; 2 | -------------------------------------------------------------------------------- /src/HelpOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./HelpOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/Immunization/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Immunization.presenter"; 2 | -------------------------------------------------------------------------------- /src/Information/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Information.presenter"; 2 | -------------------------------------------------------------------------------- /src/LawsOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./LawsOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/MenuOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./MenuOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/Municipality/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Municipality.presenter"; 2 | -------------------------------------------------------------------------------- /src/Notification/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Notification.presenter"; 2 | -------------------------------------------------------------------------------- /src/TaxOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./TaxOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/Transaction/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Transaction.presenter"; 2 | -------------------------------------------------------------------------------- /src/WorkOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./WorkOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/@types/css.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.css"; 2 | declare module "*.scss"; 3 | -------------------------------------------------------------------------------- /src/ArrivalOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ArrivalOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/ArrowUpOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ArrowUpOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/Authentication/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Authentication.presenter"; 2 | -------------------------------------------------------------------------------- /src/Certification/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Certification.presenter"; 2 | -------------------------------------------------------------------------------- /src/ChildOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ChildOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/FamilyOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./FamilyOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/HealthOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./HealthOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/HistoryOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./HistoryOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/HouseOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./HouseOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/InboxOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./InboxOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/IncomeOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./IncomeOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/InvoiceOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./InvoiceOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/LuggageOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./LuggageOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/MailingOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./MailingOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/MoneyOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./MoneyOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/MotherAndChild/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./MotherAndChild.presenter"; 2 | -------------------------------------------------------------------------------- /src/PensionOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PensionOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/PrinterOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PrinterOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/PublicOffering/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PublicOffering.presenter"; 2 | -------------------------------------------------------------------------------- /src/SealCertificate/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SealCertificate.presenter"; 2 | -------------------------------------------------------------------------------- /src/SearchOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SearchOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/StampOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./StampOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/UpdateOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./UpdateOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/ArrowDownOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ArrowDownOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/ArrowLeftOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ArrowLeftOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/AttentionOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./AttentionOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/CompleteOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./CompleteOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/DepartureOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./DepartureOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/DocumentsOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./DocumentsOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/DownloadOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./DownloadOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/FastTrackOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./FastTrackOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/ItineraryOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ItineraryOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/MedicineOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./MedicineOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/NewWindowOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./NewWindowOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/PasswordOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PasswordOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/PersonalComputer/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PersonalComputer.presenter"; 2 | -------------------------------------------------------------------------------- /src/PrivacyProtection/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PrivacyProtection.presenter"; 2 | -------------------------------------------------------------------------------- /src/ApplicationOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ApplicationOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/ArrowRightOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ArrowRightOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/BankAccountOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./BankAccountOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/CodeReaderOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./CodeReaderOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/EApplicationOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./EApplicationOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/ExpenditureOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ExpenditureOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/FillableCardOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./FillableCardOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/ImmunizationOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ImmunizationOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/InformationOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./InformationOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/MunicipalityOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./MunicipalityOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/NotificationOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./NotificationOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/SmartphoneOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SmartphoneOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/SpecialistOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SpecialistOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/TransactionOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./TransactionOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/AuthenticationOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./AuthenticationOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/CertificationOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./CertificationOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/CertificationWithSeal/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./CertificationWithSeal.presenter"; 2 | -------------------------------------------------------------------------------- /src/MotherAndChildOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./MotherAndChildOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/PublicOfferingOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PublicOfferingOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/PersonalComputerOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PersonalComputerOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/PrivacyProtectionOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PrivacyProtectionOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/SealCertificateOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SealCertificateOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /src/CertificationWithSealOutlined/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./CertificationWithSealOutlined.presenter"; 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | export FORCE_COLOR=1 3 | . "$(dirname -- "$0")/_/husky.sh" 4 | 5 | npx lint-staged -------------------------------------------------------------------------------- /.babelrc.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Babel Configuration 3 | */ 4 | module.exports = { 5 | presets: [["@babel/preset-env"]], 6 | }; 7 | -------------------------------------------------------------------------------- /src/@types/IconProps.d.ts: -------------------------------------------------------------------------------- 1 | import { SVGProps } from "react"; 2 | 3 | export type IconProps = SVGProps & { 4 | color?: string; 5 | }; 6 | -------------------------------------------------------------------------------- /src/_docs/index.mdx: -------------------------------------------------------------------------------- 1 | import { Meta } from '@storybook/blocks'; 2 | import {IconList} from "./IconList"; 3 | 4 | 5 | 6 | # designsystem-icons 7 | 8 | -------------------------------------------------------------------------------- /lint-staged.config.mjs: -------------------------------------------------------------------------------- 1 | export default { 2 | "src/**/*.{ts,tsx,json,scss,css}": [ 3 | () => "npm run eslint:fix", 4 | () => "npm run check-types", 5 | () => "npm run format", 6 | ], 7 | }; 8 | -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "include": [ 4 | "src/**/*.ts", 5 | "src/**/*.tsx", 6 | "types/**/*.d.ts", 7 | "./declaration.d.ts", 8 | ".eslintrc.js", 9 | "**/*.ts" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /src/_docs/docs.module.css: -------------------------------------------------------------------------------- 1 | .icon { 2 | position: relative; 3 | } 4 | 5 | .popup { 6 | position: absolute; 7 | top: 100%; 8 | left: 0; 9 | background-color: white; 10 | padding: 10px; 11 | z-index: 1; 12 | filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.2)); 13 | } 14 | -------------------------------------------------------------------------------- /rollup.config.dts.mjs: -------------------------------------------------------------------------------- 1 | import dts from "rollup-plugin-dts"; 2 | import { typescriptPaths } from "rollup-plugin-typescript-paths"; 3 | 4 | export default { 5 | input: "./dist/dts/index.d.ts", 6 | output: [{ file: "dist/index.d.ts", format: "es" }], 7 | plugins: [typescriptPaths(), dts()], 8 | }; 9 | -------------------------------------------------------------------------------- /src/Me/Me.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MeIcon } from "./Me.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MeIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /.storybook/preview.ts: -------------------------------------------------------------------------------- 1 | import type { Preview } from "@storybook/react"; 2 | 3 | const preview: Preview = { 4 | parameters: { 5 | actions: { argTypesRegex: "^on[A-Z].*" }, 6 | controls: { 7 | matchers: { 8 | color: /(background|color)$/i, 9 | date: /Date$/, 10 | }, 11 | }, 12 | }, 13 | }; 14 | 15 | export default preview; 16 | -------------------------------------------------------------------------------- /src/Add/Add.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { AddIcon } from "./Add.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: AddIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Tax/Tax.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { TaxIcon } from "./Tax.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: TaxIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Copy/Copy.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { CopyIcon } from "./Copy.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: CopyIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Help/Help.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { HelpIcon } from "./Help.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: HelpIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Laws/Laws.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { LawsIcon } from "./Laws.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: LawsIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Menu/Menu.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MenuIcon } from "./Menu.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MenuIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Work/Work.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { WorkIcon } from "./Work.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: WorkIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Child/Child.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ChildIcon } from "./Child.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ChildIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/House/House.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { HouseIcon } from "./House.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: HouseIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Inbox/Inbox.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { InboxIcon } from "./Inbox.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: InboxIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Money/Money.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MoneyIcon } from "./Money.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MoneyIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Stamp/Stamp.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { StampIcon } from "./Stamp.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: StampIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Family/Family.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { FamilyIcon } from "./Family.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: FamilyIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Health/Health.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { HealthIcon } from "./Health.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: HealthIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Income/Income.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { IncomeIcon } from "./Income.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: IncomeIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Search/Search.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { SearchIcon } from "./Search.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: SearchIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Update/Update.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { UpdateIcon } from "./Update.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: UpdateIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Arrival/Arrival.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ArrivalIcon } from "./Arrival.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ArrivalIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ArrowUp/ArrowUp.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ArrowUpIcon } from "./ArrowUp.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ArrowUpIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/History/History.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { HistoryIcon } from "./History.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: HistoryIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Invoice/Invoice.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { InvoiceIcon } from "./Invoice.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: InvoiceIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Luggage/Luggage.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { LuggageIcon } from "./Luggage.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: LuggageIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Mailing/Mailing.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MailingIcon } from "./Mailing.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MailingIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Pension/Pension.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PensionIcon } from "./Pension.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PensionIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Printer/Printer.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PrinterIcon } from "./Printer.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PrinterIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Complete/Complete.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { CompleteIcon } from "./Complete.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: CompleteIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Download/Download.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { DownloadIcon } from "./Download.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: DownloadIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Medicine/Medicine.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MedicineIcon } from "./Medicine.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MedicineIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Password/Password.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PasswordIcon } from "./Password.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PasswordIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ArrowDown/ArrowDown.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ArrowDownIcon } from "./ArrowDown.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ArrowDownIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ArrowLeft/ArrowLeft.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ArrowLeftIcon } from "./ArrowLeft.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ArrowLeftIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Attention/Attention.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { AttentionIcon } from "./Attention.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: AttentionIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Departure/Departure.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { DepartureIcon } from "./Departure.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: DepartureIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Documents/Documents.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { DocumentsIcon } from "./Documents.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: DocumentsIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/FastTrack/FastTrack.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { FastTrackIcon } from "./FastTrack.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: FastTrackIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Itinerary/Itinerary.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ItineraryIcon } from "./Itinerary.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ItineraryIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/NewWindow/NewWindow.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { NewWindowIcon } from "./NewWindow.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: NewWindowIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ArrowRight/ArrowRight.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ArrowRightIcon } from "./ArrowRight.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ArrowRightIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ArrowUpOutlined/ArrowUpOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ArrowUpOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | ); 11 | }; 12 | -------------------------------------------------------------------------------- /src/CodeReader/CodeReader.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { CodeReaderIcon } from "./CodeReader.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: CodeReaderIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/MeOutlined/MeOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MeOutlinedIcon } from "./MeOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MeOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Smartphone/Smartphone.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { SmartphoneIcon } from "./Smartphone.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: SmartphoneIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Specialist/Specialist.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { SpecialistIcon } from "./Specialist.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: SpecialistIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/AddOutlined/AddOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { AddOutlinedIcon } from "./AddOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: AddOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Application/Application.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ApplicationIcon } from "./Application.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ApplicationIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/BankAccount/BankAccount.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { BankAccountIcon } from "./BankAccount.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: BankAccountIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Expenditure/Expenditure.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ExpenditureIcon } from "./Expenditure.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ExpenditureIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Information/Information.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { InformationIcon } from "./Information.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: InformationIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/TaxOutlined/TaxOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { TaxOutlinedIcon } from "./TaxOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: TaxOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Transaction/Transaction.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { TransactionIcon } from "./Transaction.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: TransactionIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/CopyOutlined/CopyOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { CopyOutlinedIcon } from "./CopyOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: CopyOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/EApplication/EApplication.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { EApplicationIcon } from "./EApplication.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: EApplicationIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/FillableCard/FillableCard.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { FillableCardIcon } from "./FillableCard.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: FillableCardIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/HelpOutlined/HelpOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { HelpOutlinedIcon } from "./HelpOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: HelpOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Immunization/Immunization.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ImmunizationIcon } from "./Immunization.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ImmunizationIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/LawsOutlined/LawsOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { LawsOutlinedIcon } from "./LawsOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: LawsOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/MenuOutlined/MenuOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MenuOutlinedIcon } from "./MenuOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MenuOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Municipality/Municipality.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MunicipalityIcon } from "./Municipality.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MunicipalityIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Notification/Notification.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { NotificationIcon } from "./Notification.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: NotificationIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/WorkOutlined/WorkOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { WorkOutlinedIcon } from "./WorkOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: WorkOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Certification/Certification.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { CertificationIcon } from "./Certification.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: CertificationIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ChildOutlined/ChildOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ChildOutlinedIcon } from "./ChildOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ChildOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/HouseOutlined/HouseOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { HouseOutlinedIcon } from "./HouseOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: HouseOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/InboxOutlined/InboxOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { InboxOutlinedIcon } from "./InboxOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: InboxOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/MoneyOutlined/MoneyOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MoneyOutlinedIcon } from "./MoneyOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MoneyOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/StampOutlined/StampOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { StampOutlinedIcon } from "./StampOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: StampOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/Authentication/Authentication.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { AuthenticationIcon } from "./Authentication.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: AuthenticationIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/FamilyOutlined/FamilyOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { FamilyOutlinedIcon } from "./FamilyOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: FamilyOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/HealthOutlined/HealthOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { HealthOutlinedIcon } from "./HealthOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: HealthOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/IncomeOutlined/IncomeOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { IncomeOutlinedIcon } from "./IncomeOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: IncomeOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/MotherAndChild/MotherAndChild.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MotherAndChildIcon } from "./MotherAndChild.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MotherAndChildIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/PublicOffering/PublicOffering.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PublicOfferingIcon } from "./PublicOffering.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PublicOfferingIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/SearchOutlined/SearchOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { SearchOutlinedIcon } from "./SearchOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: SearchOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/UpdateOutlined/UpdateOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { UpdateOutlinedIcon } from "./UpdateOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: UpdateOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ArrivalOutlined/ArrivalOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ArrivalOutlinedIcon } from "./ArrivalOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ArrivalOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ArrowUpOutlined/ArrowUpOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ArrowUpOutlinedIcon } from "./ArrowUpOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ArrowUpOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/HistoryOutlined/HistoryOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { HistoryOutlinedIcon } from "./HistoryOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: HistoryOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/InvoiceOutlined/InvoiceOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { InvoiceOutlinedIcon } from "./InvoiceOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: InvoiceOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/LuggageOutlined/LuggageOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { LuggageOutlinedIcon } from "./LuggageOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: LuggageOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/MailingOutlined/MailingOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MailingOutlinedIcon } from "./MailingOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MailingOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/PensionOutlined/PensionOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PensionOutlinedIcon } from "./PensionOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PensionOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/PrinterOutlined/PrinterOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PrinterOutlinedIcon } from "./PrinterOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PrinterOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/SealCertificate/SealCertificate.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { SealCertificateIcon } from "./SealCertificate.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: SealCertificateIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/CompleteOutlined/CompleteOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { CompleteOutlinedIcon } from "./CompleteOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: CompleteOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/DownloadOutlined/DownloadOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { DownloadOutlinedIcon } from "./DownloadOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: DownloadOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/MedicineOutlined/MedicineOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MedicineOutlinedIcon } from "./MedicineOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MedicineOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/PasswordOutlined/PasswordOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PasswordOutlinedIcon } from "./PasswordOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PasswordOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/PersonalComputer/PersonalComputer.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PersonalComputerIcon } from "./PersonalComputer.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PersonalComputerIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ArrowDownOutlined/ArrowDownOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ArrowDownOutlinedIcon } from "./ArrowDownOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ArrowDownOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ArrowLeftOutlined/ArrowLeftOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ArrowLeftOutlinedIcon } from "./ArrowLeftOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ArrowLeftOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/AttentionOutlined/AttentionOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { AttentionOutlinedIcon } from "./AttentionOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: AttentionOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/DepartureOutlined/DepartureOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { DepartureOutlinedIcon } from "./DepartureOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: DepartureOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/DocumentsOutlined/DocumentsOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { DocumentsOutlinedIcon } from "./DocumentsOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: DocumentsOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/FastTrackOutlined/FastTrackOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { FastTrackOutlinedIcon } from "./FastTrackOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: FastTrackOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ItineraryOutlined/ItineraryOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ItineraryOutlinedIcon } from "./ItineraryOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ItineraryOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/NewWindowOutlined/NewWindowOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { NewWindowOutlinedIcon } from "./NewWindowOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: NewWindowOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/PrivacyProtection/PrivacyProtection.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PrivacyProtectionIcon } from "./PrivacyProtection.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PrivacyProtectionIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ArrowRightOutlined/ArrowRightOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ArrowRightOutlinedIcon } from "./ArrowRightOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ArrowRightOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/CodeReaderOutlined/CodeReaderOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { CodeReaderOutlinedIcon } from "./CodeReaderOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: CodeReaderOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/SmartphoneOutlined/SmartphoneOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { SmartphoneOutlinedIcon } from "./SmartphoneOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: SmartphoneOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/SpecialistOutlined/SpecialistOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { SpecialistOutlinedIcon } from "./SpecialistOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: SpecialistOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ApplicationOutlined/ApplicationOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ApplicationOutlinedIcon } from "./ApplicationOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ApplicationOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/BankAccountOutlined/BankAccountOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { BankAccountOutlinedIcon } from "./BankAccountOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: BankAccountOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ExpenditureOutlined/ExpenditureOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ExpenditureOutlinedIcon } from "./ExpenditureOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ExpenditureOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/InformationOutlined/InformationOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { InformationOutlinedIcon } from "./InformationOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: InformationOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/TransactionOutlined/TransactionOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { TransactionOutlinedIcon } from "./TransactionOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: TransactionOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/EApplicationOutlined/EApplicationOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { EApplicationOutlinedIcon } from "./EApplicationOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: EApplicationOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/FillableCardOutlined/FillableCardOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { FillableCardOutlinedIcon } from "./FillableCardOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: FillableCardOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/ImmunizationOutlined/ImmunizationOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { ImmunizationOutlinedIcon } from "./ImmunizationOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: ImmunizationOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/MunicipalityOutlined/MunicipalityOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MunicipalityOutlinedIcon } from "./MunicipalityOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MunicipalityOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/NotificationOutlined/NotificationOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { NotificationOutlinedIcon } from "./NotificationOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: NotificationOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/CertificationOutlined/CertificationOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { CertificationOutlinedIcon } from "./CertificationOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: CertificationOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/CertificationWithSeal/CertificationWithSeal.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { CertificationWithSealIcon } from "./CertificationWithSeal.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: CertificationWithSealIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/AuthenticationOutlined/AuthenticationOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { AuthenticationOutlinedIcon } from "./AuthenticationOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: AuthenticationOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/MotherAndChildOutlined/MotherAndChildOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { MotherAndChildOutlinedIcon } from "./MotherAndChildOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: MotherAndChildOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/PublicOfferingOutlined/PublicOfferingOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PublicOfferingOutlinedIcon } from "./PublicOfferingOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PublicOfferingOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/SealCertificateOutlined/SealCertificateOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { SealCertificateOutlinedIcon } from "./SealCertificateOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: SealCertificateOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/PersonalComputerOutlined/PersonalComputerOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PersonalComputerOutlinedIcon } from "./PersonalComputerOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PersonalComputerOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/PrivacyProtectionOutlined/PrivacyProtectionOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { PrivacyProtectionOutlinedIcon } from "./PrivacyProtectionOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: PrivacyProtectionOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/CertificationWithSealOutlined/CertificationWithSealOutlined.stories.tsx: -------------------------------------------------------------------------------- 1 | import type { Meta, StoryObj } from "@storybook/react"; 2 | 3 | import { CertificationWithSealOutlinedIcon } from "./CertificationWithSealOutlined.presenter"; 4 | 5 | interface Story extends StoryObj {} 6 | 7 | const meta: Meta = { 8 | component: CertificationWithSealOutlinedIcon, 9 | argTypes: {}, 10 | }; 11 | 12 | export default meta; 13 | 14 | export const Default: Story = {}; 15 | -------------------------------------------------------------------------------- /src/PublicOffering/PublicOffering.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const PublicOfferingIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/AddOutlined/AddOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const AddOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/ArrowDownOutlined/ArrowDownOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ArrowDownOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/ArrowRightOutlined/ArrowRightOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ArrowRightOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Add/Add.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const AddIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/ArrowLeftOutlined/ArrowLeftOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ArrowLeftOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/InboxOutlined/InboxOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const InboxOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/PublicOfferingOutlined/PublicOfferingOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const PublicOfferingOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/ArrowUp/ArrowUp.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ArrowUpIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/PersonalComputer/PersonalComputer.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const PersonalComputerIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/ArrowDown/ArrowDown.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ArrowDownIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/ArrowLeft/ArrowLeft.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ArrowLeftIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/ArrowRight/ArrowRight.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ArrowRightIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/BaseSvg.tsx: -------------------------------------------------------------------------------- 1 | import React, { ReactNode } from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | 4 | type props = IconProps & { 5 | children: ReactNode; 6 | }; 7 | 8 | export const BaseSvg = ({ 9 | children, 10 | className, 11 | color, 12 | style, 13 | ...props 14 | }: props) => { 15 | return ( 16 | 26 | {children} 27 | 28 | ); 29 | }; 30 | -------------------------------------------------------------------------------- /src/DocumentsOutlined/DocumentsOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const DocumentsOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Complete/Complete.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const CompleteIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Certification/Certification.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const CertificationIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Documents/Documents.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const DocumentsIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Health/Health.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const HealthIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Copy/Copy.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const CopyIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/House/House.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const HouseIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Inbox/Inbox.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const InboxIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Authentication/Authentication.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const AuthenticationIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/PersonalComputerOutlined/PersonalComputerOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const PersonalComputerOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Application/Application.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ApplicationIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/MenuOutlined/MenuOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MenuOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /util/resolve-path-alias.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | 3 | const processDir = (dir = "./dist/dts", deps = 0) => { 4 | const files = fs.readdirSync(dir); 5 | for (const item of files) { 6 | const path = `${dir}/${item}`; 7 | if (fs.lstatSync(`${path}`).isDirectory()) { 8 | processDir(`${path}/`, deps + 1); 9 | } else if (item.match(/\.d\.ts$/)) { 10 | if (`${path}` === "./dist/bundle.d.ts") continue; 11 | 12 | const content = fs 13 | .readFileSync(path, "utf-8") 14 | .replace(/@\//g, "./" + "../".repeat(deps)) 15 | .replace(/\/\/# sourceMappingURL=.+\.d\.ts\.map/g, ""); 16 | fs.writeFileSync(path, content, "utf-8"); 17 | } 18 | } 19 | }; 20 | 21 | processDir(); 22 | -------------------------------------------------------------------------------- /src/CopyOutlined/CopyOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const CopyOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/DownloadOutlined/DownloadOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const DownloadOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Money/Money.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MoneyIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Menu/Menu.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MenuIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Printer/Printer.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const PrinterIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/NewWindowOutlined/NewWindowOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const NewWindowOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Attention/Attention.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const AttentionIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/CertificationWithSeal/CertificationWithSeal.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const CertificationWithSealIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Immunization/Immunization.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ImmunizationIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/WorkOutlined/WorkOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const WorkOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Download/Download.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const DownloadIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/SealCertificate/SealCertificate.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const SealCertificateIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/SearchOutlined/SearchOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const SearchOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/TransactionOutlined/TransactionOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const TransactionOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- 1 | import type { StorybookConfig } from "@storybook/react-vite"; 2 | import * as path from "path"; 3 | const config: StorybookConfig = { 4 | stories: ["../src/_docs/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"], 5 | addons: [ 6 | "@storybook/addon-links", 7 | "@storybook/addon-essentials", 8 | "@storybook/addon-interactions", 9 | ], 10 | framework: { 11 | name: "@storybook/react-vite", 12 | options: {}, 13 | }, 14 | docs: { 15 | autodocs: "tag", 16 | }, 17 | async viteFinal(config) { 18 | config.resolve.alias['@'] = path.resolve(__dirname, "../src"); 19 | return { 20 | ...config, 21 | build: { 22 | ...config.build, 23 | sourcemap: false, 24 | minify: false, 25 | }, 26 | } 27 | } 28 | }; 29 | export default config; 30 | -------------------------------------------------------------------------------- /src/Municipality/Municipality.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MunicipalityIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Stamp/Stamp.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const StampIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Laws/Laws.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const LawsIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/NewWindow/NewWindow.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const NewWindowIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/CertificationOutlined/CertificationOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const CertificationOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Expenditure/Expenditure.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ExpenditureIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Information/Information.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const InformationIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Me/Me.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MeIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/BankAccount/BankAccount.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const BankAccountIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/PrinterOutlined/PrinterOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const PrinterOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/CodeReader/CodeReader.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const CodeReaderIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/ImmunizationOutlined/ImmunizationOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ImmunizationOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/ApplicationOutlined/ApplicationOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ApplicationOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/HealthOutlined/HealthOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const HealthOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/HouseOutlined/HouseOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const HouseOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Mailing/Mailing.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MailingIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Luggage/Luggage.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const LuggageIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/SmartphoneOutlined/SmartphoneOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const SmartphoneOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/Help/Help.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const HelpIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/MunicipalityOutlined/MunicipalityOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MunicipalityOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/FillableCard/FillableCard.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const FillableCardIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Transaction/Transaction.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const TransactionIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/AuthenticationOutlined/AuthenticationOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const AuthenticationOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/CompleteOutlined/CompleteOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const CompleteOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/MailingOutlined/MailingOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MailingOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/CodeReaderOutlined/CodeReaderOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const CodeReaderOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Tax/Tax.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const TaxIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/CertificationWithSealOutlined/CertificationWithSealOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const CertificationWithSealOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/FillableCardOutlined/FillableCardOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const FillableCardOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/LawsOutlined/LawsOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const LawsOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/SealCertificateOutlined/SealCertificateOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const SealCertificateOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Smartphone/Smartphone.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const SmartphoneIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/StampOutlined/StampOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const StampOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/MoneyOutlined/MoneyOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MoneyOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Work/Work.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const WorkIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/AttentionOutlined/AttentionOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const AttentionOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/BankAccountOutlined/BankAccountOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const BankAccountOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Search/Search.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const SearchIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/EApplication/EApplication.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const EApplicationIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/ExpenditureOutlined/ExpenditureOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ExpenditureOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/MeOutlined/MeOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MeOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Notification/Notification.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const NotificationIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/UpdateOutlined/UpdateOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const UpdateOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/ArrivalOutlined/ArrivalOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ArrivalOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/InformationOutlined/InformationOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const InformationOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/LuggageOutlined/LuggageOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const LuggageOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Itinerary/Itinerary.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ItineraryIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- 1 | import babel from '@rollup/plugin-babel'; 2 | import {nodeResolve} from '@rollup/plugin-node-resolve'; 3 | import commonjs from '@rollup/plugin-commonjs'; 4 | import replace from '@rollup/plugin-replace'; 5 | import image from '@rollup/plugin-image'; 6 | import postcss from 'rollup-plugin-postcss'; 7 | import typescript from "@rollup/plugin-typescript"; 8 | import pkg from "./package.json" assert { type: "json" }; 9 | 10 | export default { 11 | input: 'src/index.tsx', 12 | output: { 13 | file: `dist/index.js`, 14 | format: 'umd', 15 | name: 'DesignSystemIcons' 16 | }, 17 | plugins: [ 18 | typescript(), 19 | image(), 20 | postcss({ 21 | extensions: [".css"], 22 | modules: true, 23 | }), 24 | nodeResolve({ 25 | extensions: [".js"], 26 | }), 27 | replace({ 28 | preventAssignment: true, 29 | 'process.env.NODE_ENV': JSON.stringify('production'), 30 | 'RELEASE_VER': `ver ${pkg.version}`, 31 | }), 32 | babel({ 33 | presets: ["@babel/preset-react"], 34 | }), 35 | commonjs(), 36 | ] 37 | } -------------------------------------------------------------------------------- /src/Departure/Departure.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const DepartureIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/EApplicationOutlined/EApplicationOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const EApplicationOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Arrival/Arrival.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ArrivalIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/ItineraryOutlined/ItineraryOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ItineraryOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/PrivacyProtection/PrivacyProtection.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const PrivacyProtectionIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- 1 | name: Docs 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | workflow_dispatch: 7 | 8 | jobs: 9 | build: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - uses: actions/checkout@v3 14 | 15 | - name: setup Node 16 | uses: actions/setup-node@v3 17 | with: 18 | node-version: 18.x 19 | registry-url: 'https://registry.npmjs.org' 20 | - name: init 21 | run: | 22 | npm i -g pnpm 23 | pnpm install 24 | - name: generate storybook 25 | run: pnpm build-storybook 26 | - name: Create new commit 27 | env: 28 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 29 | run: | 30 | git config user.email "github-actions@xpadev.net" 31 | git config user.name "github-actions" 32 | git fetch --all 33 | git switch storybook 34 | rm -rf ./docs 35 | mv -f ./storybook-static ./docs 36 | touch ./docs/.nojekyll 37 | git add . 38 | git commit -m "docs" -n 39 | git push -f origin storybook 40 | -------------------------------------------------------------------------------- /src/HistoryOutlined/HistoryOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const HistoryOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Password/Password.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const PasswordIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/DepartureOutlined/DepartureOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const DepartureOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/TaxOutlined/TaxOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const TaxOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 xpadev-net 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | es6: true, 5 | node: true 6 | }, 7 | parser: "@typescript-eslint/parser", 8 | parserOptions: { 9 | sourceType: "module", 10 | ecmaVersion: "esnext", 11 | tsconfigRootDir: __dirname, 12 | project: ["./tsconfig.eslint.json"] 13 | }, 14 | ignorePatterns: ["*.js"], 15 | plugins: ["@typescript-eslint", "simple-import-sort", "jsdoc"], 16 | extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking", "plugin:jsdoc/recommended-typescript-error", "plugin:storybook/recommended"], 17 | rules: { 18 | "@typescript-eslint/restrict-template-expressions": "off", 19 | "@typescript-eslint/unbound-method": "off", 20 | "@typescript-eslint/no-unused-vars": "error", 21 | "no-unused-vars": "off", 22 | "no-control-regex": "off", 23 | "simple-import-sort/imports": "error", 24 | "simple-import-sort/exports": "error", 25 | "@typescript-eslint/typedef": "error", 26 | "jsdoc/require-returns-check": "off", 27 | "@typescript-eslint/no-var-requires": "off" 28 | } 29 | }; -------------------------------------------------------------------------------- /src/MedicineOutlined/MedicineOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MedicineOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/PasswordOutlined/PasswordOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const PasswordOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Income/Income.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const IncomeIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | ); 19 | }; 20 | -------------------------------------------------------------------------------- /src/Invoice/Invoice.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const InvoiceIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Medicine/Medicine.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MedicineIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/InvoiceOutlined/InvoiceOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const InvoiceOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/_docs/list.ts: -------------------------------------------------------------------------------- 1 | export const list = [ 2 | "Add", 3 | "Application", 4 | "Arrival", 5 | "ArrowDown", 6 | "ArrowLeft", 7 | "ArrowRight", 8 | "ArrowUp", 9 | "Attention", 10 | "Authentication", 11 | "BankAccount", 12 | "Certification", 13 | "CertificationWithSeal", 14 | "Child", 15 | "CodeReader", 16 | "Complete", 17 | "Copy", 18 | "Departure", 19 | "Documents", 20 | "Download", 21 | "EApplication", 22 | "Expenditure", 23 | "Family", 24 | "FastTrack", 25 | "FillableCard", 26 | "Health", 27 | "Help", 28 | "History", 29 | "House", 30 | "Immunization", 31 | "Inbox", 32 | "Income", 33 | "Information", 34 | "Invoice", 35 | "Itinerary", 36 | "Laws", 37 | "Luggage", 38 | "Mailing", 39 | "Me", 40 | "Medicine", 41 | "Menu", 42 | "Money", 43 | "MotherAndChild", 44 | "Municipality", 45 | "NewWindow", 46 | "Notification", 47 | "Password", 48 | "Pension", 49 | "PersonalComputer", 50 | "Printer", 51 | "PrivacyProtection", 52 | "PublicOffering", 53 | "SealCertificate", 54 | "Search", 55 | "Smartphone", 56 | "Specialist", 57 | "Stamp", 58 | "Tax", 59 | "Transaction", 60 | "Update", 61 | "Work", 62 | ]; 63 | -------------------------------------------------------------------------------- /src/MotherAndChild/MotherAndChild.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MotherAndChildIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/HelpOutlined/HelpOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const HelpOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Update/Update.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const UpdateIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/NotificationOutlined/NotificationOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const NotificationOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/History/History.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const HistoryIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Specialist/Specialist.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const SpecialistIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/MotherAndChildOutlined/MotherAndChildOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const MotherAndChildOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # designsystem-icons 2 | 3 | [GitHub](https://github.com/xpadev-net/designsystem-icons) [npm](https://www.npmjs.com/package/@xpadev-net/designsystem-icons) 4 | 5 | デジタル庁が提供している[行政文脈向けのアイコンセット](https://www.digital.go.jp/policies/servicedesign/designsystem/Illustration_Icons/)をReactコンポーネント化したライブラリです 6 | 7 | [イラストレーション・アイコン素材利用規約](https://www.digital.go.jp/policies/servicedesign/designsystem/Illustration_Icons/terms_of_use/) の元で提供されているアイコンの構造を一部Reactコンポーネント用に修正したものです 8 | 9 | ## インストール 10 | 11 | ```bash 12 | npm install @xpadev-net/designsystem-icons 13 | ``` 14 | ```bash 15 | yarn add @xpadev-net/designsystem-icons 16 | ``` 17 | ```bash 18 | pnpm add @xpadev-net/designsystem-icons 19 | ``` 20 | 21 | ## 使い方 22 | 各アイコンはnamed exportされています 23 | アイコン名は元ファイル名に基づいており、末尾が `hoge_fill.icon` の場合は `HogeIcon` 、 `huga_line.svg` の場合は `HugaOutlinedIcon` となります 24 | 25 | propsはSVG標準のpropsに加え、`color`を指定でき、`color`は`style`属性の`fill`プロパティとして適用されます 26 | 27 | ## 例 28 | ```tsx 29 | import { ArrowLeftIcon } from "@xpadev-net/designsystem-icons"; 30 | 31 | const Component = () => { 32 | return ( 33 |
34 | 35 |
36 | ); 37 | }; 38 | ``` 39 | 40 | ## ライセンス 41 | アイコンはデジタル庁の [イラストレーション・アイコン素材利用規約](https://www.digital.go.jp/policies/servicedesign/designsystem/Illustration_Icons/terms_of_use/) の元で提供されています 42 | このライブラリ自体はMITライセンスで公開しています 43 | -------------------------------------------------------------------------------- /src/Family/Family.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const FamilyIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/PrivacyProtectionOutlined/PrivacyProtectionOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const PrivacyProtectionOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/ChildOutlined/ChildOutlined.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ChildOutlinedIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/Child/Child.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const ChildIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /src/FastTrack/FastTrack.presenter.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { IconProps } from "@/@types/IconProps"; 3 | import { BaseSvg } from "@/BaseSvg"; 4 | 5 | export const FastTrackIcon = (props: IconProps) => { 6 | return ( 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ); 22 | }; 23 | --------------------------------------------------------------------------------