@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="M11.6202 2.35817C11.8605 2.32011 11.9971 2.63129 11.8384 2.8157C11.5753 3.12143 11.3526 3.46294 11.1785 3.83193C11.1486 3.89538 11.0947 3.94441 11.0289 3.96889C9.69803 4.4644 8.75 5.74648 8.75 7.24999C8.75 9.18299 10.317 10.75 12.25 10.75H17.75C19.1196 10.75 20.3285 10.0616 21.0494 9.01202C21.179 8.82335 21.4879 8.85368 21.538 9.07703C21.6768 9.6958 21.75 10.3393 21.75 11C21.75 13.0824 21.0217 14.9963 19.8069 16.4985C19.7703 16.5437 19.75 16.5999 19.75 16.658V21.5C19.75 21.9142 19.4142 22.25 19 22.25H11C10.5858 22.25 10.25 21.9142 10.25 21.5V21C10.25 20.8619 10.1381 20.75 10 20.75H8.00001C6.48122 20.75 5.25001 19.5188 5.25001 18V17C5.25001 16.8619 5.13808 16.75 5.00001 16.75H3.50001C3.26293 16.75 3.03981 16.6379 2.89829 16.4477C2.75677 16.2575 2.71351 16.0116 2.78164 15.7845L4.24063 10.9212C4.24732 10.8989 4.25084 10.8756 4.25123 10.8523C4.32234 6.55559 7.4905 3.01236 11.6202 2.35817ZM15.25 2.75C13.7635 2.75 12.5295 3.83114 12.2915 5.25H12.25C11.1454 5.25 10.25 6.14543 10.25 7.25C10.25 8.35457 11.1454 9.25 12.25 9.25H17.75C19.1307 9.25 20.25 8.13071 20.25 6.75C20.25 5.40263 19.1841 4.30421 17.8496 4.25195C17.3315 3.35478 16.3621 2.75 15.25 2.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="M12.3298 2.99236C12.4022 3.40019 12.1304 3.78953 11.7225 3.86198C8.32777 4.46503 5.75 7.43221 5.75 10.9999V11.11L4.50802 15.2499H6C6.41421 15.2499 6.75 15.5857 6.75 15.9999V17.9999C6.75 18.6903 7.30964 19.2499 8 19.2499H11C11.4142 19.2499 11.75 19.5857 11.75 19.9999V21.4999C11.75 21.9141 11.4142 22.2499 11 22.2499C10.5858 22.2499 10.25 21.9141 10.25 21.4999V20.7499H8C6.48122 20.7499 5.25 19.5187 5.25 17.9999V16.7499H3.5C3.26292 16.7499 3.0398 16.6378 2.89828 16.4476C2.75676 16.2574 2.71351 16.0115 2.78163 15.7844L4.25071 10.8875C4.30431 6.63018 7.39765 3.10677 11.4602 2.3851C11.868 2.31265 12.2573 2.58453 12.3298 2.99236ZM20.663 8.57515C21.0679 8.48798 21.4669 8.74558 21.554 9.15052C21.6825 9.74734 21.75 10.3662 21.75 10.9999C21.75 13.1146 20.999 15.0555 19.75 16.568V21.4999C19.75 21.9141 19.4142 22.2499 19 22.2499C18.5858 22.2499 18.25 21.9141 18.25 21.4999V16.0079L18.4377 15.7953C19.5661 14.5168 20.25 12.8391 20.25 10.9999C20.25 10.4729 20.1939 9.95992 20.0876 9.46619C20.0004 9.06125 20.258 8.66232 20.663 8.57515ZM15.25 2.75C13.7635 2.75 12.5295 3.83114 12.2915 5.25H12.25C11.1454 5.25 10.25 6.14543 10.25 7.25C10.25 8.35457 11.1454 9.25 12.25 9.25H17.75C19.1307 9.25 20.25 8.13071 20.25 6.75C20.25 5.40263 19.1841 4.30421 17.8496 4.25195C17.3315 3.35478 16.3621 2.75 15.25 2.75ZM13.75 5.75C13.75 4.92157 14.4216 4.25 15.25 4.25C15.9019 4.25 16.4586 4.66633 16.6648 5.24993C16.7708 5.54963 17.0541 5.75 17.372 5.75H17.75C18.3023 5.75 18.75 6.19772 18.75 6.75C18.75 7.30228 18.3023 7.75 17.75 7.75H12.25C11.9739 7.75 11.75 7.52614 11.75 7.25C11.75 6.97386 11.9739 6.75 12.25 6.75H13C13.4142 6.75 13.75 6.41421 13.75 6V5.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="M10.7088 2.26852C7.43637 1.76507 4.43628 3.80423 3.5472 6.80024C3.16317 8.09435 3.56607 9.4072 3.87541 10.4111C4.09888 11.1364 4.28156 11.9281 4.28156 12.5323C4.28156 13.1365 4.09888 13.9281 3.87541 14.6534L3.85702 14.713C3.78223 14.9555 4.06464 15.1298 4.24404 14.9504L7.13358 12.0609C7.25028 11.9442 7.19679 11.7501 7.03176 11.7501C6.61755 11.7501 6.28176 11.4143 6.28176 11.0001V9.23148C6.28176 7.08436 8.23849 5.46914 10.3467 5.87599C11.0185 6.00563 11.6034 6.32237 12.0606 6.76025C12.1642 6.85954 12.3296 6.86487 12.4311 6.76337L14.5202 4.67424C14.6116 4.58288 14.6187 4.43659 14.5326 4.34022C13.5768 3.26978 12.256 2.50655 10.7088 2.26852ZM15.9135 10.4596C15.9255 10.4188 15.8758 10.3898 15.8457 10.4199L5.71746 20.5481C5.60833 20.6572 5.62302 20.8385 5.75324 20.9214C6.57804 21.446 7.55711 21.7501 8.60759 21.7501C10.9703 21.7501 13.0505 20.1935 13.7172 17.9269L15.9135 10.4596ZM11.0203 8.17413C11.1112 8.08322 11.1195 7.93676 11.0269 7.84764C10.77 7.60057 10.4408 7.42182 10.0625 7.34882C8.87962 7.12055 7.78176 8.02679 7.78176 9.23148V10.1645C7.78176 10.2764 7.85652 10.3735 7.9618 10.4113C8.09242 10.4583 8.21846 10.5148 8.33907 10.5801C8.44233 10.636 8.5714 10.6231 8.65443 10.54L11.0203 8.17413ZM18.2603 5.53033C18.5532 5.23744 18.5532 4.76256 18.2603 4.46967C17.9674 4.17678 17.4926 4.17678 17.1997 4.46967L2.19967 19.4697C1.90678 19.7626 1.90678 20.2374 2.19967 20.5303C2.49257 20.8232 2.96744 20.8232 3.26033 20.5303L18.2603 5.53033ZM18.7498 16.75H19.9998C20.414 16.75 20.7498 16.4142 20.7498 16C20.7498 15.5858 20.414 15.25 19.9998 15.25H17.9998H15.9998C15.5856 15.25 15.2498 15.5858 15.2498 16C15.2498 16.4142 15.5856 16.75 15.9998 16.75H17.2498V21C17.2498 21.4142 17.5856 21.75 17.9998 21.75C18.414 21.75 18.7498 21.4142 18.7498 21V16.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="M10.729 2.26873C6.82371 1.66792 3.30176 4.68947 3.30176 8.64071C3.30176 9.05492 3.63754 9.39071 4.05176 9.39071C4.46597 9.39071 4.80176 9.05492 4.80176 8.64071C4.80176 5.6088 7.50426 3.29027 10.5009 3.75129C11.776 3.94746 12.8483 4.60656 13.591 5.52425C13.8516 5.84623 14.3238 5.896 14.6458 5.63542C14.9678 5.37483 15.0175 4.90257 14.7569 4.5806C13.7895 3.38522 12.3883 2.524 10.729 2.26873ZM6.30176 9.23165C6.30176 7.08452 8.25848 5.46931 10.3667 5.87616C11.1473 6.02681 11.813 6.43178 12.2952 6.98567C12.5671 7.2981 12.5343 7.77184 12.2219 8.0438C11.9095 8.31576 11.4357 8.28295 11.1638 7.97052C10.8935 7.66002 10.5222 7.43385 10.0825 7.34899C8.89962 7.12071 7.80176 8.02696 7.80176 9.23165V10.354C7.98816 10.4067 8.16672 10.4787 8.33499 10.5676C8.70124 10.7611 8.84129 11.2148 8.64781 11.5811C8.45432 11.9473 8.00057 12.0874 7.63432 11.8939C7.46116 11.8024 7.26365 11.7503 7.05176 11.7503C6.63754 11.7503 6.30176 11.4145 6.30176 11.0003V9.23165ZM15.0808 10.7013C15.4782 10.8182 15.7056 11.2351 15.5887 11.6324L13.7374 17.927C13.0707 20.1936 10.9905 21.7502 8.62778 21.7502C7.52703 21.7502 6.5022 21.4154 5.65233 20.8421C5.30895 20.6104 5.21838 20.1443 5.45003 19.8009C5.68169 19.4575 6.14784 19.3669 6.49122 19.5986C7.10106 20.01 7.83524 20.2502 8.62778 20.2502C10.325 20.2502 11.8194 19.132 12.2984 17.5037L14.1497 11.2092C14.2666 10.8118 14.6834 10.5844 15.0808 10.7013ZM18.2803 4.46984C18.5732 4.76273 18.5732 5.2376 18.2803 5.5305L3.28033 20.5305C2.98744 20.8234 2.51256 20.8234 2.21967 20.5305C1.92678 20.2376 1.92678 19.7627 2.21967 19.4698L17.2197 4.46984C17.5126 4.17694 17.9874 4.17694 18.2803 4.46984ZM15.25 16C15.25 15.5858 15.5858 15.25 16 15.25H20C20.4142 15.25 20.75 15.5858 20.75 16C20.75 16.4142 20.4142 16.75 20 16.75H18.75V21C18.75 21.4142 18.4142 21.75 18 21.75C17.5858 21.75 17.25 21.4142 17.25 21V16.75H16C15.5858 16.75 15.25 16.4142 15.25 16Z" 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.54718 6.80024C4.43625 3.80423 7.43635 1.76507 10.7088 2.26852C12.256 2.50655 13.5768 3.26978 14.5326 4.34022C14.6187 4.43659 14.6116 4.58288 14.5202 4.67424L12.4311 6.76337C12.3296 6.86487 12.1642 6.85954 12.0605 6.76025C11.6034 6.32237 11.0184 6.00563 10.3467 5.87599C8.23846 5.46914 6.28174 7.08436 6.28174 9.23148V11.0001C6.28174 11.4143 6.61752 11.7501 7.03174 11.7501C7.19677 11.7501 7.25025 11.9442 7.13356 12.0609L4.24402 14.9504C4.06462 15.1298 3.7822 14.9555 3.857 14.713L3.87538 14.6534C4.09886 13.9281 4.28153 13.1365 4.28153 12.5323C4.28153 11.9281 4.09886 11.1364 3.87538 10.4111C3.56605 9.4072 3.16315 8.09435 3.54718 6.80024ZM15.8456 10.4199C15.8757 10.3898 15.9255 10.4188 15.9134 10.4596L13.7172 17.9269C13.0505 20.1935 10.9702 21.7501 8.60757 21.7501C7.55709 21.7501 6.57802 21.446 5.75321 20.9214C5.62299 20.8385 5.60831 20.6572 5.71744 20.5481L15.8456 10.4199ZM11.0269 7.84764C11.1195 7.93676 11.1112 8.08322 11.0203 8.17413L8.65441 10.54C8.57138 10.6231 8.44231 10.636 8.33905 10.5801C8.21844 10.5148 8.0924 10.4583 7.96177 10.4113C7.8565 10.3735 7.78174 10.2764 7.78174 10.1645V9.23148C7.78174 8.02679 8.8796 7.12055 10.0625 7.34882C10.4407 7.42182 10.77 7.60057 11.0269 7.84764ZM18.2603 4.46967C18.5532 4.76256 18.5532 5.23744 18.2603 5.53033L3.26031 20.5303C2.96742 20.8232 2.49254 20.8232 2.19965 20.5303C1.90676 20.2374 1.90676 19.7626 2.19965 19.4697L17.1997 4.46967C17.4925 4.17678 17.9674 4.17678 18.2603 4.46967ZM18.75 21C18.75 20.5858 18.4142 20.25 18 20.25C17.5858 20.25 17.25 20.5858 17.25 21V21.05C17.25 21.4642 17.5858 21.8 18 21.8C18.4142 21.8 18.75 21.4642 18.75 21.05V21ZM18.0001 19.25C17.7176 19.25 17.459 19.3428 17.2501 19.4999C16.919 19.7488 16.4488 19.6822 16.1999 19.3511C15.951 19.02 16.0176 18.5498 16.3487 18.3009C16.8085 17.9552 17.3814 17.75 18.0001 17.75C18.6187 17.75 19.1916 17.9552 19.6514 18.3009C19.9825 18.5498 20.0491 19.02 19.8002 19.3511C19.5513 19.6822 19.0811 19.7488 18.7501 19.4999C18.5411 19.3428 18.2825 19.25 18.0001 19.25ZM16.051 17.3991C16.594 16.9913 17.2678 16.75 18.0001 16.75C18.7325 16.75 19.4063 16.9913 19.9493 17.3991C20.2805 17.6478 20.7507 17.5809 20.9994 17.2497C21.2481 16.9185 21.1812 16.4483 20.85 16.1996C20.0562 15.6035 19.0684 15.25 18.0001 15.25C16.9319 15.25 15.9441 15.6035 15.1503 16.1996C14.8191 16.4483 14.7522 16.9185 15.0009 17.2497C15.2496 17.5809 15.7197 17.6478 16.051 17.3991Z" 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="M10.729 2.26873C6.82371 1.66792 3.30176 4.68947 3.30176 8.64071C3.30176 9.05492 3.63754 9.39071 4.05176 9.39071C4.46597 9.39071 4.80176 9.05492 4.80176 8.64071C4.80176 5.6088 7.50426 3.29027 10.5009 3.75129C11.776 3.94746 12.8483 4.60656 13.591 5.52425C13.8516 5.84623 14.3238 5.896 14.6458 5.63542C14.9678 5.37483 15.0175 4.90257 14.7569 4.5806C13.7895 3.38522 12.3883 2.524 10.729 2.26873ZM6.30176 9.23165C6.30176 7.08452 8.25848 5.46931 10.3667 5.87616C11.1473 6.02681 11.813 6.43178 12.2952 6.98567C12.5671 7.2981 12.5343 7.77184 12.2219 8.0438C11.9095 8.31576 11.4357 8.28295 11.1638 7.97052C10.8935 7.66002 10.5222 7.43385 10.0825 7.34899C8.89962 7.12071 7.80176 8.02696 7.80176 9.23165V10.354C7.98816 10.4067 8.16672 10.4787 8.33499 10.5676C8.70124 10.7611 8.84129 11.2148 8.64781 11.5811C8.45432 11.9473 8.00057 12.0874 7.63432 11.8939C7.46116 11.8024 7.26365 11.7503 7.05176 11.7503C6.63754 11.7503 6.30176 11.4145 6.30176 11.0003V9.23165ZM15.0808 10.7013C15.4782 10.8182 15.7056 11.2351 15.5887 11.6324L13.7374 17.927C13.0707 20.1936 10.9905 21.7502 8.62778 21.7502C7.52703 21.7502 6.5022 21.4154 5.65233 20.8421C5.30895 20.6104 5.21838 20.1443 5.45003 19.8009C5.68169 19.4575 6.14784 19.3669 6.49122 19.5986C7.10106 20.01 7.83524 20.2502 8.62778 20.2502C10.325 20.2502 11.8194 19.132 12.2984 17.5037L14.1497 11.2092C14.2666 10.8118 14.6834 10.5844 15.0808 10.7013ZM18.2803 4.46984C18.5732 4.76273 18.5732 5.2376 18.2803 5.5305L3.28033 20.5305C2.98744 20.8234 2.51256 20.8234 2.21967 20.5305C1.92678 20.2376 1.92678 19.7627 2.21967 19.4698L17.2197 4.46984C17.5126 4.17694 17.9874 4.17694 18.2803 4.46984ZM18.75 21C18.75 20.5858 18.4142 20.25 18 20.25C17.5858 20.25 17.25 20.5858 17.25 21V21.05C17.25 21.4642 17.5858 21.8 18 21.8C18.4142 21.8 18.75 21.4642 18.75 21.05V21ZM18 19.25C17.7176 19.25 17.4589 19.3428 17.25 19.4999C16.9189 19.7488 16.4487 19.6822 16.1998 19.3511C15.9509 19.02 16.0175 18.5498 16.3486 18.3009C16.8085 17.9552 17.3814 17.75 18 17.75C18.6187 17.75 19.1916 17.9552 19.6514 18.3009C19.9825 18.5498 20.0491 19.02 19.8002 19.3511C19.5513 19.6822 19.0811 19.7488 18.75 19.4999C18.5411 19.3428 18.2825 19.25 18 19.25ZM16.0509 17.3991C16.594 16.9913 17.2678 16.75 18.0001 16.75C18.7324 16.75 19.4062 16.9913 19.9493 17.3991C20.2805 17.6478 20.7506 17.5809 20.9994 17.2497C21.2481 16.9185 21.1812 16.4483 20.85 16.1996C20.0561 15.6035 19.0683 15.25 18.0001 15.25C16.9319 15.25 15.9441 15.6035 15.1502 16.1996C14.819 16.4483 14.7521 16.9185 15.0008 17.2497C15.2496 17.5809 15.7197 17.6478 16.0509 17.3991Z" 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.4169 20H12.2229C12.0763 20 11.9317 19.9659 11.8006 19.9003L8 18L6.75 18V8.15629L9.33752 5.24533C9.73005 4.80373 10.367 4.67437 10.9007 4.92788C11.7006 5.3078 11.912 6.34903 11.3237 7.01085L13.3917 4.68436C13.7607 4.26921 14.3417 4.11392 14.8686 4.28957C15.8478 4.61598 16.1412 5.8588 15.4114 6.58868L14 8.00004L17.6217 5.82704C18.3445 5.39332 19.2839 5.70976 19.597 6.49248C19.8331 7.0827 19.6318 7.7578 19.111 8.12234L15 11L17.0489 11.2561C18.21 11.4013 19.1424 12.2834 19.3517 13.4346L19.7291 15.5103C19.8781 16.3295 19.3277 17.1121 18.5064 17.249C17.6802 17.3867 16.9025 16.8174 16.784 15.9882L16.5437 14.3057C16.518 14.1262 16.3732 13.9874 16.1928 13.9693L12.5995 13.61C12.0108 13.5511 11.5 14.0134 11.5 14.605V15.5945C11.5 16.11 11.8876 16.5431 12.4 16.6L14.5917 16.8436C15.3935 16.9326 16 17.6103 16 18.417C16 19.2913 15.2912 20 14.4169 20ZM5.25 9.00003L3.50001 9.00001C3.22386 9 3 9.22386 3 9.50001V17.5C3 17.7761 3.22386 18 3.5 18L5.25 18V9.00003Z" 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="M5.66323 8.25L8.77696 4.74706C9.39106 4.0562 10.3876 3.85382 11.2225 4.25042C11.2459 4.26155 11.2691 4.27304 11.2918 4.28489C11.6336 4.46255 11.9022 4.71942 12.0904 5.01943L12.8312 4.18608C13.3995 3.5467 14.2942 3.30753 15.1058 3.57806C15.1635 3.5973 15.2197 3.61861 15.2743 3.64187C16.0933 3.99069 16.5576 4.77699 16.5688 5.58413L17.2358 5.18392C18.3547 4.51257 19.8087 5.00239 20.2933 6.21393C20.339 6.32813 20.3741 6.44439 20.399 6.56149C20.5732 7.38126 20.2464 8.24303 19.5411 8.73677L17.0259 10.4974L17.1419 10.5119C17.2348 10.5236 17.3266 10.5388 17.417 10.5577C18.7737 10.8402 19.8385 11.9189 20.0896 13.3004L20.467 15.3761C20.481 15.453 20.4909 15.5298 20.4968 15.606C20.5859 16.7503 19.7867 17.7959 18.6297 17.9888C18.5521 18.0017 18.4748 18.0105 18.398 18.0153C17.246 18.0872 16.2084 17.2624 16.0416 16.0943L15.8406 14.6878L12.5249 14.3563C12.3777 14.3415 12.25 14.4571 12.25 14.605V15.5945C12.25 15.6028 12.2504 15.6111 12.2512 15.6192C12.2627 15.7415 12.3586 15.8408 12.4828 15.8546L14.6746 16.0981C14.8223 16.1146 14.9655 16.1445 15.103 16.1867C16.0656 16.4821 16.75 17.3767 16.75 18.417C16.75 18.4975 16.7459 18.5771 16.738 18.6555C16.6185 19.832 15.6249 20.75 14.4169 20.75H12.2229C11.9599 20.75 11.7005 20.6888 11.4652 20.5712C11.4652 20.5712 11.4652 20.5712 11.4652 20.5712L7.82295 18.75L3.5 18.75C3.13823 18.75 2.83628 18.4939 2.76563 18.153C2.75791 18.1158 2.75295 18.0776 2.75098 18.0386C2.75033 18.0258 2.75 18.0129 2.75 18V9C2.75 8.98398 2.7505 8.96808 2.75149 8.95231C2.7545 8.90437 2.76201 8.85765 2.77361 8.81256C2.85685 8.48905 3.15051 8.25 3.5 8.25H5.66323ZM13.9523 5.18263C14.122 4.99172 14.3891 4.92031 14.6314 5.00108C14.6877 5.01985 14.7391 5.04519 14.7852 5.07584C15.1081 5.29038 15.1747 5.76467 14.881 6.05835L13.4697 7.46971C13.4362 7.50319 13.4065 7.53913 13.3806 7.57698C13.1994 7.84193 13.2049 8.20036 13.4088 8.4616C13.438 8.49891 13.47 8.53279 13.5044 8.56311C13.7453 8.77536 14.1017 8.81367 14.3859 8.64316L18.0075 6.47016C18.3344 6.27406 18.7591 6.41714 18.9006 6.77102C18.914 6.80438 18.9242 6.83833 18.9315 6.87254C18.9824 7.11199 18.8869 7.3637 18.6809 7.50792L14.5699 10.3856C14.5381 10.4079 14.5085 10.4322 14.4811 10.4585C14.2892 10.6423 14.2067 10.9172 14.2721 11.1806C14.2814 11.2183 14.2935 11.2547 14.3082 11.2897C14.4107 11.5348 14.6376 11.7106 14.907 11.7442L16.9559 12.0004C17.0081 12.0069 17.0597 12.0155 17.1106 12.0261C17.8737 12.185 18.4726 12.7917 18.6138 13.5688L18.9912 15.6444C18.9959 15.6699 18.9991 15.6953 19.0011 15.7205C19.0306 16.0993 18.7661 16.4453 18.3831 16.5092C18.3574 16.5135 18.3318 16.5164 18.3064 16.5179C17.9251 16.5418 17.5817 16.2688 17.5265 15.8821L17.2861 14.1996C17.2117 13.6785 16.7912 13.2754 16.2674 13.223L12.6741 12.8637C11.6439 12.7607 10.75 13.5697 10.75 14.605V15.5945C10.75 15.6506 10.7526 15.7061 10.7578 15.761C10.8352 16.5839 11.4807 17.2525 12.3172 17.3454L14.5089 17.589C14.5617 17.5948 14.6128 17.6055 14.6619 17.6206C15.0056 17.7261 15.25 18.0455 15.25 18.417C15.25 18.4188 15.25 18.4206 15.25 18.4223C15.2471 18.88 14.8752 19.25 14.4169 19.25H12.2229C12.1928 19.25 12.163 19.243 12.136 19.2295L8.33541 17.3292C8.23127 17.2771 8.11643 17.25 8 17.25H6.75V9.28519L9.89807 5.7436C10.069 5.55126 10.3465 5.49492 10.5789 5.60534C10.6225 5.62602 10.662 5.65121 10.6974 5.68001C10.9449 5.88161 10.9874 6.26035 10.7632 6.51257L9.43944 8.00176C9.40504 8.04046 9.37538 8.08173 9.35041 8.12486C9.17563 8.42676 9.23084 8.8198 9.50173 9.06059C9.54043 9.09499 9.58169 9.12465 9.62482 9.14962C9.92672 9.32441 10.3198 9.2692 10.5606 8.99831L13.9523 5.18263ZM4.25 17.25V9.75H5.25V17.25H4.25Z" 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="M18.5844 14.7912C19.3393 14.5414 20.1228 14.9559 20.3986 15.6855C20.6701 16.4038 20.3808 17.2399 19.6914 17.5992L14.4129 20.3491C14.2225 20.4482 14.0112 20.4998 13.7963 20.4999L4.99953 20.4998C4.17132 20.4995 3.49981 19.8281 3.49981 18.9999L3.50023 16.2369C3.50043 14.4184 4.95036 12.9776 6.65554 12.9775C6.91032 12.9774 7.23978 12.9014 7.53153 12.8111C7.67146 12.7678 7.79281 12.7243 7.87876 12.6919C7.92113 12.6758 7.95468 12.6622 7.97706 12.6531C7.98825 12.6486 7.99795 12.6459 8.00318 12.6437C8.00554 12.6427 8.00826 12.6408 8.00826 12.6408L8.02277 12.6346L10.6858 11.5967C11.4507 11.2988 12.2751 11.7089 12.5595 12.4612C12.8226 13.1576 12.5564 13.9679 11.9018 14.3396L9.93257 15.4562C9.76392 15.5521 9.69634 15.7362 9.74331 15.9331C9.79018 16.128 9.92379 16.2387 10.0968 16.2387L14.213 16.2393L18.5844 14.7912ZM9.93845 2.8492C10.8711 3.3393 11.4661 4.38548 10.9771 5.3494L10.5589 6.17385C10.5076 6.2753 10.4931 6.39152 10.5165 6.50278L10.7441 7.58248L10.7442 7.58466C10.8546 8.12412 10.8939 8.56658 10.8426 8.95431C10.7893 9.35687 10.6426 9.67172 10.4357 9.96052C10.3689 10.0537 10.2945 10.1323 10.2272 10.197C10.22 10.2043 10.218 10.2165 10.2224 10.2258L10.5273 10.8594C10.4895 10.8718 10.451 10.8835 10.4133 10.8982L7.75111 11.9356L7.73189 11.9433L7.71484 11.9509C7.71163 11.9523 7.70559 11.9543 7.69731 11.9577C7.67957 11.9648 7.6506 11.9762 7.61351 11.9902C7.53846 12.0186 7.43181 12.0569 7.30958 12.0947C7.03658 12.1791 6.79481 12.2275 6.65559 12.2276C6.15415 12.2276 5.67265 12.3272 5.22945 12.5074L5.22951 10.5622C5.22953 10.2648 5.28224 9.96922 5.38588 9.69048L6.80643 5.86968C6.88372 5.662 6.98908 5.46502 7.11827 5.28482C7.46242 4.80504 8.28999 3.65146 8.69986 3.0828L8.76312 3.00681C8.91546 2.84207 9.11763 2.7605 9.29984 2.73527C9.51129 2.70607 9.73768 2.74382 9.93845 2.8492ZM21.5212 6.28807C21.734 6.65678 21.824 7.11092 21.7204 7.55892C21.6145 8.01676 21.3157 8.42746 20.8265 8.70987L15.2422 11.934L15.1829 11.966C15.5703 12.2526 16.105 12.3015 16.5492 12.0454L21.2015 9.35939C21.3 9.30253 21.3924 9.23884 21.4809 9.1733C21.6774 9.32102 21.8403 9.50681 21.9596 9.71334C22.1724 10.082 22.2629 10.537 22.1593 10.985C22.0532 11.4427 21.7539 11.8528 21.2649 12.1351L17.2917 14.4291L14.0901 15.4893L11.395 15.4892L12.2708 14.9925C13.2021 14.4645 13.5977 13.3686 13.3243 12.3895L13.2611 12.196L13.1727 11.9921C12.8161 11.2713 12.0998 10.7919 11.3088 10.7521L11.0989 10.3162C11.3381 9.96234 11.5188 9.5572 11.5857 9.0519C11.6525 8.54614 11.5975 8.01127 11.4794 7.43421L11.4777 7.42731L11.2827 6.50361L16.017 3.77021C16.5061 3.488 17.0114 3.43444 17.4607 3.57155C17.9003 3.70589 18.2489 4.01095 18.4617 4.3795C18.6745 4.74813 18.7644 5.20246 18.6609 5.65035C18.555 6.10808 18.256 6.51888 17.767 6.8013L13.8327 9.07278L13.7764 9.1256C14.1624 9.40115 14.6877 9.44515 15.1253 9.19251L18.142 7.45082C18.7965 7.07284 19.2357 6.49516 19.3921 5.81909C19.4158 5.71654 19.4301 5.61353 19.4402 5.5117C19.8113 5.38209 20.1815 5.37687 20.5202 5.48012C20.9599 5.61438 21.3083 5.91954 21.5212 6.28807Z" 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="M10.5947 11.3638C11.498 11.0119 12.4627 11.4993 12.793 12.3726C13.0975 13.1785 12.7922 14.1218 12.0244 14.5572L10.0557 15.6724C10.0155 15.6953 9.99948 15.7196 9.99023 15.7437C9.97834 15.7751 9.97418 15.8223 9.98633 15.8736C9.99857 15.9249 10.0215 15.9573 10.0371 15.9713C10.0458 15.9789 10.0587 15.9888 10.0967 15.9888H14.1709L18.5059 14.5533C19.3965 14.2586 20.3128 14.751 20.6328 15.5972C20.9463 16.4273 20.6145 17.3999 19.8066 17.8209L14.5283 20.5699C14.3025 20.6874 14.0517 20.7496 13.7959 20.7496H5C4.0335 20.7496 3.25 19.9661 3.25 18.9996V16.2369C3.25023 14.285 4.80746 12.7272 6.65527 12.7271C6.87151 12.7271 7.17144 12.6602 7.45703 12.5718C7.59109 12.5304 7.70769 12.4887 7.79004 12.4576C7.83096 12.4421 7.86393 12.4299 7.88477 12.4215C7.89499 12.4173 7.90276 12.4135 7.90723 12.4117C7.90914 12.4109 7.91048 12.41 7.91113 12.4097L7.92188 12.4058L7.93164 12.4019L10.5947 11.3638ZM11.1396 12.7613L8.47656 13.7994C8.46853 13.8027 8.45837 13.8072 8.44629 13.8121C8.4162 13.8242 8.37352 13.8412 8.32129 13.8609C8.217 13.9003 8.07028 13.9529 7.90039 14.0054C7.57749 14.1053 7.10274 14.2271 6.65527 14.2271C5.66333 14.2272 4.75022 15.0857 4.75 16.2369V18.9996C4.75 19.1376 4.86193 19.2496 5 19.2496H13.7959C13.8078 19.2496 13.8216 19.2463 13.8359 19.2388L19.1133 16.4908C19.2106 16.44 19.2894 16.2867 19.2295 16.1275C19.1743 15.9818 19.0534 15.9532 18.9775 15.9781L14.5293 17.4507L14.415 17.4888H10.0967C9.23163 17.4888 8.68021 16.8622 8.52734 16.2222C8.37531 15.5844 8.57897 14.7858 9.31641 14.3677L11.2842 13.2525C11.3759 13.2004 11.4464 13.0532 11.3896 12.9029C11.362 12.83 11.3154 12.7868 11.2715 12.7662C11.2287 12.7461 11.1842 12.744 11.1396 12.7613ZM9.26562 2.48786C9.49583 2.45609 9.73831 2.48814 9.96094 2.58356L10.0557 2.62751L10.2402 2.73395C11.1433 3.30172 11.7383 4.40166 11.2012 5.46149L10.7822 6.28571C10.7565 6.33642 10.7491 6.39509 10.7607 6.45075L10.7725 6.50837L15.8916 3.55426C16.4359 3.24003 17.0123 3.17366 17.5332 3.33258C18.0396 3.48721 18.4365 3.83674 18.6777 4.25446C18.7689 4.41232 18.8393 4.58513 18.8867 4.76618C19.2958 4.62957 19.7098 4.62366 20.0938 4.74079C20.6002 4.89545 20.9971 5.24583 21.2383 5.66364C21.4794 6.08144 21.5842 6.59993 21.4648 7.11579C21.3743 7.50671 21.1615 7.86111 20.8389 8.14704C20.9722 8.27874 21.0864 8.42646 21.1777 8.58454C21.419 9.0024 21.5237 9.52166 21.4043 10.0377C21.2814 10.5681 20.9358 11.034 20.3916 11.3482L16.1914 13.773C15.8327 13.9799 15.3741 13.8572 15.167 13.4986C14.96 13.14 15.083 12.6814 15.4414 12.4742L19.6416 10.0494C19.855 9.92618 19.9216 9.7928 19.9434 9.6988C19.9684 9.59016 19.9501 9.45782 19.8789 9.33454C19.8077 9.21133 19.7023 9.12887 19.5957 9.09626C19.5034 9.06815 19.3548 9.06009 19.1416 9.18317L14.8721 11.648C14.5134 11.8549 14.0547 11.7322 13.8477 11.3736C13.6406 11.015 13.7637 10.5564 14.1221 10.3492L15.3633 9.63239L19.7021 7.12751C19.9155 7.0043 19.9822 6.87093 20.0039 6.77692C20.0288 6.66847 20.0104 6.5367 19.9395 6.41364C19.8683 6.29035 19.7628 6.20799 19.6562 6.17536C19.564 6.14719 19.4155 6.13815 19.2021 6.2613L14.8613 8.76813C14.859 8.76948 14.8559 8.76974 14.8535 8.77106L13.9062 9.31891C13.5476 9.52575 13.0889 9.40305 12.8818 9.0445C12.6748 8.68591 12.7978 8.2273 13.1562 8.02008L14.1055 7.47126C14.1072 7.47024 14.1096 7.46933 14.1113 7.46833L17.1436 5.71735C17.3553 5.59449 17.4217 5.46241 17.4434 5.36872C17.4684 5.26008 17.4501 5.12775 17.3789 5.00446C17.3077 4.88124 17.2023 4.79879 17.0957 4.76618C17.0034 4.73807 16.8548 4.73001 16.6416 4.85309L11.0752 8.06598C11.1146 8.3802 11.1261 8.66721 11.0957 8.9361C11.0466 9.37027 10.9008 9.71868 10.6885 10.0338C10.5791 10.196 10.4547 10.3262 10.3535 10.4234L10.127 10.6412C9.82827 10.9277 9.35327 10.9182 9.06641 10.6197C8.77941 10.321 8.78922 9.84517 9.08789 9.55817L9.31348 9.34235C9.38307 9.27548 9.42215 9.23013 9.44531 9.19587C9.53667 9.06024 9.58619 8.93758 9.60547 8.76715C9.62699 8.57617 9.61341 8.29473 9.52051 7.83942L9.29297 6.76032C9.21077 6.37017 9.264 5.96358 9.44434 5.60798L9.86328 4.78376C9.90734 4.69666 9.91877 4.58229 9.85254 4.43512C9.79982 4.31816 9.6963 4.18429 9.5332 4.06501C9.09621 4.67236 8.43288 5.59628 8.13379 6.01325C8.0694 6.10308 8.01814 6.20148 7.97949 6.30524L6.55664 10.1265C6.50489 10.2658 6.47852 10.4135 6.47852 10.5621V10.9996C6.47852 11.4138 6.14273 11.7506 5.72852 11.7506C5.31464 11.7504 4.97979 11.4144 4.97949 11.0006V10.5621C4.97953 10.2349 5.03731 9.90975 5.15137 9.60309L6.57324 5.7818C6.6583 5.55334 6.77382 5.33748 6.91602 5.13923C7.26019 4.65941 8.08809 3.50487 8.49805 2.9361L8.5791 2.83649C8.77843 2.62061 9.03966 2.51918 9.26562 2.48786Z" 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="M16.25 6C16.25 5.58579 16.5858 5.25 17 5.25H21C21.4142 5.25 21.75 5.58579 21.75 6C21.75 6.41421 21.4142 6.75 21 6.75H17.75V10C17.75 10.4142 17.4142 10.75 17 10.75H12.75V14C12.75 14.4142 12.4142 14.75 12 14.75H7.75V18C7.75 18.4142 7.41421 18.75 7 18.75H3C2.58579 18.75 2.25 18.4142 2.25 18C2.25 17.5858 2.58579 17.25 3 17.25H6.25V14C6.25 13.5858 6.58579 13.25 7 13.25H11.25V10C11.25 9.58579 11.5858 9.25 12 9.25H16.25V6Z" 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="M4.25 4C4.25 3.58579 4.58579 3.25 5 3.25H7C7.41421 3.25 7.75 3.58579 7.75 4V8.25H14C15.5188 8.25 16.75 9.48122 16.75 11V13.25H20C20.4142 13.25 20.75 13.5858 20.75 14C20.75 14.4142 20.4142 14.75 20 14.75H16C15.5858 14.75 15.25 14.4142 15.25 14V11C15.25 10.3096 14.6904 9.75 14 9.75H7C6.58579 9.75 6.25 9.41421 6.25 9V4.75H5C4.58579 4.75 4.25 4.41421 4.25 4ZM2.75 16C2.75 13.1005 5.10051 10.75 8 10.75C10.8995 10.75 13.25 13.1005 13.25 16C13.25 18.8995 10.8995 21.25 8 21.25C5.10051 21.25 2.75 18.8995 2.75 16ZM17.5 15.75C15.9812 15.75 14.75 16.9812 14.75 18.5C14.75 20.0188 15.9812 21.25 17.5 21.25C19.0188 21.25 20.25 20.0188 20.25 18.5C20.25 16.9812 19.0188 15.75 17.5 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="M4.25 4C4.25 3.58579 4.58579 3.25 5 3.25H7C7.41421 3.25 7.75 3.58579 7.75 4V8.25H14C15.5188 8.25 16.75 9.48122 16.75 11V13.25H20C20.4142 13.25 20.75 13.5858 20.75 14C20.75 14.4142 20.4142 14.75 20 14.75H16C15.5858 14.75 15.25 14.4142 15.25 14V11C15.25 10.3096 14.6904 9.75 14 9.75H7C6.58579 9.75 6.25 9.41421 6.25 9V4.75H5C4.58579 4.75 4.25 4.41421 4.25 4ZM8 12.25C5.92893 12.25 4.25 13.9289 4.25 16C4.25 18.0711 5.92893 19.75 8 19.75C10.0711 19.75 11.75 18.0711 11.75 16C11.75 13.9289 10.0711 12.25 8 12.25ZM2.75 16C2.75 13.1005 5.10051 10.75 8 10.75C10.8995 10.75 13.25 13.1005 13.25 16C13.25 18.8995 10.8995 21.25 8 21.25C5.10051 21.25 2.75 18.8995 2.75 16ZM16.25 18.5C16.25 17.8096 16.8096 17.25 17.5 17.25C18.1904 17.25 18.75 17.8096 18.75 18.5C18.75 19.1904 18.1904 19.75 17.5 19.75C16.8096 19.75 16.25 19.1904 16.25 18.5ZM17.5 15.75C15.9812 15.75 14.75 16.9812 14.75 18.5C14.75 20.0188 15.9812 21.25 17.5 21.25C19.0188 21.25 20.25 20.0188 20.25 18.5C20.25 16.9812 19.0188 15.75 17.5 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 d="M18.7463 7.25C17.2522 5.1318 14.787 3.75 12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 11.5858 20.5858 11.25 21 11.25C21.4142 11.25 21.75 11.5858 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C15.1606 2.25 17.969 3.75399 19.75 6.08327V3.5C19.75 3.08579 20.0858 2.75 20.5 2.75C20.9142 2.75 21.25 3.08579 21.25 3.5V8C21.25 8.41421 20.9142 8.75 20.5 8.75H16C15.5858 8.75 15.25 8.41421 15.25 8C15.25 7.58579 15.5858 7.25 16 7.25H18.7463Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|