@modkit-org/aksel-icons-vue 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.changeset/config.json +11 -0
- package/.changeset/quick-insects-smash.md +5 -0
- package/.gitattributes +1 -0
- package/.github/scripts/check-latest-release.mjs +72 -0
- package/.github/workflows/publish.yml +51 -0
- package/.github/workflows/schedule-update-icons.yml +58 -0
- package/.yarnrc.yml +1 -0
- package/package.json +30 -0
- package/src/generate.mjs +103 -0
- package/src/lib/cleanup.mjs +18 -0
- package/src/lib/config.mjs +105 -0
- package/src/lib/fs-utils.mjs +10 -0
- package/src/lib/icon-package.mjs +59 -0
- package/src/lib/identifier.mjs +23 -0
- package/src/lib/logger.mjs +77 -0
- package/src/lib/metadata.mjs +25 -0
- package/src/lib/path-utils.mjs +3 -0
- package/src/lib/paths.mjs +10 -0
- package/src/lib/svg-discovery.mjs +54 -0
- package/src/lib/vue-writer.mjs +189 -0
- package/src/metadata.json +4 -0
- package/src/types/Accessibility/BrailleFillIcon.vue +42 -0
- package/src/types/Accessibility/BrailleIcon.vue +42 -0
- package/src/types/Accessibility/DogHarnessFillIcon.vue +42 -0
- package/src/types/Accessibility/DogHarnessIcon.vue +42 -0
- package/src/types/Accessibility/EscalatorIcon.vue +42 -0
- package/src/types/Accessibility/FigureFillIcon.vue +42 -0
- package/src/types/Accessibility/FigureIcon.vue +42 -0
- package/src/types/Accessibility/GlassesFillIcon.vue +42 -0
- package/src/types/Accessibility/GlassesIcon.vue +42 -0
- package/src/types/Accessibility/HeadCloudFillIcon.vue +42 -0
- package/src/types/Accessibility/HeadCloudIcon.vue +42 -0
- package/src/types/Accessibility/HearingLoopFillIcon.vue +42 -0
- package/src/types/Accessibility/HearingLoopIcon.vue +42 -0
- package/src/types/Accessibility/HearingLoopRadioFillIcon.vue +42 -0
- package/src/types/Accessibility/HearingLoopRadioIcon.vue +42 -0
- package/src/types/Accessibility/SignLanguageSingleHandFillIcon.vue +42 -0
- package/src/types/Accessibility/SignLanguageSingleHandIcon.vue +42 -0
- package/src/types/Accessibility/SignLanguageTwoHandsFillIcon.vue +42 -0
- package/src/types/Accessibility/SignLanguageTwoHandsIcon.vue +42 -0
- package/src/types/Accessibility/StaircaseIcon.vue +42 -0
- package/src/types/Accessibility/WheelchairFillIcon.vue +42 -0
- package/src/types/Accessibility/WheelchairIcon.vue +42 -0
- package/src/types/Arrows/ArrowCirclepathIcon.vue +42 -0
- package/src/types/Arrows/ArrowCirclepathReverseIcon.vue +43 -0
- package/src/types/Arrows/ArrowDownIcon.vue +42 -0
- package/src/types/Arrows/ArrowDownRightIcon.vue +42 -0
- package/src/types/Arrows/ArrowForwardFillIcon.vue +42 -0
- package/src/types/Arrows/ArrowForwardIcon.vue +42 -0
- package/src/types/Arrows/ArrowLeftIcon.vue +42 -0
- package/src/types/Arrows/ArrowRedoIcon.vue +42 -0
- package/src/types/Arrows/ArrowRightIcon.vue +42 -0
- package/src/types/Arrows/ArrowRightLeftIcon.vue +42 -0
- package/src/types/Arrows/ArrowUndoIcon.vue +42 -0
- package/src/types/Arrows/ArrowUpIcon.vue +42 -0
- package/src/types/Arrows/ArrowsAllDirectionsIcon.vue +47 -0
- package/src/types/Arrows/ArrowsCirclepathIcon.vue +42 -0
- package/src/types/Arrows/ArrowsSquarepathIcon.vue +42 -0
- package/src/types/Arrows/ArrowsUpDownIcon.vue +42 -0
- package/src/types/Arrows/CaretDownCircleFillIcon.vue +42 -0
- package/src/types/Arrows/CaretDownCircleIcon.vue +42 -0
- package/src/types/Arrows/CaretDownFillIcon.vue +42 -0
- package/src/types/Arrows/CaretDownIcon.vue +42 -0
- package/src/types/Arrows/CaretLeftCircleFillIcon.vue +42 -0
- package/src/types/Arrows/CaretLeftCircleIcon.vue +42 -0
- package/src/types/Arrows/CaretLeftFillIcon.vue +42 -0
- package/src/types/Arrows/CaretLeftIcon.vue +42 -0
- package/src/types/Arrows/CaretLeftRightFillIcon.vue +42 -0
- package/src/types/Arrows/CaretLeftRightIcon.vue +42 -0
- package/src/types/Arrows/CaretRightCircleFillIcon.vue +42 -0
- package/src/types/Arrows/CaretRightCircleIcon.vue +42 -0
- package/src/types/Arrows/CaretRightFillIcon.vue +42 -0
- package/src/types/Arrows/CaretRightIcon.vue +42 -0
- package/src/types/Arrows/CaretUpCircleFillIcon.vue +42 -0
- package/src/types/Arrows/CaretUpCircleIcon.vue +42 -0
- package/src/types/Arrows/CaretUpDownFillIcon.vue +42 -0
- package/src/types/Arrows/CaretUpDownFilledDownIcon.vue +42 -0
- package/src/types/Arrows/CaretUpDownFilledUpIcon.vue +42 -0
- package/src/types/Arrows/CaretUpDownIcon.vue +42 -0
- package/src/types/Arrows/CaretUpFillIcon.vue +42 -0
- package/src/types/Arrows/CaretUpIcon.vue +42 -0
- package/src/types/Arrows/ChevronDownCircleFillIcon.vue +42 -0
- package/src/types/Arrows/ChevronDownCircleIcon.vue +42 -0
- package/src/types/Arrows/ChevronDownDoubleCircleFillIcon.vue +42 -0
- package/src/types/Arrows/ChevronDownDoubleCircleIcon.vue +42 -0
- package/src/types/Arrows/ChevronDownDoubleIcon.vue +42 -0
- package/src/types/Arrows/ChevronDownIcon.vue +42 -0
- package/src/types/Arrows/ChevronDownUpIcon.vue +42 -0
- package/src/types/Arrows/ChevronLeftCircleFillIcon.vue +42 -0
- package/src/types/Arrows/ChevronLeftCircleIcon.vue +42 -0
- package/src/types/Arrows/ChevronLeftDoubleCircleFillIcon.vue +42 -0
- package/src/types/Arrows/ChevronLeftDoubleCircleIcon.vue +42 -0
- package/src/types/Arrows/ChevronLeftDoubleIcon.vue +42 -0
- package/src/types/Arrows/ChevronLeftFirstCircleFillIcon.vue +42 -0
- package/src/types/Arrows/ChevronLeftFirstCircleIcon.vue +42 -0
- package/src/types/Arrows/ChevronLeftFirstIcon.vue +42 -0
- package/src/types/Arrows/ChevronLeftIcon.vue +42 -0
- package/src/types/Arrows/ChevronRightCircleFillIcon.vue +42 -0
- package/src/types/Arrows/ChevronRightCircleIcon.vue +42 -0
- package/src/types/Arrows/ChevronRightDoubleCircleFillIcon.vue +42 -0
- package/src/types/Arrows/ChevronRightDoubleCircleIcon.vue +42 -0
- package/src/types/Arrows/ChevronRightDoubleIcon.vue +42 -0
- package/src/types/Arrows/ChevronRightIcon.vue +42 -0
- package/src/types/Arrows/ChevronRightLastCircleFillIcon.vue +42 -0
- package/src/types/Arrows/ChevronRightLastCircleIcon.vue +42 -0
- package/src/types/Arrows/ChevronRightLastIcon.vue +42 -0
- package/src/types/Arrows/ChevronUpCircleFillIcon.vue +42 -0
- package/src/types/Arrows/ChevronUpCircleIcon.vue +42 -0
- package/src/types/Arrows/ChevronUpDoubleCircleFillIcon.vue +42 -0
- package/src/types/Arrows/ChevronUpDoubleCircleIcon.vue +42 -0
- package/src/types/Arrows/ChevronUpDoubleIcon.vue +42 -0
- package/src/types/Arrows/ChevronUpDownIcon.vue +42 -0
- package/src/types/Arrows/ChevronUpIcon.vue +42 -0
- package/src/types/Arrows/ExpandIcon.vue +42 -0
- package/src/types/Arrows/ExpandVerticalIcon.vue +42 -0
- package/src/types/Arrows/ShrinkIcon.vue +42 -0
- package/src/types/Development/BranchingIcon.vue +42 -0
- package/src/types/Development/BroadcastIcon.vue +42 -0
- package/src/types/Development/BroadcastMinusCircleFillIcon.vue +42 -0
- package/src/types/Development/BroadcastMinusCircleIcon.vue +42 -0
- package/src/types/Development/BroadcastPlusCircleFillIcon.vue +42 -0
- package/src/types/Development/BroadcastPlusCircleIcon.vue +42 -0
- package/src/types/Development/CloudFillIcon.vue +42 -0
- package/src/types/Development/CloudIcon.vue +42 -0
- package/src/types/Development/CloudSlashFillIcon.vue +42 -0
- package/src/types/Development/CloudSlashIcon.vue +42 -0
- package/src/types/Development/CodeIcon.vue +42 -0
- package/src/types/Development/ComponentFillIcon.vue +42 -0
- package/src/types/Development/ComponentIcon.vue +42 -0
- package/src/types/Development/DatabaseFillIcon.vue +42 -0
- package/src/types/Development/DatabaseIcon.vue +42 -0
- package/src/types/Development/EthernetIcon.vue +42 -0
- package/src/types/Development/MigrationIcon.vue +42 -0
- package/src/types/Development/OpenSourceFillIcon.vue +42 -0
- package/src/types/Development/OpenSourceIcon.vue +42 -0
- package/src/types/Development/PackageFillIcon.vue +42 -0
- package/src/types/Development/PackageIcon.vue +42 -0
- package/src/types/Development/PortalFillIcon.vue +42 -0
- package/src/types/Development/PortalIcon.vue +42 -0
- package/src/types/Development/QrCodeFillIcon.vue +42 -0
- package/src/types/Development/QrCodeIcon.vue +42 -0
- package/src/types/Development/QrCodeScanningFillIcon.vue +42 -0
- package/src/types/Development/QrCodeScanningIcon.vue +42 -0
- package/src/types/Development/RouterIcon.vue +42 -0
- package/src/types/Development/SandboxFillIcon.vue +42 -0
- package/src/types/Development/SandboxIcon.vue +42 -0
- package/src/types/Development/TenancyFillIcon.vue +42 -0
- package/src/types/Development/TenancyIcon.vue +42 -0
- package/src/types/Development/TerminalFillIcon.vue +42 -0
- package/src/types/Development/TerminalIcon.vue +42 -0
- package/src/types/Development/TokenFillIcon.vue +42 -0
- package/src/types/Development/TokenIcon.vue +42 -0
- package/src/types/FilesAndApplication/ClockDashedIcon.vue +42 -0
- package/src/types/FilesAndApplication/ClockFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/ClockIcon.vue +42 -0
- package/src/types/FilesAndApplication/CloudDownFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/CloudDownIcon.vue +42 -0
- package/src/types/FilesAndApplication/CloudUpFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/CloudUpIcon.vue +42 -0
- package/src/types/FilesAndApplication/DownloadIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileCheckmarkFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileCheckmarkIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileCodeFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileCodeIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileCsvFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileCsvIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileExcelFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileExcelIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileExportFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileExportIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileImageFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileImageIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileImportFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileImportIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileJpegFillIcon.vue +44 -0
- package/src/types/FilesAndApplication/FileJpegIcon.vue +43 -0
- package/src/types/FilesAndApplication/FileJsonFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileJsonIcon.vue +43 -0
- package/src/types/FilesAndApplication/FileLoadingFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileLoadingIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileParagraphFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileParagraphIcon.vue +42 -0
- package/src/types/FilesAndApplication/FilePdfFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FilePdfIcon.vue +44 -0
- package/src/types/FilesAndApplication/FilePlusFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FilePlusIcon.vue +42 -0
- package/src/types/FilesAndApplication/FilePngFillIcon.vue +45 -0
- package/src/types/FilesAndApplication/FilePngIcon.vue +43 -0
- package/src/types/FilesAndApplication/FileResetFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileResetIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileSearchFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileSearchIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileShredderFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileShredderIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileTextFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileTextIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileWordFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileWordIcon.vue +44 -0
- package/src/types/FilesAndApplication/FileXMarkFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FileXMarkIcon.vue +42 -0
- package/src/types/FilesAndApplication/FilesFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FilesIcon.vue +42 -0
- package/src/types/FilesAndApplication/FolderFileFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FolderFileIcon.vue +42 -0
- package/src/types/FilesAndApplication/FolderFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FolderIcon.vue +42 -0
- package/src/types/FilesAndApplication/FolderMinusFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FolderMinusIcon.vue +42 -0
- package/src/types/FilesAndApplication/FolderPlusFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/FolderPlusIcon.vue +42 -0
- package/src/types/FilesAndApplication/HddDownFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/HddDownIcon.vue +42 -0
- package/src/types/FilesAndApplication/HddUpFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/HddUpIcon.vue +42 -0
- package/src/types/FilesAndApplication/HourglassBottomFilledIcon.vue +42 -0
- package/src/types/FilesAndApplication/HourglassIcon.vue +42 -0
- package/src/types/FilesAndApplication/HourglassTopFilledIcon.vue +42 -0
- package/src/types/FilesAndApplication/TasklistFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/TasklistIcon.vue +42 -0
- package/src/types/FilesAndApplication/TasklistSaveFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/TasklistSaveIcon.vue +42 -0
- package/src/types/FilesAndApplication/TasklistSendFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/TasklistSendIcon.vue +42 -0
- package/src/types/FilesAndApplication/TasklistStartFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/TasklistStartIcon.vue +42 -0
- package/src/types/FilesAndApplication/TimerFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/TimerIcon.vue +42 -0
- package/src/types/FilesAndApplication/TimerPauseFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/TimerPauseIcon.vue +42 -0
- package/src/types/FilesAndApplication/TimerStartFillIcon.vue +42 -0
- package/src/types/FilesAndApplication/TimerStartIcon.vue +42 -0
- package/src/types/FilesAndApplication/UploadIcon.vue +42 -0
- package/src/types/Home/AngleRulerCircleFillIcon.vue +42 -0
- package/src/types/Home/AngleRulerCircleIcon.vue +42 -0
- package/src/types/Home/AngleRulerTriangleFillIcon.vue +42 -0
- package/src/types/Home/AngleRulerTriangleIcon.vue +42 -0
- package/src/types/Home/BedFillIcon.vue +42 -0
- package/src/types/Home/BedIcon.vue +42 -0
- package/src/types/Home/BookFillIcon.vue +42 -0
- package/src/types/Home/BookIcon.vue +43 -0
- package/src/types/Home/BooksFillIcon.vue +42 -0
- package/src/types/Home/BooksIcon.vue +43 -0
- package/src/types/Home/BowlFillIcon.vue +42 -0
- package/src/types/Home/BowlIcon.vue +42 -0
- package/src/types/Home/BucketFillIcon.vue +42 -0
- package/src/types/Home/BucketIcon.vue +42 -0
- package/src/types/Home/BucketMopFillIcon.vue +42 -0
- package/src/types/Home/BucketMopIcon.vue +42 -0
- package/src/types/Home/CalculatorFillIcon.vue +42 -0
- package/src/types/Home/CalculatorIcon.vue +42 -0
- package/src/types/Home/CalendarFillIcon.vue +42 -0
- package/src/types/Home/CalendarIcon.vue +42 -0
- package/src/types/Home/CandleFillIcon.vue +42 -0
- package/src/types/Home/CandleIcon.vue +42 -0
- package/src/types/Home/ChairTableIcon.vue +42 -0
- package/src/types/Home/ClothingHangerFillIcon.vue +42 -0
- package/src/types/Home/ClothingHangerIcon.vue +42 -0
- package/src/types/Home/Combifridge1FillIcon.vue +42 -0
- package/src/types/Home/Combifridge1Icon.vue +42 -0
- package/src/types/Home/Combifridge2FillIcon.vue +42 -0
- package/src/types/Home/Combifridge2Icon.vue +42 -0
- package/src/types/Home/CutleryFillIcon.vue +42 -0
- package/src/types/Home/CutleryIcon.vue +42 -0
- package/src/types/Home/DishwasherFillIcon.vue +42 -0
- package/src/types/Home/DishwasherIcon.vue +42 -0
- package/src/types/Home/ForkFillIcon.vue +42 -0
- package/src/types/Home/ForkIcon.vue +42 -0
- package/src/types/Home/FreezerFillIcon.vue +42 -0
- package/src/types/Home/FreezerIcon.vue +42 -0
- package/src/types/Home/GlassFillIcon.vue +42 -0
- package/src/types/Home/GlassIcon.vue +42 -0
- package/src/types/Home/HangerIcon.vue +42 -0
- package/src/types/Home/HatSchoolFillIcon.vue +42 -0
- package/src/types/Home/HatSchoolIcon.vue +42 -0
- package/src/types/Home/HouseFillIcon.vue +42 -0
- package/src/types/Home/HouseHeartFillIcon.vue +42 -0
- package/src/types/Home/HouseHeartIcon.vue +42 -0
- package/src/types/Home/HouseIcon.vue +42 -0
- package/src/types/Home/KnifeFillIcon.vue +42 -0
- package/src/types/Home/KnifeIcon.vue +42 -0
- package/src/types/Home/LightBulbFillIcon.vue +42 -0
- package/src/types/Home/LightBulbIcon.vue +42 -0
- package/src/types/Home/MeasuringTapeFillIcon.vue +42 -0
- package/src/types/Home/MeasuringTapeIcon.vue +42 -0
- package/src/types/Home/MugFillIcon.vue +42 -0
- package/src/types/Home/MugIcon.vue +42 -0
- package/src/types/Home/OpenBookFillIcon.vue +42 -0
- package/src/types/Home/OpenBookIcon.vue +42 -0
- package/src/types/Home/OpenMagazineFillIcon.vue +42 -0
- package/src/types/Home/OpenMagazineIcon.vue +42 -0
- package/src/types/Home/PaperclipIcon.vue +42 -0
- package/src/types/Home/PlateFillIcon.vue +42 -0
- package/src/types/Home/PlateIcon.vue +42 -0
- package/src/types/Home/PushPinFillIcon.vue +42 -0
- package/src/types/Home/PushPinIcon.vue +42 -0
- package/src/types/Home/PuzzlePieceFillIcon.vue +42 -0
- package/src/types/Home/PuzzlePieceIcon.vue +42 -0
- package/src/types/Home/RefrigeratorFillIcon.vue +42 -0
- package/src/types/Home/RefrigeratorIcon.vue +42 -0
- package/src/types/Home/RockingHorseFillIcon.vue +42 -0
- package/src/types/Home/RockingHorseIcon.vue +42 -0
- package/src/types/Home/RulerFillIcon.vue +42 -0
- package/src/types/Home/RulerIcon.vue +42 -0
- package/src/types/Home/RulersFillIcon.vue +42 -0
- package/src/types/Home/RulersIcon.vue +42 -0
- package/src/types/Home/ScissorsFillIcon.vue +42 -0
- package/src/types/Home/ScissorsIcon.vue +42 -0
- package/src/types/Home/SlideFillIcon.vue +42 -0
- package/src/types/Home/SlideIcon.vue +42 -0
- package/src/types/Home/SpoonFillIcon.vue +42 -0
- package/src/types/Home/SpoonIcon.vue +42 -0
- package/src/types/Home/TeddyBearFillIcon.vue +42 -0
- package/src/types/Home/TeddyBearIcon.vue +42 -0
- package/src/types/Home/ToiletFillIcon.vue +42 -0
- package/src/types/Home/ToiletIcon.vue +42 -0
- package/src/types/Home/UmbrellaFillIcon.vue +42 -0
- package/src/types/Home/UmbrellaIcon.vue +42 -0
- package/src/types/Home/WateringCanFillIcon.vue +42 -0
- package/src/types/Home/WateringCanIcon.vue +42 -0
- package/src/types/Home/WeightIcon.vue +42 -0
- package/src/types/Home/WrenchFillIcon.vue +42 -0
- package/src/types/Home/WrenchIcon.vue +42 -0
- package/src/types/Interface/AlignBottomFillIcon.vue +42 -0
- package/src/types/Interface/AlignBottomIcon.vue +42 -0
- package/src/types/Interface/AlignCenterFillIcon.vue +42 -0
- package/src/types/Interface/AlignCenterIcon.vue +42 -0
- package/src/types/Interface/AlignLeftFillIcon.vue +42 -0
- package/src/types/Interface/AlignLeftIcon.vue +42 -0
- package/src/types/Interface/AlignMiddleFillIcon.vue +42 -0
- package/src/types/Interface/AlignMiddleIcon.vue +42 -0
- package/src/types/Interface/AlignRightFillIcon.vue +42 -0
- package/src/types/Interface/AlignRightIcon.vue +42 -0
- package/src/types/Interface/AlignTopFillIcon.vue +42 -0
- package/src/types/Interface/AlignTopIcon.vue +42 -0
- package/src/types/Interface/ArchiveFillIcon.vue +42 -0
- package/src/types/Interface/ArchiveIcon.vue +42 -0
- package/src/types/Interface/BookmarkDashIcon.vue +42 -0
- package/src/types/Interface/BookmarkFillIcon.vue +42 -0
- package/src/types/Interface/BookmarkIcon.vue +42 -0
- package/src/types/Interface/CameraFillIcon.vue +42 -0
- package/src/types/Interface/CameraIcon.vue +42 -0
- package/src/types/Interface/Chat2FillIcon.vue +42 -0
- package/src/types/Interface/Chat2Icon.vue +42 -0
- package/src/types/Interface/ChatAddFillIcon.vue +42 -0
- package/src/types/Interface/ChatAddIcon.vue +43 -0
- package/src/types/Interface/ChatCheckmarkFillIcon.vue +42 -0
- package/src/types/Interface/ChatCheckmarkIcon.vue +42 -0
- package/src/types/Interface/ChatElipsisFillIcon.vue +42 -0
- package/src/types/Interface/ChatElipsisIcon.vue +42 -0
- package/src/types/Interface/ChatExclamationmarkFillIcon.vue +42 -0
- package/src/types/Interface/ChatExclamationmarkIcon.vue +42 -0
- package/src/types/Interface/ChatFillIcon.vue +42 -0
- package/src/types/Interface/ChatIcon.vue +42 -0
- package/src/types/Interface/CogFillIcon.vue +42 -0
- package/src/types/Interface/CogIcon.vue +42 -0
- package/src/types/Interface/CpuFillIcon.vue +42 -0
- package/src/types/Interface/CpuIcon.vue +42 -0
- package/src/types/Interface/Density1FillIcon.vue +42 -0
- package/src/types/Interface/Density1Icon.vue +42 -0
- package/src/types/Interface/Density2FillIcon.vue +42 -0
- package/src/types/Interface/Density2Icon.vue +42 -0
- package/src/types/Interface/Density3Icon.vue +42 -0
- package/src/types/Interface/DocPencilFillIcon.vue +42 -0
- package/src/types/Interface/DocPencilIcon.vue +42 -0
- package/src/types/Interface/DragHorizontalIcon.vue +42 -0
- package/src/types/Interface/DragVerticalIcon.vue +42 -0
- package/src/types/Interface/EnvelopeClosedFillIcon.vue +42 -0
- package/src/types/Interface/EnvelopeClosedIcon.vue +42 -0
- package/src/types/Interface/EnvelopeOpenFillIcon.vue +42 -0
- package/src/types/Interface/EnvelopeOpenIcon.vue +42 -0
- package/src/types/Interface/EraserFillIcon.vue +42 -0
- package/src/types/Interface/EraserIcon.vue +42 -0
- package/src/types/Interface/ExternalLinkFillIcon.vue +42 -0
- package/src/types/Interface/ExternalLinkIcon.vue +42 -0
- package/src/types/Interface/FaceCryFillIcon.vue +42 -0
- package/src/types/Interface/FaceCryIcon.vue +42 -0
- package/src/types/Interface/FaceFillIcon.vue +42 -0
- package/src/types/Interface/FaceFrownFillIcon.vue +42 -0
- package/src/types/Interface/FaceFrownIcon.vue +42 -0
- package/src/types/Interface/FaceIcon.vue +42 -0
- package/src/types/Interface/FaceLaughFillIcon.vue +42 -0
- package/src/types/Interface/FaceLaughIcon.vue +42 -0
- package/src/types/Interface/FaceSmileFillIcon.vue +42 -0
- package/src/types/Interface/FaceSmileIcon.vue +42 -0
- package/src/types/Interface/FilterIcon.vue +42 -0
- package/src/types/Interface/FloppydiskFillIcon.vue +42 -0
- package/src/types/Interface/FloppydiskIcon.vue +42 -0
- package/src/types/Interface/FunnelFillIcon.vue +42 -0
- package/src/types/Interface/FunnelIcon.vue +42 -0
- package/src/types/Interface/GlobeFillIcon.vue +42 -0
- package/src/types/Interface/GlobeIcon.vue +42 -0
- package/src/types/Interface/GlobeSlashFillIcon.vue +42 -0
- package/src/types/Interface/GlobeSlashIcon.vue +42 -0
- package/src/types/Interface/HeartBrokenFillIcon.vue +42 -0
- package/src/types/Interface/HeartBrokenIcon.vue +42 -0
- package/src/types/Interface/HeartFillIcon.vue +42 -0
- package/src/types/Interface/HeartIcon.vue +42 -0
- package/src/types/Interface/InboxDownFillIcon.vue +42 -0
- package/src/types/Interface/InboxDownIcon.vue +42 -0
- package/src/types/Interface/InboxFillIcon.vue +42 -0
- package/src/types/Interface/InboxIcon.vue +42 -0
- package/src/types/Interface/InboxUpFillIcon.vue +42 -0
- package/src/types/Interface/InboxUpIcon.vue +42 -0
- package/src/types/Interface/LanguageIcon.vue +42 -0
- package/src/types/Interface/LaptopFillIcon.vue +42 -0
- package/src/types/Interface/LaptopIcon.vue +42 -0
- package/src/types/Interface/LayerMinusFillIcon.vue +42 -0
- package/src/types/Interface/LayerMinusIcon.vue +42 -0
- package/src/types/Interface/LayersFillIcon.vue +42 -0
- package/src/types/Interface/LayersIcon.vue +42 -0
- package/src/types/Interface/LayersPlusFillIcon.vue +42 -0
- package/src/types/Interface/LayersPlusIcon.vue +42 -0
- package/src/types/Interface/LineHeightIcon.vue +42 -0
- package/src/types/Interface/LinkBrokenIcon.vue +42 -0
- package/src/types/Interface/LinkIcon.vue +42 -0
- package/src/types/Interface/MagnifyingGlassCheckmarkFillIcon.vue +42 -0
- package/src/types/Interface/MagnifyingGlassCheckmarkIcon.vue +42 -0
- package/src/types/Interface/MagnifyingGlassFillIcon.vue +42 -0
- package/src/types/Interface/MagnifyingGlassIcon.vue +42 -0
- package/src/types/Interface/MenuElipsisHorizontalCircleFillIcon.vue +42 -0
- package/src/types/Interface/MenuElipsisHorizontalCircleIcon.vue +42 -0
- package/src/types/Interface/MenuElipsisHorizontalIcon.vue +42 -0
- package/src/types/Interface/MenuElipsisHorizontalSquareFillIcon.vue +42 -0
- package/src/types/Interface/MenuElipsisHorizontalSquareIcon.vue +42 -0
- package/src/types/Interface/MenuElipsisVerticalCircleFillIcon.vue +42 -0
- package/src/types/Interface/MenuElipsisVerticalCircleIcon.vue +42 -0
- package/src/types/Interface/MenuElipsisVerticalIcon.vue +42 -0
- package/src/types/Interface/MenuElipsisVerticalSquareFillIcon.vue +42 -0
- package/src/types/Interface/MenuElipsisVerticalSquareIcon.vue +42 -0
- package/src/types/Interface/MenuGridIcon.vue +42 -0
- package/src/types/Interface/MenuHamburgerIcon.vue +42 -0
- package/src/types/Interface/MobileFillIcon.vue +42 -0
- package/src/types/Interface/MobileIcon.vue +42 -0
- package/src/types/Interface/MobileSmallFillIcon.vue +42 -0
- package/src/types/Interface/MobileSmallIcon.vue +42 -0
- package/src/types/Interface/MonitorFillIcon.vue +42 -0
- package/src/types/Interface/MonitorIcon.vue +42 -0
- package/src/types/Interface/NotePencilDashIcon.vue +42 -0
- package/src/types/Interface/NotePencilFillIcon.vue +42 -0
- package/src/types/Interface/NotePencilIcon.vue +42 -0
- package/src/types/Interface/PageBreakFillIcon.vue +47 -0
- package/src/types/Interface/PageBreakIcon.vue +47 -0
- package/src/types/Interface/PaletteFillIcon.vue +42 -0
- package/src/types/Interface/PaletteIcon.vue +42 -0
- package/src/types/Interface/PaperplaneFillIcon.vue +42 -0
- package/src/types/Interface/PaperplaneIcon.vue +42 -0
- package/src/types/Interface/PencilBoardFillIcon.vue +42 -0
- package/src/types/Interface/PencilBoardIcon.vue +42 -0
- package/src/types/Interface/PencilFillIcon.vue +42 -0
- package/src/types/Interface/PencilIcon.vue +42 -0
- package/src/types/Interface/PencilLineFillIcon.vue +42 -0
- package/src/types/Interface/PencilLineIcon.vue +42 -0
- package/src/types/Interface/PencilWritingFillIcon.vue +42 -0
- package/src/types/Interface/PencilWritingIcon.vue +42 -0
- package/src/types/Interface/PersonChatFillIcon.vue +42 -0
- package/src/types/Interface/PersonChatIcon.vue +42 -0
- package/src/types/Interface/PhoneFillIcon.vue +42 -0
- package/src/types/Interface/PhoneIcon.vue +42 -0
- package/src/types/Interface/PhoneSlashFillIcon.vue +42 -0
- package/src/types/Interface/PhoneSlashIcon.vue +42 -0
- package/src/types/Interface/PrinterLargeFillIcon.vue +42 -0
- package/src/types/Interface/PrinterLargeIcon.vue +42 -0
- package/src/types/Interface/PrinterSmallFillIcon.vue +42 -0
- package/src/types/Interface/PrinterSmallIcon.vue +42 -0
- package/src/types/Interface/RectangleSectionsFillIcon.vue +42 -0
- package/src/types/Interface/RectangleSectionsIcon.vue +42 -0
- package/src/types/Interface/RotateLeftFillIcon.vue +42 -0
- package/src/types/Interface/RotateLeftIcon.vue +42 -0
- package/src/types/Interface/RotateRightFillIcon.vue +42 -0
- package/src/types/Interface/RotateRightIcon.vue +42 -0
- package/src/types/Interface/SidebarBothFillIcon.vue +42 -0
- package/src/types/Interface/SidebarBothIcon.vue +42 -0
- package/src/types/Interface/SidebarLeftFillIcon.vue +42 -0
- package/src/types/Interface/SidebarLeftIcon.vue +42 -0
- package/src/types/Interface/SidebarRightFillIcon.vue +42 -0
- package/src/types/Interface/SidebarRightIcon.vue +42 -0
- package/src/types/Interface/SortDownIcon.vue +42 -0
- package/src/types/Interface/SortUpIcon.vue +42 -0
- package/src/types/Interface/SpaceHorizontalIcon.vue +42 -0
- package/src/types/Interface/SpaceVerticalIcon.vue +42 -0
- package/src/types/Interface/SplitHorizontalFillIcon.vue +47 -0
- package/src/types/Interface/SplitHorizontalIcon.vue +47 -0
- package/src/types/Interface/SplitVerticalFillIcon.vue +47 -0
- package/src/types/Interface/SplitVerticalIcon.vue +47 -0
- package/src/types/Interface/SquareGridFillIcon.vue +42 -0
- package/src/types/Interface/SquareGridIcon.vue +42 -0
- package/src/types/Interface/TabletFillIcon.vue +42 -0
- package/src/types/Interface/TabletIcon.vue +42 -0
- package/src/types/Interface/TabsAddFillIcon.vue +42 -0
- package/src/types/Interface/TabsAddIcon.vue +42 -0
- package/src/types/Interface/TabsFillIcon.vue +42 -0
- package/src/types/Interface/TabsIcon.vue +42 -0
- package/src/types/Interface/TabsRemoveFillIcon.vue +42 -0
- package/src/types/Interface/TabsRemoveIcon.vue +42 -0
- package/src/types/Interface/TagFillIcon.vue +42 -0
- package/src/types/Interface/TagIcon.vue +42 -0
- package/src/types/Interface/ThemeIcon.vue +42 -0
- package/src/types/Interface/ThumbDownFillIcon.vue +42 -0
- package/src/types/Interface/ThumbDownIcon.vue +42 -0
- package/src/types/Interface/ThumbUpFillIcon.vue +42 -0
- package/src/types/Interface/ThumbUpIcon.vue +42 -0
- package/src/types/Interface/TrashFillIcon.vue +42 -0
- package/src/types/Interface/TrashIcon.vue +42 -0
- package/src/types/Interface/ZoomMinusFillIcon.vue +42 -0
- package/src/types/Interface/ZoomMinusIcon.vue +42 -0
- package/src/types/Interface/ZoomPlusFillIcon.vue +42 -0
- package/src/types/Interface/ZoomPlusIcon.vue +42 -0
- package/src/types/LawAndSecurity/BagdeFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/BagdeIcon.vue +42 -0
- package/src/types/LawAndSecurity/EnterIcon.vue +42 -0
- package/src/types/LawAndSecurity/GavelFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/GavelIcon.vue +42 -0
- package/src/types/LawAndSecurity/GavelSoundBlockFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/GavelSoundBlockIcon.vue +42 -0
- package/src/types/LawAndSecurity/KeyHorizontalFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/KeyHorizontalIcon.vue +42 -0
- package/src/types/LawAndSecurity/KeyVerticalFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/KeyVerticalIcon.vue +42 -0
- package/src/types/LawAndSecurity/LeaveIcon.vue +42 -0
- package/src/types/LawAndSecurity/Over18FillIcon.vue +42 -0
- package/src/types/LawAndSecurity/Over18Icon.vue +42 -0
- package/src/types/LawAndSecurity/PadlockLockedFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/PadlockLockedIcon.vue +42 -0
- package/src/types/LawAndSecurity/PadlockUnlockedFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/PadlockUnlockedIcon.vue +42 -0
- package/src/types/LawAndSecurity/ParagraphIcon.vue +42 -0
- package/src/types/LawAndSecurity/PassportFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/PassportIcon.vue +42 -0
- package/src/types/LawAndSecurity/PasswordHiddenIcon.vue +42 -0
- package/src/types/LawAndSecurity/PinFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/PinIcon.vue +42 -0
- package/src/types/LawAndSecurity/SealCheckmarkFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/SealCheckmarkIcon.vue +42 -0
- package/src/types/LawAndSecurity/SealFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/SealIcon.vue +42 -0
- package/src/types/LawAndSecurity/SealXMarkFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/SealXMarkIcon.vue +42 -0
- package/src/types/LawAndSecurity/ShieldCheckmarkFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/ShieldCheckmarkIcon.vue +42 -0
- package/src/types/LawAndSecurity/ShieldFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/ShieldIcon.vue +42 -0
- package/src/types/LawAndSecurity/ShieldLockFillIcon.vue +42 -0
- package/src/types/LawAndSecurity/ShieldLockIcon.vue +42 -0
- package/src/types/LawAndSecurity/StarsEuIcon.vue +42 -0
- package/src/types/Media/BackwardFillIcon.vue +42 -0
- package/src/types/Media/BackwardIcon.vue +42 -0
- package/src/types/Media/CaptionsFillIcon.vue +42 -0
- package/src/types/Media/CaptionsIcon.vue +42 -0
- package/src/types/Media/ForwardFillIcon.vue +42 -0
- package/src/types/Media/ForwardIcon.vue +42 -0
- package/src/types/Media/ImageFillIcon.vue +42 -0
- package/src/types/Media/ImageIcon.vue +42 -0
- package/src/types/Media/MegaphoneFillIcon.vue +42 -0
- package/src/types/Media/MegaphoneIcon.vue +42 -0
- package/src/types/Media/MegaphoneSpeakingFillIcon.vue +42 -0
- package/src/types/Media/MegaphoneSpeakingIcon.vue +42 -0
- package/src/types/Media/MicrophoneFillIcon.vue +42 -0
- package/src/types/Media/MicrophoneIcon.vue +42 -0
- package/src/types/Media/MicrophoneSlashFillIcon.vue +42 -0
- package/src/types/Media/MicrophoneSlashIcon.vue +42 -0
- package/src/types/Media/NewspaperFillIcon.vue +42 -0
- package/src/types/Media/NewspaperIcon.vue +42 -0
- package/src/types/Media/PauseFillIcon.vue +42 -0
- package/src/types/Media/PauseIcon.vue +42 -0
- package/src/types/Media/PlayFillIcon.vue +42 -0
- package/src/types/Media/PlayIcon.vue +42 -0
- package/src/types/Media/PresentationFillIcon.vue +42 -0
- package/src/types/Media/PresentationIcon.vue +42 -0
- package/src/types/Media/RecordFillIcon.vue +42 -0
- package/src/types/Media/RecordIcon.vue +42 -0
- package/src/types/Media/SkipBackwardFillIcon.vue +42 -0
- package/src/types/Media/SkipBackwardIcon.vue +42 -0
- package/src/types/Media/SkipForwardFillIcon.vue +42 -0
- package/src/types/Media/SkipForwardIcon.vue +42 -0
- package/src/types/Media/SpeakerFillIcon.vue +42 -0
- package/src/types/Media/SpeakerIcon.vue +42 -0
- package/src/types/Media/SpeakerSlashFillIcon.vue +42 -0
- package/src/types/Media/SpeakerSlashIcon.vue +42 -0
- package/src/types/Media/SpeakerSoundWave1FillIcon.vue +42 -0
- package/src/types/Media/SpeakerSoundWave1Icon.vue +42 -0
- package/src/types/Media/SpeakerSoundWave2FillIcon.vue +42 -0
- package/src/types/Media/SpeakerSoundWave2Icon.vue +42 -0
- package/src/types/Media/SpeakerSoundWave3FillIcon.vue +42 -0
- package/src/types/Media/SpeakerSoundWave3Icon.vue +42 -0
- package/src/types/Media/StopFillIcon.vue +42 -0
- package/src/types/Media/StopIcon.vue +42 -0
- package/src/types/Media/VideoFillIcon.vue +42 -0
- package/src/types/Media/VideoIcon.vue +42 -0
- package/src/types/Media/VideoSlashFillIcon.vue +42 -0
- package/src/types/Media/VideoSlashIcon.vue +42 -0
- package/src/types/Media/VideoplayerFillIcon.vue +42 -0
- package/src/types/Media/VideoplayerIcon.vue +42 -0
- package/src/types/Media/WaveformIcon.vue +42 -0
- package/src/types/Money/BankNoteFillIcon.vue +42 -0
- package/src/types/Money/BankNoteIcon.vue +42 -0
- package/src/types/Money/CardFillIcon.vue +42 -0
- package/src/types/Money/CardIcon.vue +42 -0
- package/src/types/Money/CurrencyExchangeIcon.vue +42 -0
- package/src/types/Money/FlowerPensionFillIcon.vue +42 -0
- package/src/types/Money/FlowerPensionIcon.vue +42 -0
- package/src/types/Money/KronerIcon.vue +42 -0
- package/src/types/Money/NokIcon.vue +42 -0
- package/src/types/Money/PiggybankFillIcon.vue +42 -0
- package/src/types/Money/PiggybankIcon.vue +42 -0
- package/src/types/Money/ReceiptFillIcon.vue +42 -0
- package/src/types/Money/ReceiptIcon.vue +42 -0
- package/src/types/Money/SackKronerFillIcon.vue +42 -0
- package/src/types/Money/SackKronerIcon.vue +42 -0
- package/src/types/Money/SackPensionFillIcon.vue +42 -0
- package/src/types/Money/SackPensionIcon.vue +42 -0
- package/src/types/Money/ShoppingBasketFillIcon.vue +42 -0
- package/src/types/Money/ShoppingBasketIcon.vue +42 -0
- package/src/types/Money/WalletFillIcon.vue +42 -0
- package/src/types/Money/WalletIcon.vue +42 -0
- package/src/types/NatureAndAnimals/AllergensFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/AllergensIcon.vue +42 -0
- package/src/types/NatureAndAnimals/BacteriaFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/BacteriaIcon.vue +42 -0
- package/src/types/NatureAndAnimals/BugFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/BugIcon.vue +42 -0
- package/src/types/NatureAndAnimals/DogFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/DogIcon.vue +42 -0
- package/src/types/NatureAndAnimals/EarthFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/EarthIcon.vue +42 -0
- package/src/types/NatureAndAnimals/FlowerFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/FlowerIcon.vue +42 -0
- package/src/types/NatureAndAnimals/FlowerPetalFallingFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/FlowerPetalFallingIcon.vue +42 -0
- package/src/types/NatureAndAnimals/FlowerPetalsFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/FlowerPetalsIcon.vue +42 -0
- package/src/types/NatureAndAnimals/HexagonGridFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/HexagonGridIcon.vue +42 -0
- package/src/types/NatureAndAnimals/LightningFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/LightningIcon.vue +42 -0
- package/src/types/NatureAndAnimals/MicrobeFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/MicrobeIcon.vue +42 -0
- package/src/types/NatureAndAnimals/MoonFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/MoonIcon.vue +42 -0
- package/src/types/NatureAndAnimals/MountainFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/MountainIcon.vue +42 -0
- package/src/types/NatureAndAnimals/ParasolBeachFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/ParasolBeachIcon.vue +42 -0
- package/src/types/NatureAndAnimals/PlantFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/PlantIcon.vue +42 -0
- package/src/types/NatureAndAnimals/RaindropFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/RaindropIcon.vue +42 -0
- package/src/types/NatureAndAnimals/SnowIcon.vue +42 -0
- package/src/types/NatureAndAnimals/SparkLargeIcon.vue +42 -0
- package/src/types/NatureAndAnimals/SparkSmallIcon.vue +42 -0
- package/src/types/NatureAndAnimals/SparklesFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/SparklesIcon.vue +42 -0
- package/src/types/NatureAndAnimals/StarFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/StarIcon.vue +42 -0
- package/src/types/NatureAndAnimals/SunFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/SunIcon.vue +42 -0
- package/src/types/NatureAndAnimals/ThermometerFillIcon.vue +42 -0
- package/src/types/NatureAndAnimals/ThermometerIcon.vue +42 -0
- package/src/types/NatureAndAnimals/WavesIcon.vue +42 -0
- package/src/types/People/BabyWrappedFillIcon.vue +42 -0
- package/src/types/People/BabyWrappedIcon.vue +42 -0
- package/src/types/People/BoneFillIcon.vue +42 -0
- package/src/types/People/BoneIcon.vue +42 -0
- package/src/types/People/ChildEyesFillIcon.vue +42 -0
- package/src/types/People/ChildEyesIcon.vue +42 -0
- package/src/types/People/ChildHairEyesFillIcon.vue +42 -0
- package/src/types/People/ChildHairEyesIcon.vue +42 -0
- package/src/types/People/EarFillIcon.vue +42 -0
- package/src/types/People/EarIcon.vue +42 -0
- package/src/types/People/EarSlashFillIcon.vue +42 -0
- package/src/types/People/EarSlashIcon.vue +42 -0
- package/src/types/People/EarSoundwavesFillIcon.vue +42 -0
- package/src/types/People/EarSoundwavesIcon.vue +42 -0
- package/src/types/People/EyeClosedIcon.vue +42 -0
- package/src/types/People/EyeFillIcon.vue +42 -0
- package/src/types/People/EyeIcon.vue +42 -0
- package/src/types/People/EyeObfuscatedFillIcon.vue +42 -0
- package/src/types/People/EyeObfuscatedIcon.vue +42 -0
- package/src/types/People/EyeSlashFillIcon.vue +42 -0
- package/src/types/People/EyeSlashIcon.vue +42 -0
- package/src/types/People/EyeWithPupilFillIcon.vue +42 -0
- package/src/types/People/EyeWithPupilIcon.vue +42 -0
- package/src/types/People/FigureChildFillIcon.vue +42 -0
- package/src/types/People/FigureChildIcon.vue +42 -0
- package/src/types/People/FigureCombinationFillIcon.vue +42 -0
- package/src/types/People/FigureCombinationIcon.vue +42 -0
- package/src/types/People/FigureInwardFillIcon.vue +42 -0
- package/src/types/People/FigureInwardIcon.vue +42 -0
- package/src/types/People/FigureOutwardFillIcon.vue +42 -0
- package/src/types/People/FigureOutwardIcon.vue +42 -0
- package/src/types/People/FingerButtonFillIcon.vue +42 -0
- package/src/types/People/FingerButtonIcon.vue +42 -0
- package/src/types/People/FingerMobileFillIcon.vue +42 -0
- package/src/types/People/FingerMobileIcon.vue +42 -0
- package/src/types/People/HandFingerFillIcon.vue +42 -0
- package/src/types/People/HandFingerIcon.vue +42 -0
- package/src/types/People/HandHeartFillIcon.vue +42 -0
- package/src/types/People/HandHeartIcon.vue +42 -0
- package/src/types/People/HandKnotFilledIcon.vue +42 -0
- package/src/types/People/HandKnotIcon.vue +42 -0
- package/src/types/People/HandShakeHeartFillIcon.vue +42 -0
- package/src/types/People/HandShakeHeartIcon.vue +42 -0
- package/src/types/People/HandshakeFillIcon.vue +42 -0
- package/src/types/People/HandshakeIcon.vue +42 -0
- package/src/types/People/HeadFillIcon.vue +42 -0
- package/src/types/People/HeadIcon.vue +42 -0
- package/src/types/People/PersonCheckmarkFillIcon.vue +42 -0
- package/src/types/People/PersonCheckmarkIcon.vue +42 -0
- package/src/types/People/PersonCircleFillIcon.vue +42 -0
- package/src/types/People/PersonCircleIcon.vue +42 -0
- package/src/types/People/PersonCrossFillIcon.vue +42 -0
- package/src/types/People/PersonCrossIcon.vue +42 -0
- package/src/types/People/PersonEnvelopeFillIcon.vue +42 -0
- package/src/types/People/PersonEnvelopeIcon.vue +42 -0
- package/src/types/People/PersonFillIcon.vue +42 -0
- package/src/types/People/PersonGavelFillIcon.vue +42 -0
- package/src/types/People/PersonGavelIcon.vue +42 -0
- package/src/types/People/PersonGroupFillIcon.vue +42 -0
- package/src/types/People/PersonGroupIcon.vue +42 -0
- package/src/types/People/PersonHeadsetFillIcon.vue +42 -0
- package/src/types/People/PersonHeadsetIcon.vue +42 -0
- package/src/types/People/PersonIcon.vue +42 -0
- package/src/types/People/PersonMinusFillIcon.vue +42 -0
- package/src/types/People/PersonMinusIcon.vue +42 -0
- package/src/types/People/PersonPencilFillIcon.vue +42 -0
- package/src/types/People/PersonPencilIcon.vue +42 -0
- package/src/types/People/PersonPlusFillIcon.vue +42 -0
- package/src/types/People/PersonPlusIcon.vue +42 -0
- package/src/types/People/PersonPregnantFillIcon.vue +42 -0
- package/src/types/People/PersonPregnantIcon.vue +42 -0
- package/src/types/People/PersonRectangleFillIcon.vue +42 -0
- package/src/types/People/PersonRectangleIcon.vue +42 -0
- package/src/types/People/PersonSuitFillIcon.vue +42 -0
- package/src/types/People/PersonSuitIcon.vue +42 -0
- package/src/types/People/PersonTallShortFillIcon.vue +42 -0
- package/src/types/People/PersonTallShortIcon.vue +42 -0
- package/src/types/People/SilhouetteFillIcon.vue +42 -0
- package/src/types/People/SilhouetteIcon.vue +42 -0
- package/src/types/People/ToothFillIcon.vue +42 -0
- package/src/types/People/ToothIcon.vue +42 -0
- package/src/types/StatisticsAndMath/AngleIcon.vue +42 -0
- package/src/types/StatisticsAndMath/AreaChartFillIcon.vue +42 -0
- package/src/types/StatisticsAndMath/AreaChartIcon.vue +43 -0
- package/src/types/StatisticsAndMath/BarChartFillIcon.vue +42 -0
- package/src/types/StatisticsAndMath/BarChartIcon.vue +42 -0
- package/src/types/StatisticsAndMath/BubbleChartFillIcon.vue +42 -0
- package/src/types/StatisticsAndMath/BubbleChartIcon.vue +42 -0
- package/src/types/StatisticsAndMath/BulletListIcon.vue +42 -0
- package/src/types/StatisticsAndMath/DivideIcon.vue +42 -0
- package/src/types/StatisticsAndMath/DonutChartFillIcon.vue +42 -0
- package/src/types/StatisticsAndMath/DonutChartIcon.vue +42 -0
- package/src/types/StatisticsAndMath/EqualsIcon.vue +42 -0
- package/src/types/StatisticsAndMath/HashtagIcon.vue +42 -0
- package/src/types/StatisticsAndMath/LineGraphDotIcon.vue +42 -0
- package/src/types/StatisticsAndMath/LineGraphIcon.vue +42 -0
- package/src/types/StatisticsAndMath/LineGraphStackedIcon.vue +42 -0
- package/src/types/StatisticsAndMath/MinusCircleFillIcon.vue +42 -0
- package/src/types/StatisticsAndMath/MinusCircleIcon.vue +42 -0
- package/src/types/StatisticsAndMath/MinusIcon.vue +42 -0
- package/src/types/StatisticsAndMath/MultiplyIcon.vue +42 -0
- package/src/types/StatisticsAndMath/NumberListIcon.vue +42 -0
- package/src/types/StatisticsAndMath/PercentIcon.vue +42 -0
- package/src/types/StatisticsAndMath/PieChartFillIcon.vue +42 -0
- package/src/types/StatisticsAndMath/PieChartIcon.vue +42 -0
- package/src/types/StatisticsAndMath/PlusCircleFillIcon.vue +42 -0
- package/src/types/StatisticsAndMath/PlusCircleIcon.vue +42 -0
- package/src/types/StatisticsAndMath/PlusIcon.vue +42 -0
- package/src/types/StatisticsAndMath/PlusMinusSlashIcon.vue +42 -0
- package/src/types/StatisticsAndMath/SectorChartFillIcon.vue +42 -0
- package/src/types/StatisticsAndMath/SectorChartIcon.vue +42 -0
- package/src/types/StatisticsAndMath/SquarerootIcon.vue +42 -0
- package/src/types/StatisticsAndMath/TableFillIcon.vue +42 -0
- package/src/types/StatisticsAndMath/TableIcon.vue +42 -0
- package/src/types/StatisticsAndMath/TrendDownIcon.vue +42 -0
- package/src/types/StatisticsAndMath/TrendFlatIcon.vue +42 -0
- package/src/types/StatisticsAndMath/TrendUpIcon.vue +42 -0
- package/src/types/Status/BellDotFillIcon.vue +42 -0
- package/src/types/Status/BellDotIcon.vue +42 -0
- package/src/types/Status/BellFillIcon.vue +42 -0
- package/src/types/Status/BellIcon.vue +42 -0
- package/src/types/Status/BellSlashFillIcon.vue +42 -0
- package/src/types/Status/BellSlashIcon.vue +42 -0
- package/src/types/Status/CameraTriangleFillIcon.vue +42 -0
- package/src/types/Status/CameraTriangleIcon.vue +42 -0
- package/src/types/Status/CheckmarkCircleFillIcon.vue +42 -0
- package/src/types/Status/CheckmarkCircleIcon.vue +42 -0
- package/src/types/Status/CheckmarkHeavyIcon.vue +42 -0
- package/src/types/Status/CheckmarkIcon.vue +42 -0
- package/src/types/Status/CircleBrokenIcon.vue +42 -0
- package/src/types/Status/CircleFillIcon.vue +42 -0
- package/src/types/Status/CircleIcon.vue +42 -0
- package/src/types/Status/CircleSlashFillIcon.vue +42 -0
- package/src/types/Status/CircleSlashIcon.vue +42 -0
- package/src/types/Status/CogRotationFillIcon.vue +42 -0
- package/src/types/Status/CogRotationIcon.vue +42 -0
- package/src/types/Status/DiamondFillIcon.vue +42 -0
- package/src/types/Status/DiamondIcon.vue +42 -0
- package/src/types/Status/ExclamationmarkIcon.vue +42 -0
- package/src/types/Status/ExclamationmarkTriangleFillIcon.vue +42 -0
- package/src/types/Status/ExclamationmarkTriangleIcon.vue +42 -0
- package/src/types/Status/InformationIcon.vue +42 -0
- package/src/types/Status/InformationSquareFillIcon.vue +42 -0
- package/src/types/Status/InformationSquareIcon.vue +42 -0
- package/src/types/Status/LaptopTriangleFillIcon.vue +42 -0
- package/src/types/Status/LaptopTriangleIcon.vue +42 -0
- package/src/types/Status/MobileTriangleFillIcon.vue +42 -0
- package/src/types/Status/MobileTriangleIcon.vue +42 -0
- package/src/types/Status/MonitorTriangleFillIcon.vue +42 -0
- package/src/types/Status/MonitorTriangleIcon.vue +42 -0
- package/src/types/Status/PentagonFillIcon.vue +42 -0
- package/src/types/Status/PentagonIcon.vue +42 -0
- package/src/types/Status/PrinterLargeTriangleFillIcon.vue +42 -0
- package/src/types/Status/PrinterLargeTriangleIcon.vue +42 -0
- package/src/types/Status/PrinterSmallTriangleFillIcon.vue +42 -0
- package/src/types/Status/PrinterSmallTriangleIcon.vue +42 -0
- package/src/types/Status/QuestionmarkCircleFillIcon.vue +42 -0
- package/src/types/Status/QuestionmarkCircleIcon.vue +42 -0
- package/src/types/Status/QuestionmarkDiamondFillIcon.vue +42 -0
- package/src/types/Status/QuestionmarkDiamondIcon.vue +42 -0
- package/src/types/Status/QuestionmarkIcon.vue +42 -0
- package/src/types/Status/RobotFillIcon.vue +42 -0
- package/src/types/Status/RobotFrownFillIcon.vue +42 -0
- package/src/types/Status/RobotFrownIcon.vue +45 -0
- package/src/types/Status/RobotIcon.vue +45 -0
- package/src/types/Status/RobotSmileFillIcon.vue +42 -0
- package/src/types/Status/RobotSmileIcon.vue +45 -0
- package/src/types/Status/SquareFillIcon.vue +42 -0
- package/src/types/Status/SquareIcon.vue +42 -0
- package/src/types/Status/TriangleFillIcon.vue +42 -0
- package/src/types/Status/TriangleIcon.vue +42 -0
- package/src/types/Status/XMarkIcon.vue +42 -0
- package/src/types/Status/XMarkOctagonFillIcon.vue +42 -0
- package/src/types/Status/XMarkOctagonIcon.vue +42 -0
- package/src/types/Transportation/AirplaneFillIcon.vue +42 -0
- package/src/types/Transportation/AirplaneIcon.vue +42 -0
- package/src/types/Transportation/BackpackFillIcon.vue +42 -0
- package/src/types/Transportation/BackpackIcon.vue +42 -0
- package/src/types/Transportation/BaggageFillIcon.vue +42 -0
- package/src/types/Transportation/BaggageIcon.vue +42 -0
- package/src/types/Transportation/BicycleIcon.vue +42 -0
- package/src/types/Transportation/BoatFillIcon.vue +42 -0
- package/src/types/Transportation/BoatIcon.vue +42 -0
- package/src/types/Transportation/BusFillIcon.vue +42 -0
- package/src/types/Transportation/BusIcon.vue +42 -0
- package/src/types/Transportation/CarFillIcon.vue +42 -0
- package/src/types/Transportation/CarIcon.vue +42 -0
- package/src/types/Transportation/CompassFillIcon.vue +42 -0
- package/src/types/Transportation/CompassIcon.vue +42 -0
- package/src/types/Transportation/FlagCrossFillIcon.vue +42 -0
- package/src/types/Transportation/FlagCrossIcon.vue +42 -0
- package/src/types/Transportation/FootprintFillIcon.vue +42 -0
- package/src/types/Transportation/FootprintIcon.vue +42 -0
- package/src/types/Transportation/HikingTrailSignFillIcon.vue +42 -0
- package/src/types/Transportation/HikingTrailSignIcon.vue +42 -0
- package/src/types/Transportation/LocationPinFillIcon.vue +42 -0
- package/src/types/Transportation/LocationPinIcon.vue +42 -0
- package/src/types/Transportation/MotorcycleFillIcon.vue +42 -0
- package/src/types/Transportation/MotorcycleIcon.vue +42 -0
- package/src/types/Transportation/RoadblockFillIcon.vue +42 -0
- package/src/types/Transportation/RoadblockIcon.vue +49 -0
- package/src/types/Transportation/RocketFillIcon.vue +42 -0
- package/src/types/Transportation/RocketIcon.vue +42 -0
- package/src/types/Transportation/SackFillIcon.vue +42 -0
- package/src/types/Transportation/SackIcon.vue +42 -0
- package/src/types/Transportation/StrollerFillIcon.vue +42 -0
- package/src/types/Transportation/StrollerIcon.vue +42 -0
- package/src/types/Transportation/TrainFillIcon.vue +42 -0
- package/src/types/Transportation/TrainIcon.vue +42 -0
- package/src/types/Transportation/TramFillIcon.vue +42 -0
- package/src/types/Transportation/TramIcon.vue +42 -0
- package/src/types/Transportation/TruckFillIcon.vue +42 -0
- package/src/types/Transportation/TruckIcon.vue +42 -0
- package/src/types/Transportation/TruckPercentFillIcon.vue +42 -0
- package/src/types/Transportation/TruckPercentIcon.vue +42 -0
- package/src/types/Wellness/BandageFillIcon.vue +42 -0
- package/src/types/Wellness/BandageIcon.vue +42 -0
- package/src/types/Wellness/BoneBrokenIcon.vue +42 -0
- package/src/types/Wellness/CigaretteFillIcon.vue +42 -0
- package/src/types/Wellness/CigaretteIcon.vue +42 -0
- package/src/types/Wellness/CoffeeFillIcon.vue +42 -0
- package/src/types/Wellness/CoffeeIcon.vue +42 -0
- package/src/types/Wellness/DonutsFillIcon.vue +42 -0
- package/src/types/Wellness/DonutsIcon.vue +42 -0
- package/src/types/Wellness/FeedingBottleFillIcon.vue +42 -0
- package/src/types/Wellness/FeedingBottleIcon.vue +42 -0
- package/src/types/Wellness/FirstAidFillIcon.vue +42 -0
- package/src/types/Wellness/FirstAidIcon.vue +42 -0
- package/src/types/Wellness/FirstAidKitFillIcon.vue +42 -0
- package/src/types/Wellness/FirstAidKitIcon.vue +42 -0
- package/src/types/Wellness/HandBandageFillIcon.vue +42 -0
- package/src/types/Wellness/HandBandageIcon.vue +42 -0
- package/src/types/Wellness/HeadHeartFillIcon.vue +42 -0
- package/src/types/Wellness/HeadHeartIcon.vue +42 -0
- package/src/types/Wellness/HospitalFillIcon.vue +42 -0
- package/src/types/Wellness/HospitalIcon.vue +42 -0
- package/src/types/Wellness/IvFluidBagFillIcon.vue +42 -0
- package/src/types/Wellness/IvFluidBagIcon.vue +42 -0
- package/src/types/Wellness/LifebuoyFillIcon.vue +42 -0
- package/src/types/Wellness/LifebuoyIcon.vue +42 -0
- package/src/types/Wellness/MedicalThermometerFillIcon.vue +42 -0
- package/src/types/Wellness/MedicalThermometerIcon.vue +42 -0
- package/src/types/Wellness/MedicineBottleFillIcon.vue +42 -0
- package/src/types/Wellness/MedicineBottleIcon.vue +42 -0
- package/src/types/Wellness/PillCircleFillIcon.vue +42 -0
- package/src/types/Wellness/PillCircleIcon.vue +42 -0
- package/src/types/Wellness/PillCircleRectangleFillIcon.vue +42 -0
- package/src/types/Wellness/PillCircleRectangleIcon.vue +42 -0
- package/src/types/Wellness/PillRectangleFillIcon.vue +42 -0
- package/src/types/Wellness/PillRectangleIcon.vue +42 -0
- package/src/types/Wellness/StarOfLifeFillIcon.vue +42 -0
- package/src/types/Wellness/StarOfLifeIcon.vue +42 -0
- package/src/types/Wellness/StethoscopeIcon.vue +42 -0
- package/src/types/Wellness/TrayFoodFillIcon.vue +42 -0
- package/src/types/Wellness/TrayFoodIcon.vue +42 -0
- package/src/types/Wellness/VirusFillIcon.vue +42 -0
- package/src/types/Wellness/VirusIcon.vue +42 -0
- package/src/types/Wellness/VitalsIcon.vue +42 -0
- package/src/types/Workplace/BriefcaseClockFillIcon.vue +42 -0
- package/src/types/Workplace/BriefcaseClockIcon.vue +42 -0
- package/src/types/Workplace/BriefcaseFillIcon.vue +42 -0
- package/src/types/Workplace/BriefcaseIcon.vue +42 -0
- package/src/types/Workplace/Buildings2FillIcon.vue +42 -0
- package/src/types/Workplace/Buildings2Icon.vue +42 -0
- package/src/types/Workplace/Buildings3FillIcon.vue +42 -0
- package/src/types/Workplace/Buildings3Icon.vue +42 -0
- package/src/types/Workplace/ChangingRoomFillIcon.vue +42 -0
- package/src/types/Workplace/ChangingRoomIcon.vue +42 -0
- package/src/types/Workplace/ChefHatFillIcon.vue +42 -0
- package/src/types/Workplace/ChefHatIcon.vue +42 -0
- package/src/types/Workplace/ClipboardCheckmarkFillIcon.vue +42 -0
- package/src/types/Workplace/ClipboardCheckmarkIcon.vue +42 -0
- package/src/types/Workplace/ClipboardFillIcon.vue +42 -0
- package/src/types/Workplace/ClipboardIcon.vue +42 -0
- package/src/types/Workplace/ClipboardLinkFillIcon.vue +42 -0
- package/src/types/Workplace/ClipboardLinkIcon.vue +42 -0
- package/src/types/Workplace/ClipboardXMarkFillIcon.vue +42 -0
- package/src/types/Workplace/ClipboardXMarkIcon.vue +42 -0
- package/src/types/Workplace/DoorFillIcon.vue +42 -0
- package/src/types/Workplace/DoorIcon.vue +42 -0
- package/src/types/Workplace/DoorOpenFillIcon.vue +42 -0
- package/src/types/Workplace/DoorOpenIcon.vue +42 -0
- package/src/types/Workplace/ElevatorFillIcon.vue +42 -0
- package/src/types/Workplace/ElevatorIcon.vue +42 -0
- package/src/types/Workplace/HardHatFillIcon.vue +42 -0
- package/src/types/Workplace/HardHatIcon.vue +42 -0
- package/src/types/Workplace/MeetingLargeFillIcon.vue +42 -0
- package/src/types/Workplace/MeetingLargeIcon.vue +42 -0
- package/src/types/Workplace/MeetingSmallFillIcon.vue +42 -0
- package/src/types/Workplace/MeetingSmallIcon.vue +42 -0
- package/src/types/Workplace/NoSmokingFillIcon.vue +42 -0
- package/src/types/Workplace/NoSmokingIcon.vue +42 -0
- package/src/types/Workplace/ParkingFillIcon.vue +42 -0
- package/src/types/Workplace/ParkingIcon.vue +42 -0
- package/src/types/Workplace/QuietZoneFillIcon.vue +42 -0
- package/src/types/Workplace/QuietZoneIcon.vue +42 -0
- package/src/types/Workplace/ReceptionFillIcon.vue +42 -0
- package/src/types/Workplace/ReceptionIcon.vue +42 -0
- package/src/types/Workplace/RecycleFillIcon.vue +42 -0
- package/src/types/Workplace/RecycleIcon.vue +42 -0
- package/src/types/Workplace/ShowerFillIcon.vue +42 -0
- package/src/types/Workplace/ShowerIcon.vue +42 -0
- package/src/types/Workplace/TapWaterFillIcon.vue +42 -0
- package/src/types/Workplace/TapWaterIcon.vue +42 -0
- package/src/types/Workplace/TestFlaskFillIcon.vue +42 -0
- package/src/types/Workplace/TestFlaskIcon.vue +42 -0
- package/src/types/Workplace/WaitingRoomFillIcon.vue +42 -0
- package/src/types/Workplace/WaitingRoomIcon.vue +42 -0
- package/src/types/index.ts +985 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.2856 11.4827C10.2925 11.3664 10.3265 11.2534 10.3847 11.1526L14.8847 3.35837C15.6441 2.04306 17.326 1.59241 18.6413 2.3518C19.9566 3.11119 20.4072 4.79307 19.6478 6.10837L15.1478 13.9026C15.0896 14.0034 15.0087 14.0893 14.9116 14.1535L11.1795 16.6176C10.9424 16.7741 10.6373 16.7833 10.3913 16.6412C10.1453 16.4992 10.0006 16.2303 10.0176 15.9468L10.2856 11.4827ZM11.7723 11.7493L11.6048 14.5393L13.9373 12.9993L16.9648 7.75553L14.7997 6.50553L11.7723 11.7493ZM18.3488 5.35837L17.7148 6.45649L15.5497 5.20649L16.1837 4.10837C16.5289 3.5105 17.2934 3.30566 17.8913 3.65084C18.4891 3.99602 18.694 4.7605 18.3488 5.35837ZM6.50002 9.74995C5.08554 9.74995 3.75002 10.7963 3.75002 12.3911C3.75002 12.8544 3.86177 13.3055 3.94765 13.6522L3.94771 13.6524C3.9584 13.6956 3.9687 13.7371 3.97833 13.7769C4.0754 14.1778 4.12265 14.4518 4.08845 14.7028C4.01364 15.252 3.80101 15.6918 3.52264 15.9215C3.20317 16.1851 3.15792 16.6579 3.42157 16.9773C3.68522 17.2968 4.15794 17.342 4.4774 17.0784C5.15246 16.5213 5.47119 15.6652 5.57472 14.9053C5.65108 14.3448 5.53255 13.8218 5.4362 13.4239L5.4064 13.3015C5.31518 12.9276 5.25002 12.6605 5.25002 12.3911C5.25002 11.7551 5.77735 11.2499 6.50002 11.2499C6.883 11.2499 7.12386 11.3662 7.28855 11.5167C7.46498 11.678 7.60736 11.929 7.68959 12.2694C7.85933 12.9719 7.72307 13.8541 7.40061 14.4345L5.86568 17.1974C5.46191 17.9242 5.25002 18.7419 5.25002 19.5733C5.25002 21.1387 6.55471 22.2499 8.00002 22.2499C9.31852 22.2499 10.2076 21.5704 10.6341 20.6194C11.0349 19.726 11.0079 18.6519 10.7115 17.7628C10.5805 17.3698 10.1558 17.1574 9.76285 17.2884C9.36989 17.4194 9.15752 17.8442 9.28851 18.2371C9.49212 18.848 9.48157 19.5239 9.26552 20.0055C9.07531 20.4295 8.71435 20.7499 8.00002 20.7499C7.29297 20.7499 6.75002 20.2229 6.75002 19.5733C6.75002 18.9968 6.89694 18.4298 7.17691 17.9259L8.71184 15.163C9.21327 14.2604 9.40763 12.9932 9.14765 11.9171C9.01502 11.3682 8.75246 10.8225 8.30048 10.4095C7.83676 9.98567 7.22576 9.74995 6.50002 9.74995Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9697 4.46945C16.2406 3.19856 18.261 3.19096 19.5323 4.47138C20.7922 5.74037 20.7997 7.83866 19.5304 9.10805L18.9526 9.68581C18.7573 9.88107 18.4408 9.88107 18.2455 9.68581L14.353 5.79328C14.1577 5.59802 14.1577 5.28144 14.353 5.08618L14.9697 4.46945ZM17.1848 10.7465C17.3801 10.9417 17.3801 11.2583 17.1848 11.4536L11.0304 17.608C10.9265 17.7119 10.7945 17.7829 10.6506 17.8124L6.15057 18.7345C5.90153 18.7856 5.64358 18.707 5.46531 18.5257C5.28705 18.3445 5.21272 18.0853 5.26787 17.8371L6.26786 13.3371C6.2988 13.1979 6.36881 13.0704 6.46967 12.9695L12.5852 6.85395C12.7805 6.65869 13.097 6.65869 13.2923 6.85395L17.1848 10.7465ZM3.5 20.25C3.08579 20.25 2.75 20.5858 2.75 21C2.75 21.4142 3.08579 21.75 3.5 21.75H20.5C20.9142 21.75 21.25 21.4142 21.25 21C21.25 20.5858 20.9142 20.25 20.5 20.25H3.5Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9697 4.46945C16.2406 3.19856 18.261 3.19096 19.5322 4.47138C20.7921 5.74037 20.7997 7.83866 19.5303 9.10805L11.0303 17.608C10.9265 17.7119 10.7944 17.7829 10.6506 17.8124L6.15054 18.7345C5.90149 18.7856 5.64355 18.707 5.46528 18.5257C5.28701 18.3445 5.21269 18.0853 5.26784 17.8371L6.26783 13.3371C6.29877 13.1979 6.36878 13.0704 6.46964 12.9695L14.9697 4.46945ZM18.4678 5.52823C17.7866 4.84216 16.7189 4.84152 16.0303 5.53011L15.0605 6.49989L17.5389 8.9782L18.4697 8.04739C19.1498 7.36723 19.1504 6.21577 18.4678 5.52823ZM7.68473 13.8757L13.9999 7.56055L16.4782 10.0389L10.1289 16.3882L6.98318 17.0328L7.68473 13.8757ZM3.5 20.25C3.08579 20.25 2.75 20.5858 2.75 21C2.75 21.4142 3.08579 21.75 3.5 21.75H20.5C20.9142 21.75 21.25 21.4142 21.25 21C21.25 20.5858 20.9142 20.25 20.5 20.25H3.5Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5 4.25C14.8096 4.25 14.25 4.80964 14.25 5.5V12C14.25 12.3033 14.4327 12.5768 14.713 12.6929C14.9932 12.809 15.3158 12.7448 15.5303 12.5303L17.3107 10.75H21.5C22.1904 10.75 22.75 10.1904 22.75 9.5V5.5C22.75 4.80964 22.1904 4.25 21.5 4.25H15.5ZM4.25 9C4.25 6.65279 6.15279 4.75 8.5 4.75C10.8472 4.75 12.75 6.65279 12.75 9C12.75 11.3472 10.8472 13.25 8.5 13.25C6.15279 13.25 4.25 11.3472 4.25 9ZM4.78768 15.7877C5.77224 14.8031 7.1076 14.25 8.49999 14.25C9.89237 14.25 11.2277 14.8031 12.2123 15.7877C13.0584 16.6338 13.5859 17.7389 13.7175 18.9167C13.7412 19.1288 13.6734 19.3409 13.5311 19.5C13.3889 19.6591 13.1856 19.75 12.9721 19.75H4.02784C3.81442 19.75 3.61111 19.6591 3.46883 19.5C3.32654 19.3409 3.25877 19.1288 3.28248 18.9167C3.41412 17.7389 3.94158 16.6338 4.78768 15.7877Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.75 10.1893V5.75H21.25V9.25H17C16.8011 9.25 16.6103 9.32902 16.4697 9.46967L15.75 10.1893ZM15.5 4.25C14.8096 4.25 14.25 4.80964 14.25 5.5V12C14.25 12.3033 14.4327 12.5768 14.713 12.6929C14.9932 12.809 15.3158 12.7448 15.5303 12.5303L17.3107 10.75H21.5C22.1904 10.75 22.75 10.1904 22.75 9.5V5.5C22.75 4.80964 22.1904 4.25 21.5 4.25H15.5ZM8.49997 6.25C6.98119 6.25 5.74997 7.48122 5.74997 9C5.74997 10.5188 6.98119 11.75 8.49997 11.75C10.0188 11.75 11.25 10.5188 11.25 9C11.25 7.48122 10.0188 6.25 8.49997 6.25ZM4.24997 9C4.24997 6.65279 6.15276 4.75 8.49997 4.75C10.8472 4.75 12.75 6.65279 12.75 9C12.75 11.3472 10.8472 13.25 8.49997 13.25C6.15276 13.25 4.24997 11.3472 4.24997 9ZM8.49996 15.75C7.5054 15.75 6.55157 16.1451 5.84831 16.8483C5.24398 17.4527 4.8672 18.2421 4.77317 19.0833C4.72715 19.495 4.35614 19.7914 3.94449 19.7454C3.53284 19.6993 3.23644 19.3283 3.28245 18.9167C3.41409 17.7389 3.94155 16.6338 4.78765 15.7877C5.77221 14.8031 7.10757 14.25 8.49996 14.25C9.89234 14.25 11.2277 14.8031 12.2123 15.7877C13.0584 16.6338 13.5858 17.7389 13.7175 18.9167C13.7635 19.3283 13.4671 19.6993 13.0554 19.7454C12.6438 19.7914 12.2728 19.495 12.2268 19.0833C12.1327 18.2421 11.7559 17.4527 11.1516 16.8483C10.4483 16.1451 9.49452 15.75 8.49996 15.75Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.11615 2.82315C6.60431 2.33499 7.39577 2.33499 7.88392 2.82315L11.6768 6.61604C12.165 7.1042 12.165 7.89565 11.6768 8.38381L10.0607 9.99992L14 13.9393L15.6162 12.3231C16.1043 11.835 16.8958 11.835 17.3839 12.3231L21.1768 16.116C21.665 16.6042 21.665 17.3957 21.1768 17.8838L18.3959 20.6648C17.6587 21.402 16.553 21.6289 15.585 21.2417C9.73439 18.9014 5.09852 14.2656 2.75826 8.41492C2.37106 7.44692 2.598 6.34131 3.3352 5.6041L6.11615 2.82315Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.11614 2.82315C6.6043 2.33499 7.39575 2.33499 7.88391 2.82315L11.6768 6.61604C12.165 7.1042 12.165 7.89565 11.6768 8.38381L10.0607 9.99992L14 13.9393L15.6161 12.3231C16.1043 11.835 16.8958 11.835 17.3839 12.3231L21.1768 16.116C21.665 16.6042 21.665 17.3957 21.1768 17.8838L18.3958 20.6648C17.6586 21.402 16.553 21.6289 15.585 21.2417C9.73437 18.9014 5.09851 14.2656 2.75824 8.41492C2.37105 7.44692 2.59798 6.34131 3.33519 5.6041L6.11614 2.82315L6.64647 3.35348L6.11614 2.82315ZM7.00002 4.06059L4.39585 6.66476C4.08293 6.97767 3.98661 7.44696 4.15096 7.85783C6.33876 13.3273 10.6726 17.6612 16.1421 19.849C16.553 20.0133 17.0223 19.917 17.3352 19.6041L19.9394 16.9999L16.5 13.5606L14.5304 15.5303C14.2375 15.8231 13.7626 15.8231 13.4697 15.5303L8.46969 10.5303C8.1768 10.2374 8.1768 9.76249 8.46969 9.46959L10.4394 7.49992L7.00002 4.06059Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path d="M15.6164 12.3234C16.1046 11.8353 16.8958 11.8353 17.384 12.3234L21.1769 16.1164C21.6649 16.6046 21.665 17.3959 21.1769 17.884L18.3957 20.6652C17.6585 21.4022 16.553 21.6285 15.5851 21.2414C13.5719 20.4361 11.7041 19.357 10.0226 18.0519C9.90472 17.9604 9.89462 17.7864 10.0002 17.6808L13.7424 13.9396C13.8136 13.8684 13.929 13.8684 14.0002 13.9396L15.6164 12.3234ZM18.2746 5.16522C18.5675 4.87256 19.0423 4.87241 19.3351 5.16522C19.6278 5.45805 19.6278 5.93291 19.3351 6.22577L5.03046 20.5305C4.73762 20.8233 4.26281 20.8232 3.96991 20.5305C3.67702 20.2376 3.67703 19.7628 3.96991 19.4699L18.2746 5.16522ZM6.11639 2.82343C6.60455 2.33529 7.39582 2.33528 7.88397 2.82343L11.6769 6.61639C12.1649 7.10456 12.165 7.89589 11.6769 8.38397L10.0607 10.0002L10.5129 10.4523C10.6105 10.55 10.6105 10.7082 10.5129 10.8058L6.76288 14.5549C6.6596 14.6581 6.48991 14.6516 6.39667 14.5392C4.88828 12.7162 3.65398 10.6551 2.758 8.41522C2.37081 7.44726 2.59799 6.3409 3.33514 5.6037L6.11639 2.82343Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path d="M15.7112 12.2377C16.1694 11.8643 16.8302 11.8643 17.2884 12.2377L17.3841 12.3237L21.1771 16.1166C21.6647 16.6048 21.6648 17.3962 21.1771 17.8842L18.3958 20.6655C17.6587 21.4022 16.553 21.6295 15.5853 21.2426C13.6561 20.4709 11.8581 19.4494 10.2318 18.2172C9.90177 17.9672 9.83754 17.4966 10.0872 17.1665C10.3373 16.8363 10.8078 16.7709 11.138 17.0209C12.6583 18.1728 14.3384 19.1276 16.1419 19.8491C16.5526 20.0133 17.0224 19.9175 17.3353 19.6049L19.9388 17.0004L16.4993 13.561L14.5306 15.5307C14.2377 15.8232 13.7619 15.8234 13.4691 15.5307L13.1234 15.185C12.8309 14.8923 12.8312 14.4173 13.1234 14.1245C13.3508 13.897 13.6877 13.8482 13.9642 13.9741L15.6155 12.3237L15.7112 12.2377ZM18.2737 5.16547C18.5666 4.87258 19.0424 4.87258 19.3353 5.16547C19.6277 5.45834 19.6279 5.93323 19.3353 6.22602L5.03058 20.5307C4.7378 20.8234 4.26293 20.8232 3.97003 20.5307C3.67714 20.2378 3.67714 19.7621 3.97003 19.4692L18.2737 5.16547ZM6.11554 2.82368C6.57311 2.36611 7.29743 2.33751 7.78839 2.73774L7.88409 2.82368L11.6771 6.61665C12.1647 7.10476 12.1648 7.89619 11.6771 8.38422L10.0609 10.0004L10.3392 10.2788C10.6318 10.5716 10.6318 11.0464 10.3392 11.3393C10.0463 11.6318 9.57142 11.6319 9.27863 11.3393L8.46906 10.5307C8.17658 10.238 8.17684 9.76303 8.46906 9.47016L10.4388 7.50043L6.99933 4.06098L4.39581 6.66547C4.0833 6.97829 3.98662 7.44724 4.1507 7.85786C4.95176 9.86043 6.04069 11.7114 7.36749 13.3598C7.62697 13.6824 7.57649 14.1548 7.25421 14.4145C6.93173 14.6738 6.45925 14.6233 6.19952 14.3012C4.78011 12.5378 3.61504 10.5576 2.75812 8.41547C2.37099 7.44764 2.59836 6.34213 3.33527 5.60493L6.11554 2.82368Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.33557 2.32922C6.96509 2.14398 6.51459 2.29415 6.32934 2.66463C6.1441 3.03512 6.29427 3.48562 6.66475 3.67086L11.823 6.25H5C4.58579 6.25 4.25 6.58579 4.25 7V20C4.25 20.4142 4.58579 20.75 5 20.75H16C16.4142 20.75 16.75 20.4142 16.75 20V17.4014L19.4161 15.624C19.7608 15.3942 19.8539 14.9286 19.6241 14.5839C19.3944 14.2393 18.9287 14.1462 18.5841 14.3759L16.75 15.5986V14.4014L19.4161 12.624C19.7608 12.3942 19.8539 11.9286 19.6241 11.5839C19.3944 11.2393 18.9287 11.1462 18.5841 11.3759L16.75 12.5986V7C16.75 6.58579 16.4142 6.25 16 6.25H15.1771L7.33557 2.32922ZM7.25 17C7.25 16.5858 7.58579 16.25 8 16.25H13C13.4142 16.25 13.75 16.5858 13.75 17C13.75 17.4142 13.4142 17.75 13 17.75H8C7.58579 17.75 7.25 17.4142 7.25 17Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.32918 2.66459C6.51442 2.2941 6.96493 2.14393 7.33541 2.32918L15.1771 6.25H16C16.4142 6.25 16.75 6.58578 16.75 7V12.5986L18.584 11.376C18.9286 11.1462 19.3943 11.2393 19.624 11.584C19.8538 11.9286 19.7607 12.3943 19.416 12.624L16.75 14.4014V15.5986L18.584 14.376C18.9286 14.1462 19.3943 14.2393 19.624 14.584C19.8538 14.9286 19.7607 15.3943 19.416 15.624L16.75 17.4014V20C16.75 20.4142 16.4142 20.75 16 20.75H5C4.58579 20.75 4.25 20.4142 4.25 20V7C4.25 6.58578 4.58579 6.25 5 6.25H11.8229L6.66459 3.67082C6.29411 3.48557 6.14394 3.03507 6.32918 2.66459ZM15.0151 7.75C15.0073 7.75016 14.9994 7.7502 14.9916 7.75012L14.9838 7.75H5.75V19.25H15.25V17.0116C15.2499 17.0043 15.2499 16.997 15.25 16.9898V14.0116L15.2499 14.0066L15.25 13.9898V7.75H15.0151ZM8 16.25C7.58579 16.25 7.25 16.5858 7.25 17C7.25 17.4142 7.58579 17.75 8 17.75H13C13.4142 17.75 13.75 17.4142 13.75 17C13.75 16.5858 13.4142 16.25 13 16.25H8Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.25 3C6.25 2.58579 6.58579 2.25 7 2.25H17C17.4142 2.25 17.75 2.58579 17.75 3V5.5C17.75 5.63807 17.6381 5.75 17.5 5.75H6.5C6.36193 5.75 6.25 5.63807 6.25 5.5V3ZM4 7.25C3.0335 7.25 2.25 8.0335 2.25 9V18C2.25 18.4142 2.58579 18.75 3 18.75H4.5C4.63807 18.75 4.75 18.6381 4.75 18.5V12C4.75 10.7574 5.75736 9.75 7 9.75H17C18.2426 9.75 19.25 10.7574 19.25 12V18.5C19.25 18.6381 19.3619 18.75 19.5 18.75H21C21.4142 18.75 21.75 18.4142 21.75 18V9C21.75 8.0335 20.9665 7.25 20 7.25H4ZM6.25 12C6.25 11.5858 6.58579 11.25 7 11.25H17C17.4142 11.25 17.75 11.5858 17.75 12V21C17.75 21.4142 17.4142 21.75 17 21.75H7C6.58579 21.75 6.25 21.4142 6.25 21V12ZM9.25 15C9.25 14.5858 9.58579 14.25 10 14.25H14C14.4142 14.25 14.75 14.5858 14.75 15C14.75 15.4142 14.4142 15.75 14 15.75H10C9.58579 15.75 9.25 15.4142 9.25 15ZM10 17.25C9.58579 17.25 9.25 17.5858 9.25 18C9.25 18.4142 9.58579 18.75 10 18.75H12.5C12.9142 18.75 13.25 18.4142 13.25 18C13.25 17.5858 12.9142 17.25 12.5 17.25H10Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 2.25C6.58579 2.25 6.25 2.58579 6.25 3V7.25H4C3.0335 7.25 2.25 8.0335 2.25 9V18C2.25 18.4142 2.58579 18.75 3 18.75H6.25V21C6.25 21.4142 6.58579 21.75 7 21.75H17C17.4142 21.75 17.75 21.4142 17.75 21V18.75H21C21.4142 18.75 21.75 18.4142 21.75 18V9C21.75 8.0335 20.9665 7.25 20 7.25H17.75V3C17.75 2.58579 17.4142 2.25 17 2.25H7ZM3.75 9C3.75 8.86193 3.86193 8.75 4 8.75H20C20.1381 8.75 20.25 8.86193 20.25 9V17.25H17.75V12C17.75 11.5858 17.4142 11.25 17 11.25H7C6.58579 11.25 6.25 11.5858 6.25 12V17.25H3.75V9ZM16.25 7.25V3.75H7.75V7.25H16.25ZM7.75 12.75V20.25H16.25V12.75H7.75ZM9.25 15C9.25 14.5858 9.58579 14.25 10 14.25H14C14.4142 14.25 14.75 14.5858 14.75 15C14.75 15.4142 14.4142 15.75 14 15.75H10C9.58579 15.75 9.25 15.4142 9.25 15ZM9.25 18C9.25 17.5858 9.58579 17.25 10 17.25H12.5C12.9142 17.25 13.25 17.5858 13.25 18C13.25 18.4142 12.9142 18.75 12.5 18.75H10C9.58579 18.75 9.25 18.4142 9.25 18Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.25 2.75C11.25 2.47386 11.0261 2.25 10.75 2.25H3.00195C2.58774 2.25 2.25195 2.58579 2.25195 3V13.75C2.25195 14.0261 2.47581 14.25 2.75195 14.25H10.75C11.0261 14.25 11.25 14.0261 11.25 13.75V9.00072V9V8.99928V2.75ZM2.75195 15.75C2.47581 15.75 2.25195 15.9739 2.25195 16.25V21C2.25195 21.4142 2.58774 21.75 3.00195 21.75H10.75C11.0261 21.75 11.25 21.5261 11.25 21.25V16.25C11.25 15.9739 11.0261 15.75 10.75 15.75H2.75195ZM12.75 21.25C12.75 21.5261 12.9739 21.75 13.25 21.75H20.9983C21.4125 21.75 21.7483 21.4142 21.7483 21V10.25C21.7483 9.97386 21.5244 9.75 21.2483 9.75H13.25C12.9739 9.75 12.75 9.97386 12.75 10.25V15L12.75 21.25ZM21.2483 8.25C21.5244 8.25 21.7483 8.02614 21.7483 7.75V3C21.7483 2.58579 21.4125 2.25 20.9983 2.25H13.25C12.9739 2.25 12.75 2.47386 12.75 2.75V7.75C12.75 8.02614 12.9739 8.25 13.25 8.25H21.2483Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.00195 2.25C2.58774 2.25 2.25195 2.58579 2.25195 3V21C2.25195 21.4142 2.58774 21.75 3.00195 21.75H20.9983C21.4125 21.75 21.7483 21.4142 21.7483 21V9.01108L21.7484 9L21.7483 8.98892V3C21.7483 2.58579 21.4125 2.25 20.9983 2.25H3.00195ZM12.75 15.0223C12.7502 15.0149 12.7503 15.0075 12.7503 15C12.7503 14.9925 12.7502 14.9851 12.75 14.9777V9.75H20.2483V20.25H12.75V15.0223ZM3.75195 15.75V20.25H11.25V15.75H3.75195ZM11.25 14.25H3.75195V3.75H11.25V14.25ZM20.2483 8.25H12.75V3.75H20.2483V8.25Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|