@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="M17 3.25C17.4142 3.25 17.75 3.58579 17.75 4V16.25H20C20.4142 16.25 20.75 16.5858 20.75 17C20.75 17.2801 20.5965 17.5243 20.369 17.6531L21.1964 19.7215C21.2888 19.9525 21.2606 20.2144 21.1211 20.4205C20.9815 20.6266 20.7489 20.75 20.5 20.75H13.5C13.2511 20.75 13.0185 20.6266 12.879 20.4205C12.7394 20.2144 12.7112 19.9525 12.8036 19.7215L13.631 17.6531C13.4035 17.5243 13.25 17.2801 13.25 17C13.25 16.5858 13.5858 16.25 14 16.25H16.25V4C16.25 3.58579 16.5858 3.25 17 3.25ZM10.2364 20.7118C10.5062 20.6222 10.7021 20.3876 10.7423 20.1062L11.6709 13.6062C11.6897 13.4744 11.6731 13.3401 11.6229 13.2169C11.4799 12.8663 11.1997 12.6223 10.9401 12.4567C10.6695 12.2842 10.3445 12.1479 9.99844 12.0418C9.30423 11.8289 8.43086 11.709 7.50012 11.709C6.56938 11.709 5.6959 11.8289 5.00159 12.0417C4.65544 12.1478 4.33047 12.2841 4.05978 12.4567C3.80015 12.6222 3.51985 12.8662 3.37684 13.2169C3.32658 13.3401 3.31001 13.4744 3.32883 13.6062L4.2574 20.1062C4.29761 20.3876 4.49351 20.6222 4.76331 20.7118L4.83957 20.7365C4.88617 20.7512 4.95277 20.772 5.03539 20.7967C5.20027 20.8461 5.43083 20.9118 5.69478 20.9778C6.20551 21.1053 6.90511 21.2501 7.49986 21.2501C8.09462 21.2501 8.79421 21.1053 9.30494 20.9778C9.56889 20.9118 9.79945 20.8461 9.96433 20.7967C10.047 20.772 10.1136 20.7512 10.1601 20.7365L10.2364 20.7118ZM5.65481 13.4162C5.56187 13.4398 5.56187 13.5604 5.65481 13.5841C6.15358 13.7107 6.79134 13.7912 7.4998 13.7912C8.21802 13.7912 8.86359 13.7085 9.36534 13.5788C9.4517 13.5565 9.4517 13.4437 9.36534 13.4214C8.86367 13.2917 8.21821 13.209 7.50004 13.209C6.79152 13.209 6.15366 13.2895 5.65481 13.4162Z" 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="M17.75 4C17.75 3.58579 17.4142 3.25 17 3.25C16.5858 3.25 16.25 3.58579 16.25 4V16.25H14C13.5858 16.25 13.25 16.5858 13.25 17C13.25 17.2801 13.4035 17.5243 13.631 17.6531L12.8036 19.7215C12.7112 19.9525 12.7394 20.2144 12.879 20.4205C13.0185 20.6266 13.2511 20.75 13.5 20.75H20.5C20.7489 20.75 20.9815 20.6266 21.1211 20.4205C21.2606 20.2144 21.2888 19.9525 21.1964 19.7215L20.369 17.6531C20.5965 17.5243 20.75 17.2801 20.75 17C20.75 16.5858 20.4142 16.25 20 16.25H17.75V4ZM15.1964 17.7785C15.2002 17.7691 15.2037 17.7595 15.2071 17.75H18.7929C18.7963 17.7595 18.7999 17.7691 18.8036 17.7785L19.3922 19.25H14.6078L15.1964 17.7785ZM11.6525 13.6969C11.6943 13.5434 11.6879 13.3754 11.6232 13.2167C11.4802 12.8661 11.1999 12.6221 10.9403 12.4566C10.6696 12.284 10.3447 12.1477 9.99857 12.0416C9.30431 11.8288 8.43088 11.7089 7.50014 11.7089C6.5694 11.7089 5.69597 11.8288 5.0017 12.0416C4.65558 12.1477 4.33063 12.284 4.05997 12.4566C3.80035 12.6221 3.52009 12.8661 3.37709 13.2167C3.31266 13.3747 3.306 13.5419 3.34725 13.6948C3.34784 13.7254 3.3503 13.7563 3.35474 13.7874L4.25741 20.1061C4.29909 20.3978 4.50872 20.6283 4.78507 20.7188L4.83959 20.7363C4.88618 20.7511 4.95278 20.7719 5.03541 20.7966C5.20029 20.846 5.43085 20.9117 5.69479 20.9776C6.20553 21.1052 6.90512 21.25 7.49988 21.25C8.09463 21.25 8.79422 21.1052 9.30496 20.9776C9.5689 20.9117 9.79946 20.846 9.96434 20.7966C10.047 20.7719 10.1136 20.7511 10.1602 20.7363L10.2147 20.7188L10.2298 20.7139L10.2342 20.7124L10.2364 20.7117C10.5062 20.622 10.7021 20.3875 10.7423 20.1061L11.645 13.7874C11.6493 13.757 11.6518 13.7268 11.6525 13.6969ZM5.69159 13.5931C5.57054 13.5633 5.46185 13.5319 5.36495 13.5C5.3897 13.4919 5.41516 13.4838 5.44135 13.4757C5.96513 13.3152 6.68595 13.2089 7.50014 13.2089C8.31433 13.2089 9.03514 13.3152 9.55892 13.4757C9.58502 13.4838 9.61041 13.4918 9.63508 13.4999C9.53812 13.5319 9.42935 13.5633 9.3082 13.5931C8.81229 13.7152 8.18791 13.7911 7.49989 13.7911C6.81187 13.7911 6.18749 13.7152 5.69159 13.5931ZM5.03888 14.9697L5.67468 19.4203C5.78819 19.4523 5.91815 19.4874 6.05822 19.5223C6.54858 19.6448 7.09898 19.75 7.49988 19.75C7.90077 19.75 8.45117 19.6448 8.94153 19.5223C9.0816 19.4874 9.21156 19.4523 9.32507 19.4203L9.96087 14.9697C9.86379 14.9987 9.76547 15.0253 9.6667 15.0496C9.0374 15.2045 8.29096 15.2911 7.49989 15.2911C6.70882 15.2911 5.96238 15.2045 5.33309 15.0496C5.2343 15.0253 5.13597 14.9987 5.03888 14.9697Z" 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.0335 5.0335 2.25 6 2.25H18C18.9665 2.25 19.75 3.0335 19.75 4V20C19.75 20.9665 18.9665 21.75 18 21.75H6C5.0335 21.75 4.25 20.9665 4.25 20V4ZM8 11C8 10.4477 8.44772 10 9 10C9.55228 10 10 10.4477 10 11C10 11.5523 9.55228 12 9 12C8.44772 12 8 11.5523 8 11ZM9 13C8.44772 13 8 13.4477 8 14C8 14.5523 8.44772 15 9 15C9.55228 15 10 14.5523 10 14C10 13.4477 9.55228 13 9 13ZM8 17C8 16.4477 8.44772 16 9 16C9.55228 16 10 16.4477 10 17C10 17.5523 9.55228 18 9 18C8.44772 18 8 17.5523 8 17ZM12 10C11.4477 10 11 10.4477 11 11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11C13 10.4477 12.5523 10 12 10ZM11 14C11 13.4477 11.4477 13 12 13C12.5523 13 13 13.4477 13 14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14ZM12 16C11.4477 16 11 16.4477 11 17C11 17.5523 11.4477 18 12 18C12.5523 18 13 17.5523 13 17C13 16.4477 12.5523 16 12 16ZM14 11C14 10.4477 14.4477 10 15 10C15.5523 10 16 10.4477 16 11C16 11.5523 15.5523 12 15 12C14.4477 12 14 11.5523 14 11ZM15 13C14.4477 13 14 13.4477 14 14C14 14.5523 14.4477 15 15 15C15.5523 15 16 14.5523 16 14C16 13.4477 15.5523 13 15 13ZM14 17C14 16.4477 14.4477 16 15 16C15.5523 16 16 16.4477 16 17C16 17.5523 15.5523 18 15 18C14.4477 18 14 17.5523 14 17ZM8.5 6.25C8.08579 6.25 7.75 6.58579 7.75 7C7.75 7.41421 8.08579 7.75 8.5 7.75H15.5C15.9142 7.75 16.25 7.41421 16.25 7C16.25 6.58579 15.9142 6.25 15.5 6.25H8.5Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.25 4C4.25 3.0335 5.0335 2.25 6 2.25H18C18.9665 2.25 19.75 3.0335 19.75 4V20C19.75 20.9665 18.9665 21.75 18 21.75H6C5.0335 21.75 4.25 20.9665 4.25 20V4ZM6 3.75C5.86193 3.75 5.75 3.86193 5.75 4V20C5.75 20.1381 5.86193 20.25 6 20.25H18C18.1381 20.25 18.25 20.1381 18.25 20V4C18.25 3.86193 18.1381 3.75 18 3.75H6ZM8 11C8 10.4477 8.44772 10 9 10C9.55228 10 10 10.4477 10 11C10 11.5523 9.55228 12 9 12C8.44772 12 8 11.5523 8 11ZM9 13C8.44772 13 8 13.4477 8 14C8 14.5523 8.44772 15 9 15C9.55228 15 10 14.5523 10 14C10 13.4477 9.55228 13 9 13ZM8 17C8 16.4477 8.44772 16 9 16C9.55228 16 10 16.4477 10 17C10 17.5523 9.55228 18 9 18C8.44772 18 8 17.5523 8 17ZM12 10C11.4477 10 11 10.4477 11 11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11C13 10.4477 12.5523 10 12 10ZM11 14C11 13.4477 11.4477 13 12 13C12.5523 13 13 13.4477 13 14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14ZM12 16C11.4477 16 11 16.4477 11 17C11 17.5523 11.4477 18 12 18C12.5523 18 13 17.5523 13 17C13 16.4477 12.5523 16 12 16ZM14 11C14 10.4477 14.4477 10 15 10C15.5523 10 16 10.4477 16 11C16 11.5523 15.5523 12 15 12C14.4477 12 14 11.5523 14 11ZM15 13C14.4477 13 14 13.4477 14 14C14 14.5523 14.4477 15 15 15C15.5523 15 16 14.5523 16 14C16 13.4477 15.5523 13 15 13ZM14 17C14 16.4477 14.4477 16 15 16C15.5523 16 16 16.4477 16 17C16 17.5523 15.5523 18 15 18C14.4477 18 14 17.5523 14 17ZM8.5 6.25C8.08579 6.25 7.75 6.58579 7.75 7C7.75 7.41421 8.08579 7.75 8.5 7.75H15.5C15.9142 7.75 16.25 7.41421 16.25 7C16.25 6.58579 15.9142 6.25 15.5 6.25H8.5Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 2.25C9.41421 2.25 9.75 2.58579 9.75 3V7C9.75 7.41421 9.41421 7.75 9 7.75C8.58579 7.75 8.25 7.41421 8.25 7V3C8.25 2.58579 8.58579 2.25 9 2.25ZM15 2.25C15.4142 2.25 15.75 2.58579 15.75 3V7C15.75 7.41421 15.4142 7.75 15 7.75C14.5858 7.75 14.25 7.41421 14.25 7V3C14.25 2.58579 14.5858 2.25 15 2.25ZM13.25 4.5C13.25 4.36193 13.1381 4.25 13 4.25H11C10.8619 4.25 10.75 4.36193 10.75 4.5V7C10.75 7.9665 9.9665 8.75 9 8.75C8.0335 8.75 7.25 7.9665 7.25 7V4.5C7.25 4.36193 7.13807 4.25 7 4.25H4.5C3.80964 4.25 3.25 4.80964 3.25 5.5V9C3.25 9.13807 3.36193 9.25 3.5 9.25H20.5C20.6381 9.25 20.75 9.13807 20.75 9V5.5C20.75 4.80964 20.1904 4.25 19.5 4.25H17C16.8619 4.25 16.75 4.36193 16.75 4.5V7C16.75 7.9665 15.9665 8.75 15 8.75C14.0335 8.75 13.25 7.9665 13.25 7V4.5ZM20.75 11C20.75 10.8619 20.6381 10.75 20.5 10.75H3.5C3.36193 10.75 3.25 10.8619 3.25 11V18.5C3.25 19.1904 3.80964 19.75 4.5 19.75H19.5C20.1904 19.75 20.75 19.1904 20.75 18.5V11ZM6.75 13C6.75 12.5858 7.08579 12.25 7.5 12.25H8.5C8.91421 12.25 9.25 12.5858 9.25 13C9.25 13.4142 8.91421 13.75 8.5 13.75H7.5C7.08579 13.75 6.75 13.4142 6.75 13ZM11.5 12.25C11.0858 12.25 10.75 12.5858 10.75 13C10.75 13.4142 11.0858 13.75 11.5 13.75H12.5C12.9142 13.75 13.25 13.4142 13.25 13C13.25 12.5858 12.9142 12.25 12.5 12.25H11.5ZM14.75 13C14.75 12.5858 15.0858 12.25 15.5 12.25H16.5C16.9142 12.25 17.25 12.5858 17.25 13C17.25 13.4142 16.9142 13.75 16.5 13.75H15.5C15.0858 13.75 14.75 13.4142 14.75 13ZM11.5 15.25C11.0858 15.25 10.75 15.5858 10.75 16C10.75 16.4142 11.0858 16.75 11.5 16.75H12.5C12.9142 16.75 13.25 16.4142 13.25 16C13.25 15.5858 12.9142 15.25 12.5 15.25H11.5ZM14.75 16C14.75 15.5858 15.0858 15.25 15.5 15.25H16.5C16.9142 15.25 17.25 15.5858 17.25 16C17.25 16.4142 16.9142 16.75 16.5 16.75H15.5C15.0858 16.75 14.75 16.4142 14.75 16ZM7.5 15.25C7.08579 15.25 6.75 15.5858 6.75 16C6.75 16.4142 7.08579 16.75 7.5 16.75H8.5C8.91421 16.75 9.25 16.4142 9.25 16C9.25 15.5858 8.91421 15.25 8.5 15.25H7.5Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 2.25C9.41421 2.25 9.75 2.58579 9.75 3V4.25H14.25V3C14.25 2.58579 14.5858 2.25 15 2.25C15.4142 2.25 15.75 2.58579 15.75 3V4.25H19.5C20.1904 4.25 20.75 4.80964 20.75 5.5V18.5C20.75 19.1904 20.1904 19.75 19.5 19.75H4.5C3.80964 19.75 3.25 19.1904 3.25 18.5V5.5C3.25 4.80964 3.80964 4.25 4.5 4.25H8.25V3C8.25 2.58579 8.58579 2.25 9 2.25ZM15.75 7C15.75 7.41421 15.4142 7.75 15 7.75C14.5858 7.75 14.25 7.41421 14.25 7V5.75H9.75V7C9.75 7.41421 9.41421 7.75 9 7.75C8.58579 7.75 8.25 7.41421 8.25 7V5.75H4.75V9.25H19.25V5.75H15.75V7ZM4.75 18.25V10.75H19.25V18.25H4.75ZM6.75 13C6.75 12.5858 7.08579 12.25 7.5 12.25H8.5C8.91421 12.25 9.25 12.5858 9.25 13C9.25 13.4142 8.91421 13.75 8.5 13.75H7.5C7.08579 13.75 6.75 13.4142 6.75 13ZM10.75 13C10.75 12.5858 11.0858 12.25 11.5 12.25H12.5C12.9142 12.25 13.25 12.5858 13.25 13C13.25 13.4142 12.9142 13.75 12.5 13.75H11.5C11.0858 13.75 10.75 13.4142 10.75 13ZM15.5 12.25C15.0858 12.25 14.75 12.5858 14.75 13C14.75 13.4142 15.0858 13.75 15.5 13.75H16.5C16.9142 13.75 17.25 13.4142 17.25 13C17.25 12.5858 16.9142 12.25 16.5 12.25H15.5ZM10.75 16C10.75 15.5858 11.0858 15.25 11.5 15.25H12.5C12.9142 15.25 13.25 15.5858 13.25 16C13.25 16.4142 12.9142 16.75 12.5 16.75H11.5C11.0858 16.75 10.75 16.4142 10.75 16ZM15.5 15.25C15.0858 15.25 14.75 15.5858 14.75 16C14.75 16.4142 15.0858 16.75 15.5 16.75H16.5C16.9142 16.75 17.25 16.4142 17.25 16C17.25 15.5858 16.9142 15.25 16.5 15.25H15.5ZM6.75 16C6.75 15.5858 7.08579 15.25 7.5 15.25H8.5C8.91421 15.25 9.25 15.5858 9.25 16C9.25 16.4142 8.91421 16.75 8.5 16.75H7.5C7.08579 16.75 6.75 16.4142 6.75 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="M12.5638 2.00163C12.4217 1.84189 12.2182 1.75039 12.0043 1.75012C11.7905 1.74986 11.5868 1.84085 11.4443 2.00025L10.0394 3.57162C9.51321 4.1064 9.24989 4.80447 9.24989 5.50012C9.24989 6.20275 9.51852 6.90784 10.0553 7.44466C11.1293 8.51861 12.8705 8.5186 13.9444 7.44466C14.4813 6.90784 14.7499 6.20275 14.7499 5.50012C14.7499 4.80478 14.4868 4.10702 13.961 3.57233L12.5638 2.00163ZM3.25 11C3.25 10.0335 4.0335 9.24999 5 9.24999H19C19.9665 9.24999 20.75 10.0335 20.75 11V15C20.7498 15.0504 20.7482 15.0988 20.7422 15.1823C20.735 15.2843 20.7207 15.4251 20.6929 15.592C20.6379 15.9224 20.5263 16.3744 20.2958 16.8354C20.1612 17.1046 19.9836 17.3815 19.75 17.6387C19.581 17.8247 19.3828 18.0004 19.1504 18.1553C18.5921 18.5276 17.8813 18.7501 17 18.7501C16.1992 18.7501 15.5399 18.5663 15.0085 18.2547C14.8907 18.1857 14.7499 18.1678 14.6186 18.2052C14.4873 18.2426 14.377 18.3321 14.3133 18.4529C14.1241 18.8117 13.849 19.1413 13.456 19.3802C13.0451 19.6301 12.5556 19.75 12 19.75C11.4273 19.75 10.9254 19.6242 10.5079 19.361C10.0892 19.0972 9.81009 18.7298 9.62724 18.3379C9.27969 17.5931 9.25 16.6861 9.25 16C9.25 15.7239 9.02614 15.5 8.75 15.5C8.47386 15.5 8.25 15.7239 8.25 16C8.25 16.679 8.26936 17.7928 8.72104 18.7607C8.9681 19.2902 9.36274 19.8214 9.97475 20.2071C10.5839 20.5909 11.2803 20.75 12 20.75C12.7001 20.75 13.378 20.598 13.9755 20.2347C14.3817 19.9878 14.6967 19.6761 14.9379 19.3403C15.5426 19.6081 16.2326 19.7501 17 19.7501C18.0561 19.7501 18.9646 19.4811 19.7051 18.9874C19.7202 18.9773 19.7352 18.9672 19.75 18.9571V20C19.75 20.9665 18.9665 21.75 18 21.75H6C5.0335 21.75 4.25 20.9665 4.25 20V15.3615C4.76694 15.6183 5.35651 15.75 6.00022 15.75C6.80619 15.75 7.52727 15.5435 8.1272 15.1436C8.7162 14.7509 9.08682 14.2399 9.31547 13.7826C9.54083 13.3319 9.6448 12.9023 9.69516 12.6002C9.7286 12.3996 9.74296 12.2049 9.74988 12.0185C9.76012 11.7426 9.54472 11.5106 9.26877 11.5003C8.99282 11.4901 8.76081 11.7055 8.75057 11.9815C8.74456 12.1433 8.73273 12.292 8.70877 12.4358C8.66933 12.6724 8.58907 12.9994 8.42104 13.3354C8.25153 13.6744 7.9855 14.0362 7.5725 14.3115C7.15479 14.59 6.63152 14.75 6.00022 14.75C5.36893 14.75 4.84565 14.59 4.42795 14.3115C4.01494 14.0362 3.74892 13.6744 3.5794 13.3354L3.57341 13.3238C3.40932 12.9918 3.33044 12.6697 3.29145 12.4358C3.27144 12.3157 3.26114 12.214 3.25581 12.1394C3.25254 12.0935 3.25014 12.0475 3.25 12.0016V11Z" 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.5638 2.00151C12.4217 1.84177 12.2182 1.75027 12.0043 1.75C11.7905 1.74974 11.5868 1.84073 11.4443 2.00012L10.0394 3.57149C9.51321 4.10628 9.24989 4.80435 9.24989 5.5C9.24989 6.20262 9.51852 6.90772 10.0553 7.44454C11.1293 8.51848 12.8705 8.51848 13.9444 7.44454C14.4813 6.90772 14.7499 6.20263 14.7499 5.5C14.7499 4.80466 14.4868 4.1069 13.961 3.57221L12.5638 2.00151ZM11.1448 4.58566L12.002 3.62684L12.8537 4.58427C12.8634 4.59518 12.8735 4.60579 12.8838 4.61611C13.128 4.86034 13.2499 5.17893 13.2499 5.5C13.2499 5.82106 13.128 6.13966 12.8838 6.38388C12.3956 6.87204 11.6042 6.87204 11.116 6.38388C10.8718 6.13966 10.7499 5.82106 10.7499 5.5C10.7499 5.17893 10.8718 4.86034 11.116 4.61611C11.1259 4.60623 11.1355 4.59608 11.1448 4.58566ZM5 9.25001C4.0335 9.25001 3.25 10.0335 3.25 11V12H4C3.25 12 3.25 12.0016 3.25 12.0016L3.25001 12.0033L3.25003 12.0074L3.25016 12.0178L3.2509 12.0475C3.25169 12.0709 3.25314 12.1019 3.25581 12.1394C3.26114 12.214 3.27144 12.3157 3.29145 12.4358C3.33089 12.6724 3.41116 12.9994 3.57918 13.3354C3.723 13.6231 3.93631 13.9271 4.25 14.1809V20C4.25 20.9665 5.0335 21.75 6 21.75H18C18.9665 21.75 19.75 20.9665 19.75 20V17.6387C19.9836 17.3815 20.1612 17.1046 20.2958 16.8354C20.5263 16.3744 20.6379 15.9224 20.6929 15.5921C20.7207 15.4251 20.735 15.2843 20.7422 15.1823C20.7459 15.1312 20.7478 15.0895 20.7489 15.0587L20.7496 15.0307L20.7498 15.0207L20.75 15.0081L20.75 15.0035L20.75 15.0016L20.75 15V11C20.75 10.0335 19.9665 9.25001 19 9.25001H5ZM5.75 14.7413C5.83137 14.7471 5.9147 14.75 6 14.75C6.63124 14.75 7.15453 14.59 7.57228 14.3115C7.98533 14.0362 8.25133 13.6744 8.42082 13.3354C8.58884 12.9994 8.66911 12.6724 8.70855 12.4358C8.72856 12.3157 8.73886 12.214 8.74419 12.1394C8.74686 12.1019 8.74831 12.0709 8.7491 12.0475L8.74984 12.0178L8.74997 12.0074L8.74999 12.0033L8.75 12.0016L8.75 12C8.75 11.5858 8.41421 11.25 8 11.25C7.58768 11.25 7.25308 11.5827 7.25002 11.9943L7.24993 11.9975C7.24976 12.0026 7.24935 12.0124 7.24843 12.0263L7.248 12.0325C7.24552 12.0673 7.24019 12.1218 7.22895 12.1892C7.20589 12.3276 7.16116 12.5006 7.07918 12.6646C6.99867 12.8256 6.88967 12.9638 6.74022 13.0635C6.59547 13.16 6.36876 13.25 6 13.25C5.63124 13.25 5.40453 13.16 5.25978 13.0635C5.11033 12.9638 5.00133 12.8256 4.92082 12.6646C4.83884 12.5006 4.79411 12.3276 4.77105 12.1892C4.75981 12.1218 4.75448 12.0673 4.752 12.0325C4.75077 12.0153 4.75027 12.0033 4.75007 11.9975L4.75 11.9951V11C4.75 10.8619 4.86193 10.75 5 10.75H19C19.1381 10.75 19.25 10.8619 19.25 11V14.9968L19.2497 15.0087C19.2492 15.0218 19.2483 15.0446 19.246 15.0755C19.2416 15.1376 19.2324 15.2312 19.2133 15.3455C19.1746 15.5776 19.0987 15.8756 18.9542 16.1646C18.8112 16.4506 18.6084 16.7138 18.3183 16.9072C18.033 17.0975 17.6188 17.25 17 17.25C16.3812 17.25 15.967 17.0975 15.6817 16.9072C15.3916 16.7138 15.1888 16.4506 15.0458 16.1646C14.9013 15.8756 14.8254 15.5776 14.7867 15.3455C14.7676 15.2312 14.7584 15.1376 14.754 15.0755C14.7517 15.0446 14.7508 15.0218 14.7503 15.0087L14.75 14.9967V14C14.75 13.5858 14.4142 13.25 14 13.25C13.5858 13.25 13.25 13.5858 13.25 14V15L13.25 15.0017L13.25 15.0035L13.25 15.0081L13.2502 15.0207L13.25 16.1032C13.25 16.7794 13.1905 17.3458 12.9993 17.7283C12.9124 17.9021 12.8069 18.0194 12.6769 18.0985C12.5453 18.1785 12.3381 18.25 12 18.25C11.6485 18.25 11.4383 18.1744 11.3076 18.092C11.1781 18.0104 11.0727 17.8883 10.9865 17.7036C10.7961 17.2954 10.75 16.702 10.75 16C10.75 15.5858 10.4142 15.25 10 15.25C9.58579 15.25 9.25 15.5858 9.25 16C9.25 16.6867 9.27979 17.5933 9.62724 18.3379C9.81005 18.7297 10.0891 19.0971 10.5079 19.361C10.9255 19.6242 11.4274 19.75 12 19.75C12.5555 19.75 13.045 19.6301 13.456 19.3802C13.8685 19.1295 14.1513 18.7786 14.3411 18.3989C14.4187 18.2436 14.4818 18.0811 14.5331 17.9147C14.6308 17.9991 14.7361 18.0796 14.8496 18.1553C15.408 18.5275 16.1188 18.75 17 18.75C17.4628 18.75 17.8786 18.6886 18.25 18.5765V20C18.25 20.1381 18.1381 20.25 18 20.25H6C5.86193 20.25 5.75 20.1381 5.75 20V14.7413Z" 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="M21 6.25C21.4142 6.25 21.75 6.58579 21.75 7C21.75 7.41421 21.4142 7.75 21 7.75H16.4228L18.7343 18.8467C18.8188 19.2521 18.5586 19.6498 18.1533 19.7344C17.7479 19.8188 17.3502 19.5586 17.2656 19.1533L15.5 10.6787L13.7343 19.1533C13.6497 19.5586 13.252 19.8188 12.8466 19.7344C12.4414 19.6497 12.1812 19.252 12.2656 18.8467L14.5771 7.75H9.99997C9.58581 7.74994 9.24997 7.41417 9.24997 7C9.24997 6.58583 9.58581 6.25006 9.99997 6.25H21ZM2.99997 4.25C3.41418 4.25 3.74997 4.58579 3.74997 5V11C3.74997 11.6903 4.30967 12.2499 4.99997 12.25H9.99997C10.4142 12.25 10.75 12.5858 10.75 13C10.75 13.4142 10.4142 13.75 9.99997 13.75H8.95993L10.2275 18.8184C10.3278 19.2201 10.0834 19.6271 9.68161 19.7275C9.27987 19.8278 8.87286 19.5834 8.77243 19.1816L7.41501 13.75H5.08493L3.72751 19.1816C3.62705 19.5834 3.22009 19.8278 2.81833 19.7275C2.41663 19.6271 2.17215 19.2201 2.27243 18.8184L3.63083 13.3818C2.80654 12.9069 2.24997 12.0196 2.24997 11V5C2.24997 4.58583 2.58581 4.25006 2.99997 4.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 fill-rule="evenodd" clip-rule="evenodd" d="M12 13.25C11.0224 13.25 10.1104 12.7404 9.50147 11.8977L11.9998 11.2731L14.4985 11.8977C13.8896 12.7404 12.9775 13.25 12 13.25ZM12.7557 9.9159L15.172 10.52C15.3452 10.27 15.6604 10.142 15.9706 10.2196L17.9095 10.7043C19.5789 11.1216 20.75 12.6216 20.75 14.3423V20C20.75 20.4142 20.4142 20.75 20 20.75H18C17.9993 20.75 17.9987 20.75 17.998 20.75H16.002C16.0013 20.75 16.0007 20.75 16 20.75H8C7.99934 20.75 7.99868 20.75 7.99803 20.75H6.00197C6.00132 20.75 6.00066 20.75 6 20.75H4C3.58579 20.75 3.25 20.4142 3.25 20V14.3423C3.25 12.6216 4.42112 11.1216 6.09049 10.7043L8.02944 10.2196C8.33961 10.142 8.65477 10.2699 8.82793 10.5199L11.2516 9.91398C11.2742 9.3596 11.512 8.89258 11.7801 8.5172C12.0509 8.1381 12.4007 7.78842 12.6983 7.4909L12.6983 7.49087L12.6983 7.49086L12.7195 7.46967C13.0424 7.14673 13.3074 6.87904 13.4989 6.61095C13.6858 6.34934 13.7498 6.15777 13.7498 6C13.7498 5.42044 13.5599 4.99575 13.282 4.71783C13.0041 4.43991 12.5794 4.25 11.9998 4.25C11.4203 4.25 10.9956 4.43991 10.7177 4.71783C10.4397 4.99575 10.2498 5.42044 10.2498 6C10.2498 6.41421 9.91404 6.75 9.49982 6.75C9.08561 6.75 8.74982 6.41421 8.74982 6C8.74982 5.07956 9.05991 4.25425 9.65699 3.65717C10.2541 3.06009 11.0794 2.75 11.9998 2.75C12.9203 2.75 13.7456 3.06009 14.3427 3.65717C14.9397 4.25425 15.2498 5.07956 15.2498 6C15.2498 6.59223 15.0014 7.08816 14.7195 7.4828C14.4487 7.86192 14.0989 8.21162 13.8013 8.50914L13.7802 8.53033C13.4572 8.85327 13.1922 9.12096 13.0007 9.38905C12.8458 9.60591 12.7753 9.77465 12.7557 9.9159ZM6.25 19.25H7.75V17C7.75 16.5858 7.41421 16.25 7 16.25C6.58579 16.25 6.25 16.5858 6.25 17V19.25ZM16.25 19.25H17.75V17C17.75 16.5858 17.4142 16.25 17 16.25C16.5858 16.25 16.25 16.5858 16.25 17V19.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 fill-rule="evenodd" clip-rule="evenodd" d="M15.1721 10.52L12.7557 9.9159C12.7753 9.77465 12.8458 9.60591 13.0007 9.38905C13.1922 9.12096 13.4572 8.85327 13.7802 8.53033L13.8013 8.50914C14.0989 8.21162 14.4487 7.86192 14.7195 7.4828C15.0014 7.08816 15.2498 6.59223 15.2498 6C15.2498 5.07956 14.9397 4.25425 14.3427 3.65717C13.7456 3.06009 12.9203 2.75 11.9998 2.75C11.0794 2.75 10.2541 3.06009 9.65699 3.65717C9.05991 4.25425 8.74982 5.07956 8.74982 6C8.74982 6.41421 9.08561 6.75 9.49982 6.75C9.91404 6.75 10.2498 6.41421 10.2498 6C10.2498 5.42044 10.4397 4.99575 10.7177 4.71783C10.9956 4.43991 11.4203 4.25 11.9998 4.25C12.5794 4.25 13.0041 4.43991 13.282 4.71783C13.5599 4.99575 13.7498 5.42044 13.7498 6C13.7498 6.15777 13.6858 6.34934 13.4989 6.61095C13.3074 6.87904 13.0424 7.14673 12.7195 7.46967L12.6983 7.49086C12.4007 7.78839 12.0509 8.13808 11.7801 8.5172C11.512 8.89258 11.2742 9.3596 11.2516 9.91398L8.82787 10.5199C8.6547 10.27 8.33958 10.1421 8.02944 10.2197L6.09049 10.7044C4.42112 11.1217 3.25 12.6217 3.25 14.3424V20.0001C3.25 20.4143 3.58579 20.7501 4 20.7501H20C20.4142 20.7501 20.75 20.4143 20.75 20.0001V14.3424C20.75 12.6217 19.5789 11.1217 17.9095 10.7044L15.9706 10.2197C15.6604 10.1421 15.3452 10.27 15.1721 10.52ZM9.50141 11.8977C10.1103 12.7405 11.0224 13.2501 12 13.2501C12.9776 13.2501 13.8896 12.7405 14.4985 11.8978L11.9998 11.2731L9.50141 11.8977ZM6.45429 12.1596L7.74523 11.8369C8.50871 13.53 10.0966 14.7501 12 14.7501C13.9034 14.7501 15.4913 13.53 16.2548 11.8369L17.5457 12.1596C18.5473 12.41 19.25 13.31 19.25 14.3424V19.2501H17.75V17C17.75 16.5858 17.4142 16.25 17 16.25C16.5858 16.25 16.25 16.5858 16.25 17V19.2501H7.75V17C7.75 16.5858 7.41421 16.25 7 16.25C6.58579 16.25 6.25 16.5858 6.25 17V19.2501H4.75V14.3424C4.75 13.31 5.45267 12.41 6.45429 12.1596Z" 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.25 3C5.25 2.58579 5.58579 2.25 6 2.25H18C18.4142 2.25 18.75 2.58579 18.75 3V11C18.75 11.1381 18.6381 11.25 18.5 11.25H8C7.86193 11.25 7.75 11.1381 7.75 11V10.5C7.75 10.0858 7.41421 9.75 7 9.75H5.5C5.36193 9.75 5.25 9.63807 5.25 9.5V3ZM5.5 11.25C5.36193 11.25 5.25 11.3619 5.25 11.5V12.5C5.25 12.6381 5.36193 12.75 5.5 12.75H6C6.13807 12.75 6.25 12.6381 6.25 12.5V11.5C6.25 11.3619 6.13807 11.25 6 11.25H5.5ZM5.5 14.25C5.36193 14.25 5.25 14.3619 5.25 14.5V21C5.25 21.4142 5.58579 21.75 6 21.75H18C18.4142 21.75 18.75 21.4142 18.75 21V13C18.75 12.8619 18.6381 12.75 18.5 12.75H8C7.86193 12.75 7.75 12.8619 7.75 13V13.5C7.75 13.9142 7.41421 14.25 7 14.25H5.5ZM13 13.94L13.5303 14.4703C13.8039 14.7439 14.2118 15.1978 14.5574 15.7054C14.8782 16.1764 15.25 16.8413 15.25 17.5007C15.25 18.7433 14.2426 19.7507 13 19.7507C11.7574 19.7507 10.75 18.7433 10.75 17.5007C10.75 16.8413 11.1218 16.1764 11.4426 15.7054C11.7882 15.1978 12.1961 14.7439 12.4697 14.4703L13 13.94ZM12.6824 16.5496C12.3782 16.9964 12.25 17.3316 12.25 17.5007C12.25 17.9149 12.5858 18.2507 13 18.2507C13.4142 18.2507 13.75 17.9149 13.75 17.5007C13.75 17.3316 13.6218 16.9964 13.3176 16.5496C13.2171 16.402 13.1084 16.2581 13 16.1237C12.8916 16.2581 12.7829 16.402 12.6824 16.5496ZM13 4.25C13.4142 4.25 13.75 4.58579 13.75 5V5.70098L14.3573 5.35036C14.716 5.14326 15.1747 5.26616 15.3818 5.62488C15.5889 5.9836 15.466 6.44229 15.1073 6.6494L14.5002 6.99988L15.1073 7.35036C15.466 7.55747 15.5889 8.01616 15.3818 8.37488C15.1747 8.7336 14.716 8.85651 14.3573 8.6494L13.75 8.29878V9C13.75 9.41421 13.4142 9.75 13 9.75C12.5858 9.75 12.25 9.41421 12.25 9V8.29906L11.6432 8.6494C11.2845 8.85651 10.8258 8.7336 10.6187 8.37488C10.4116 8.01616 10.5345 7.55747 10.8932 7.35036L11.5002 6.99988L10.8932 6.6494C10.5345 6.44229 10.4116 5.9836 10.6187 5.62488C10.8258 5.26616 11.2845 5.14326 11.6432 5.35036L12.25 5.7007V5C12.25 4.58579 12.5858 4.25 13 4.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 fill-rule="evenodd" clip-rule="evenodd" d="M6 2.25C5.58579 2.25 5.25 2.58579 5.25 3V21C5.25 21.4142 5.58579 21.75 6 21.75H18C18.4142 21.75 18.75 21.4142 18.75 21V3C18.75 2.58579 18.4142 2.25 18 2.25H6ZM8 9.75C8.41421 9.75 8.75 10.0858 8.75 10.5V11.25H17.25V3.75H6.75V9.75H8ZM8 14.25C8.41421 14.25 8.75 13.9142 8.75 13.5V12.75H17.25V20.25H6.75V14.25H8ZM6.75 12.75V11.25H7.25V12.75H6.75ZM13 4.75C13.4142 4.75 13.75 5.08579 13.75 5.5V6.20103L14.3572 5.85048C14.7159 5.64337 15.1746 5.76628 15.3817 6.125C15.5888 6.48372 15.4659 6.94241 15.1072 7.14952L14.5001 7.5L15.1072 7.85048C15.4659 8.05759 15.5888 8.51628 15.3817 8.875C15.1746 9.23372 14.7159 9.35663 14.3572 9.14952L13.75 8.79897V9.5C13.75 9.91421 13.4142 10.25 13 10.25C12.5858 10.25 12.25 9.91421 12.25 9.5V8.79911L11.6431 9.14952C11.2844 9.35663 10.8257 9.23372 10.6186 8.875C10.4114 8.51628 10.5343 8.05759 10.8931 7.85048L11.5001 7.5L10.8931 7.14952C10.5343 6.94241 10.4114 6.48372 10.6186 6.125C10.8257 5.76628 11.2844 5.64337 11.6431 5.85048L12.25 6.20089V5.5C12.25 5.08579 12.5858 4.75 13 4.75ZM13 13.4393L13.5303 13.9697C13.8039 14.2432 14.2118 14.6971 14.5574 15.2047C14.8782 15.6758 15.25 16.3406 15.25 17C15.25 18.2426 14.2426 19.25 13 19.25C11.7574 19.25 10.75 18.2426 10.75 17C10.75 16.3406 11.1218 15.6758 11.4426 15.2047C11.7882 14.6971 12.1961 14.2432 12.4697 13.9697L13 13.4393ZM12.6824 16.049C12.3782 16.4958 12.25 16.8309 12.25 17C12.25 17.4142 12.5858 17.75 13 17.75C13.4142 17.75 13.75 17.4142 13.75 17C13.75 16.8309 13.6218 16.4958 13.3176 16.049C13.2171 15.9013 13.1084 15.7574 13 15.6231C12.8916 15.7574 12.7829 15.9013 12.6824 16.049Z" 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.25 3C5.25 2.58579 5.58579 2.25 6 2.25H18C18.4142 2.25 18.75 2.58579 18.75 3V11C18.75 11.1381 18.6381 11.25 18.5 11.25H8C7.86193 11.25 7.75 11.1381 7.75 11V10.5C7.75 10.0858 7.41421 9.75 7 9.75H5.5C5.36193 9.75 5.25 9.63807 5.25 9.5V3ZM5.5 11.25C5.36193 11.25 5.25 11.3619 5.25 11.5V12.5C5.25 12.6381 5.36193 12.75 5.5 12.75H6C6.13807 12.75 6.25 12.6381 6.25 12.5V11.5C6.25 11.3619 6.13807 11.25 6 11.25H5.5ZM5.5 14.25C5.36193 14.25 5.25 14.3619 5.25 14.5V21C5.25 21.4142 5.58579 21.75 6 21.75H18C18.4142 21.75 18.75 21.4142 18.75 21V13C18.75 12.8619 18.6381 12.75 18.5 12.75H8C7.86193 12.75 7.75 12.8619 7.75 13V13.5C7.75 13.9142 7.41421 14.25 7 14.25H5.5ZM13 14.06C13.4142 14.06 13.75 14.3958 13.75 14.81V15.511L14.3573 15.1604C14.716 14.9533 15.1747 15.0762 15.3818 15.4349C15.5889 15.7936 15.466 16.2523 15.1073 16.4594L14.5002 16.8099L15.1073 17.1604C15.466 17.3675 15.5889 17.8262 15.3818 18.1849C15.1747 18.5436 14.716 18.6665 14.3573 18.4594L13.75 18.1088V18.81C13.75 19.2242 13.4142 19.56 13 19.56C12.5858 19.56 12.25 19.2242 12.25 18.81V18.1091L11.6432 18.4594C11.2845 18.6665 10.8258 18.5436 10.6187 18.1849C10.4116 17.8262 10.5345 17.3675 10.8932 17.1604L11.5002 16.8099L10.8932 16.4594C10.5345 16.2523 10.4116 15.7936 10.6187 15.4349C10.8258 15.0762 11.2845 14.9533 11.6432 15.1604L12.25 15.5107V14.81C12.25 14.3958 12.5858 14.06 13 14.06ZM13.5303 4.78033L13 4.25L12.4697 4.78033C12.1961 5.05389 11.7882 5.50781 11.4426 6.01538C11.1218 6.48644 10.75 7.15128 10.75 7.81066C10.75 9.0533 11.7574 10.0607 13 10.0607C14.2426 10.0607 15.25 9.0533 15.25 7.81066C15.25 7.15128 14.8782 6.48644 14.5574 6.01538C14.2118 5.50781 13.8039 5.05389 13.5303 4.78033ZM12.25 7.81066C12.25 7.64161 12.3782 7.30645 12.6824 6.85962C12.7829 6.712 12.8916 6.56807 13 6.43374C13.1084 6.56807 13.2171 6.712 13.3176 6.85962C13.6218 7.30645 13.75 7.64161 13.75 7.81066C13.75 8.22487 13.4142 8.56066 13 8.56066C12.5858 8.56066 12.25 8.22487 12.25 7.81066Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|