@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="M15.8027 2.27643C16.1476 2.18236 16.5109 2.34482 16.6708 2.66459L17.9635 5.25H19C19.9665 5.25 20.75 6.0335 20.75 7V9.41841C21.3412 9.69927 21.75 10.3019 21.75 11V14C21.75 14.6981 21.3412 15.3007 20.75 15.5816V18C20.75 18.9665 19.9665 19.75 19 19.75H4C3.0335 19.75 2.25 18.9665 2.25 18V7C2.25 6.0335 3.0335 5.25 4 5.25H4.89956L15.8027 2.27643ZM15.6042 3.88535L16.2865 5.25H10.6004L15.6042 3.88535ZM3.75 7C3.75 6.86193 3.86193 6.75 4 6.75H19C19.1381 6.75 19.25 6.86193 19.25 7V9.25H15.3529L15.3513 9.25L15.3494 9.25001L15.3449 9.25003L15.3333 9.25018C15.3245 9.25034 15.3133 9.25061 15.3 9.25108C15.2733 9.25202 15.238 9.25378 15.1951 9.25703C15.1096 9.26352 14.9927 9.27609 14.8545 9.30055C14.5816 9.34889 14.2072 9.4469 13.8246 9.65016C13.4382 9.85546 13.0357 10.1727 12.7323 10.6561C12.4274 11.142 12.25 11.7527 12.25 12.5C12.25 13.2473 12.4274 13.858 12.7323 14.3439C13.0357 14.8273 13.4382 15.1445 13.8246 15.3498C14.2072 15.5531 14.5816 15.6511 14.8545 15.6994C14.9927 15.7239 15.1096 15.7365 15.1951 15.743C15.238 15.7462 15.2733 15.748 15.3 15.7489C15.3133 15.7494 15.3245 15.7497 15.3333 15.7498L15.3449 15.75L15.3494 15.75L15.3513 15.75L15.3529 15.75H19.25V18C19.25 18.1381 19.1381 18.25 19 18.25H4C3.86193 18.25 3.75 18.1381 3.75 18V7ZM15.3531 10.7501L15.3579 10.75H20C20.1381 10.75 20.25 10.8619 20.25 11V14C20.25 14.1381 20.1381 14.25 20 14.25H15.3579L15.3531 14.2499C15.3462 14.2496 15.3337 14.2491 15.3163 14.2478L15.3086 14.2473C15.2654 14.244 15.1985 14.237 15.1161 14.2224C14.9478 14.1926 14.734 14.1344 14.5283 14.0252C14.3265 13.918 14.1408 13.7664 14.0029 13.5467C13.8667 13.3295 13.75 13.0027 13.75 12.5C13.75 11.9973 13.8667 11.6705 14.0029 11.4533C14.1408 11.2336 14.3265 11.082 14.5283 10.9748C14.734 10.8656 14.9478 10.8074 15.1161 10.7776C15.1985 10.763 15.2654 10.756 15.3086 10.7527C15.33 10.7511 15.3452 10.7504 15.3531 10.7501ZM15.5 11.75C15.0858 11.75 14.75 12.0858 14.75 12.5C14.75 12.9142 15.0858 13.25 15.5 13.25H15.51C15.9242 13.25 16.26 12.9142 16.26 12.5C16.26 12.0858 15.9242 11.75 15.51 11.75H15.5Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.75 3.55005C14.75 3.13584 15.0858 2.80005 15.5 2.80005H15.51C15.9242 2.80005 16.26 3.13584 16.26 3.55005C16.26 3.96426 15.9242 4.30005 15.51 4.30005H15.5C15.0858 4.30005 14.75 3.96426 14.75 3.55005ZM15.5 5.75C13.9812 5.75 12.75 6.98122 12.75 8.5C12.75 10.0188 13.9812 11.25 15.5 11.25C17.0188 11.25 18.25 10.0188 18.25 8.5C18.25 6.98122 17.0188 5.75 15.5 5.75ZM8.5 12.75C6.98122 12.75 5.75 13.9812 5.75 15.5C5.75 17.0188 6.98122 18.25 8.5 18.25C10.0188 18.25 11.25 17.0188 11.25 15.5C11.25 13.9812 10.0188 12.75 8.5 12.75ZM7.75 10.55C7.75 10.1358 8.08579 9.80005 8.5 9.80005H8.51C8.92421 9.80005 9.26 10.1358 9.26 10.55C9.26 10.9643 8.92421 11.3 8.51 11.3H8.5C8.08579 11.3 7.75 10.9643 7.75 10.55ZM5.5374 12.5231C5.83029 12.2302 5.83029 11.7554 5.5374 11.4625C5.24451 11.1696 4.76963 11.1696 4.47674 11.4625L4.46967 11.4695C4.17678 11.7624 4.17678 12.2373 4.46967 12.5302C4.76256 12.8231 5.23744 12.8231 5.53033 12.5302L5.5374 12.5231ZM3.5498 14.74C3.96402 14.74 4.2998 15.0758 4.2998 15.49V15.5C4.2998 15.9142 3.96402 16.25 3.5498 16.25C3.13559 16.25 2.7998 15.9142 2.7998 15.5V15.49C2.7998 15.0758 3.13559 14.74 3.5498 14.74ZM5.52349 18.463C5.2306 18.1701 4.75573 18.1701 4.46283 18.463C4.16994 18.7558 4.16994 19.2307 4.46283 19.5236L4.46991 19.5307C4.7628 19.8236 5.23767 19.8236 5.53057 19.5307C5.82346 19.2378 5.82346 18.7629 5.53057 18.47L5.52349 18.463ZM7.74023 20.45C7.74023 20.0357 8.07602 19.7 8.49023 19.7H8.50023C8.91445 19.7 9.25023 20.0357 9.25023 20.45C9.25023 20.8642 8.91445 21.2 8.50023 21.2H8.49023C8.07602 21.2 7.74023 20.8642 7.74023 20.45ZM12.5306 19.5305C12.8235 19.2376 12.8235 18.7627 12.5306 18.4698C12.2377 18.1769 11.7628 18.1769 11.4699 18.4698L11.4628 18.4769C11.1699 18.7698 11.1699 19.2446 11.4628 19.5375C11.7557 19.8304 12.2306 19.8304 12.5235 19.5375L12.5306 19.5305ZM13.4502 14.75C13.8644 14.75 14.2002 15.0858 14.2002 15.5V15.51C14.2002 15.9242 13.8644 16.26 13.4502 16.26C13.036 16.26 12.7002 15.9242 12.7002 15.51V15.5C12.7002 15.0858 13.036 14.75 13.4502 14.75ZM11.4937 12.5535C11.4856 12.5461 11.4777 12.5385 11.4699 12.5307L11.4628 12.5236C11.1699 12.2307 11.1699 11.7558 11.4628 11.463C11.7501 11.1756 12.2126 11.1702 12.5066 11.4465C12.5146 11.4539 12.5225 11.4615 12.5303 11.4693L12.5374 11.4764C12.8303 11.7693 12.8303 12.2441 12.5374 12.537C12.2501 12.8243 11.7877 12.8298 11.4937 12.5535ZM12.5374 5.52313C12.8303 5.23023 12.8303 4.75536 12.5374 4.46247C12.2445 4.16957 11.7696 4.16957 11.4767 4.46247L11.4697 4.46954C11.1768 4.76243 11.1768 5.23731 11.4697 5.5302C11.7626 5.82309 12.2374 5.82309 12.5303 5.5302L12.5374 5.52313ZM10.5498 7.73999C10.964 7.73999 11.2998 8.07578 11.2998 8.48999V8.49999C11.2998 8.9142 10.964 9.24999 10.5498 9.24999C10.1356 9.24999 9.7998 8.9142 9.7998 8.49999V8.48999C9.7998 8.07578 10.1356 7.73999 10.5498 7.73999ZM14.7402 13.45C14.7402 13.0357 15.076 12.7 15.4902 12.7H15.5002C15.9144 12.7 16.2502 13.0357 16.2502 13.45C16.2502 13.8642 15.9144 14.2 15.5002 14.2H15.4902C15.076 14.2 14.7402 13.8642 14.7402 13.45ZM19.5306 12.5305C19.8235 12.2376 19.8235 11.7627 19.5306 11.4698C19.2377 11.1769 18.7628 11.1769 18.4699 11.4698L18.4628 11.4769C18.1699 11.7698 18.1699 12.2446 18.4628 12.5375C18.7557 12.8304 19.2306 12.8304 19.5235 12.5375L19.5306 12.5305ZM20.4502 7.75C20.8644 7.75 21.2002 8.08579 21.2002 8.5V8.51C21.2002 8.92421 20.8644 9.26 20.4502 9.26C20.036 9.26 19.7002 8.92421 19.7002 8.51V8.5C19.7002 8.08579 20.036 7.75 20.4502 7.75ZM19.5303 4.4693C19.2374 4.17641 18.7626 4.17641 18.4697 4.4693C18.1768 4.7622 18.1768 5.23707 18.4697 5.52996L18.4767 5.53703C18.7696 5.82993 19.2445 5.82993 19.5374 5.53703C19.8303 5.24414 19.8303 4.76927 19.5374 4.47637L19.5303 4.4693Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.75 3.55005C14.75 3.13584 15.0858 2.80005 15.5 2.80005H15.51C15.9242 2.80005 16.26 3.13584 16.26 3.55005C16.26 3.96426 15.9242 4.30005 15.51 4.30005H15.5C15.0858 4.30005 14.75 3.96426 14.75 3.55005ZM14.25 8.5C14.25 7.80964 14.8096 7.25 15.5 7.25C16.1904 7.25 16.75 7.80964 16.75 8.5C16.75 9.19036 16.1904 9.75 15.5 9.75C14.8096 9.75 14.25 9.19036 14.25 8.5ZM15.5 5.75C13.9812 5.75 12.75 6.98122 12.75 8.5C12.75 10.0188 13.9812 11.25 15.5 11.25C17.0188 11.25 18.25 10.0188 18.25 8.5C18.25 6.98122 17.0188 5.75 15.5 5.75ZM7.25 15.5C7.25 14.8096 7.80964 14.25 8.5 14.25C9.19036 14.25 9.75 14.8096 9.75 15.5C9.75 16.1904 9.19036 16.75 8.5 16.75C7.80964 16.75 7.25 16.1904 7.25 15.5ZM8.5 12.75C6.98122 12.75 5.75 13.9812 5.75 15.5C5.75 17.0188 6.98122 18.25 8.5 18.25C10.0188 18.25 11.25 17.0188 11.25 15.5C11.25 13.9812 10.0188 12.75 8.5 12.75ZM7.75 10.55C7.75 10.1358 8.08579 9.80005 8.5 9.80005H8.51C8.92421 9.80005 9.26 10.1358 9.26 10.55C9.26 10.9643 8.92421 11.3 8.51 11.3H8.5C8.08579 11.3 7.75 10.9643 7.75 10.55ZM5.5374 12.5231C5.83029 12.2302 5.83029 11.7554 5.5374 11.4625C5.24451 11.1696 4.76963 11.1696 4.47674 11.4625L4.46967 11.4695C4.17678 11.7624 4.17678 12.2373 4.46967 12.5302C4.76256 12.8231 5.23744 12.8231 5.53033 12.5302L5.5374 12.5231ZM3.5498 14.74C3.96402 14.74 4.2998 15.0758 4.2998 15.49V15.5C4.2998 15.9142 3.96402 16.25 3.5498 16.25C3.13559 16.25 2.7998 15.9142 2.7998 15.5V15.49C2.7998 15.0758 3.13559 14.74 3.5498 14.74ZM5.52349 18.463C5.2306 18.1701 4.75573 18.1701 4.46283 18.463C4.16994 18.7558 4.16994 19.2307 4.46283 19.5236L4.46991 19.5307C4.7628 19.8236 5.23767 19.8236 5.53057 19.5307C5.82346 19.2378 5.82346 18.7629 5.53057 18.47L5.52349 18.463ZM7.74023 20.45C7.74023 20.0357 8.07602 19.7 8.49023 19.7H8.50023C8.91445 19.7 9.25023 20.0357 9.25023 20.45C9.25023 20.8642 8.91445 21.2 8.50023 21.2H8.49023C8.07602 21.2 7.74023 20.8642 7.74023 20.45ZM12.5306 19.5305C12.8235 19.2376 12.8235 18.7627 12.5306 18.4698C12.2377 18.1769 11.7628 18.1769 11.4699 18.4698L11.4628 18.4769C11.1699 18.7698 11.1699 19.2446 11.4628 19.5375C11.7557 19.8304 12.2306 19.8304 12.5235 19.5375L12.5306 19.5305ZM13.4502 14.75C13.8644 14.75 14.2002 15.0858 14.2002 15.5V15.51C14.2002 15.9242 13.8644 16.26 13.4502 16.26C13.036 16.26 12.7002 15.9242 12.7002 15.51V15.5C12.7002 15.0858 13.036 14.75 13.4502 14.75ZM11.4937 12.5535C11.4856 12.5461 11.4777 12.5385 11.4699 12.5307L11.4628 12.5236C11.1699 12.2307 11.1699 11.7558 11.4628 11.463C11.7501 11.1756 12.2126 11.1702 12.5066 11.4465C12.5146 11.4539 12.5225 11.4615 12.5303 11.4693L12.5374 11.4764C12.8303 11.7693 12.8303 12.2441 12.5374 12.537C12.2501 12.8243 11.7877 12.8298 11.4937 12.5535ZM12.5374 5.52313C12.8303 5.23023 12.8303 4.75536 12.5374 4.46247C12.2445 4.16957 11.7696 4.16957 11.4767 4.46247L11.4697 4.46954C11.1768 4.76243 11.1768 5.23731 11.4697 5.5302C11.7626 5.82309 12.2374 5.82309 12.5303 5.5302L12.5374 5.52313ZM10.5498 7.73999C10.964 7.73999 11.2998 8.07578 11.2998 8.48999V8.49999C11.2998 8.9142 10.964 9.24999 10.5498 9.24999C10.1356 9.24999 9.7998 8.9142 9.7998 8.49999V8.48999C9.7998 8.07578 10.1356 7.73999 10.5498 7.73999ZM14.7402 13.45C14.7402 13.0357 15.076 12.7 15.4902 12.7H15.5002C15.9144 12.7 16.2502 13.0357 16.2502 13.45C16.2502 13.8642 15.9144 14.2 15.5002 14.2H15.4902C15.076 14.2 14.7402 13.8642 14.7402 13.45ZM19.5306 12.5305C19.8235 12.2376 19.8235 11.7627 19.5306 11.4698C19.2377 11.1769 18.7628 11.1769 18.4699 11.4698L18.4628 11.4769C18.1699 11.7698 18.1699 12.2446 18.4628 12.5375C18.7557 12.8304 19.2306 12.8304 19.5235 12.5375L19.5306 12.5305ZM20.4502 7.75C20.8644 7.75 21.2002 8.08579 21.2002 8.5V8.51C21.2002 8.92421 20.8644 9.26 20.4502 9.26C20.036 9.26 19.7002 8.92421 19.7002 8.51V8.5C19.7002 8.08579 20.036 7.75 20.4502 7.75ZM19.5303 4.4693C19.2374 4.17641 18.7626 4.17641 18.4697 4.4693C18.1768 4.7622 18.1768 5.23707 18.4697 5.52996L18.4767 5.53703C18.7696 5.82993 19.2445 5.82993 19.5374 5.53703C19.8303 5.24414 19.8303 4.76927 19.5374 4.47637L19.5303 4.4693Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7802 2.31681C12.1575 2.14584 12.6019 2.31308 12.7729 2.69037L12.9626 3.10896C13.7026 2.95198 14.4436 2.9767 15.1007 3.14464C15.9856 3.3708 16.6751 3.75607 17.194 4.28794L17.9347 3.81155C18.2831 3.58749 18.7472 3.68828 18.9712 4.03666C19.1953 4.38504 19.0945 4.8491 18.7461 5.07316L18.0121 5.54522C18.2775 6.17972 18.4078 6.87963 18.4755 7.59356C18.5386 8.26039 18.5498 8.97398 18.5498 9.70103C18.5498 10.1593 18.5323 10.7312 18.4789 11.372L19.5693 11.5445C19.9784 11.6093 20.2576 11.9934 20.1929 12.4025C20.1282 12.8116 19.744 13.0908 19.3349 13.0261L18.2984 12.8621C18.2101 13.4108 18.0926 13.983 17.9373 14.5583C17.8253 14.9729 17.6931 15.3908 17.5371 15.8039L18.6077 16.2123C18.9947 16.36 19.1887 16.7934 19.041 17.1804C18.8934 17.5674 18.4599 17.7615 18.0729 17.6138L16.9136 17.1715C16.582 17.7783 16.1814 18.3555 15.6971 18.8694C15.1488 19.4513 14.4963 19.9484 13.7249 20.3126L13.8922 20.707C14.0539 21.0884 13.8759 21.5286 13.4946 21.6903C13.1133 21.8521 12.673 21.674 12.5113 21.2927L12.2999 20.7944C11.7765 20.9086 11.2163 20.9686 10.6178 20.9686C10.3058 20.9686 10.0071 20.9626 9.72139 20.9509C8.7237 20.9102 7.87759 20.7998 7.16879 20.6293C6.72859 20.5234 6.3345 20.3926 5.98675 20.2368L5.16407 21.4265C4.92848 21.7672 4.46131 21.8524 4.12062 21.6168C3.77993 21.3812 3.69472 20.9141 3.93031 20.5734L4.75261 19.3842C4.23517 18.8178 4.03332 18.1299 4.13435 17.4134C4.20299 16.9266 4.40589 16.4645 4.68552 16.0477L4.15246 15.7178C3.80027 15.4997 3.6915 15.0375 3.90952 14.6853C4.12754 14.3331 4.58979 14.2243 4.94198 14.4424L5.70227 14.913L5.75151 14.8647C6.09824 14.5245 6.42549 14.2034 6.74343 13.8562C7.2654 13.2861 7.71763 12.6905 8.06327 11.9633C8.22987 11.6128 8.37436 11.2261 8.489 10.7907L7.48685 10.6208C7.07846 10.5516 6.80351 10.1644 6.87273 9.75601C6.94195 9.34762 7.32912 9.07267 7.73751 9.14189L8.7368 9.31126C8.74473 9.21802 8.75157 9.12293 8.75728 9.02593C8.78263 8.59489 8.83143 8.18848 8.90176 7.80593C9.00117 7.26518 9.14361 6.77211 9.32343 6.32515L8.61188 5.94577C8.24638 5.75089 8.10806 5.2966 8.30294 4.9311C8.49782 4.56559 8.95211 4.42727 9.31761 4.62216L10.048 5.01158C10.4839 4.41976 11.0019 3.96962 11.5597 3.64715L11.4067 3.30951C11.2357 2.93223 11.4029 2.48778 11.7802 2.31681ZM10.7317 16.0304C10.7317 15.7257 10.9787 15.4788 11.2833 15.4788C11.588 15.4788 11.835 15.7257 11.835 16.0304C11.835 16.3351 11.588 16.5821 11.2833 16.5821C10.9787 16.5821 10.7317 16.3351 10.7317 16.0304ZM11.2833 13.9788C10.1502 13.9788 9.23169 14.8973 9.23169 16.0304C9.23169 17.1635 10.1502 18.0821 11.2833 18.0821C12.4164 18.0821 13.335 17.1635 13.335 16.0304C13.335 14.8973 12.4164 13.9788 11.2833 13.9788ZM12.9836 7.77441C12.9836 7.3602 13.3194 7.02441 13.7336 7.02441C14.1479 7.02441 14.4836 7.3602 14.4836 7.77441C14.4836 8.18863 14.1479 8.52441 13.7336 8.52441C13.3194 8.52441 12.9836 8.18863 12.9836 7.77441ZM13.7336 5.52441C12.491 5.52441 11.4836 6.53177 11.4836 7.77441C11.4836 9.01705 12.491 10.0244 13.7336 10.0244C14.9763 10.0244 15.9836 9.01705 15.9836 7.77441C15.9836 6.53177 14.9763 5.52441 13.7336 5.52441Z" 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.7732 2.69043C12.6023 2.31315 12.1578 2.1459 11.7805 2.31687C11.4032 2.48785 11.236 2.93229 11.407 3.30957L11.5599 3.64698C11.0021 3.96944 10.484 4.41956 10.048 5.0114L9.31797 4.62213C8.95246 4.42725 8.49818 4.56557 8.30329 4.93107C8.10841 5.29658 8.24673 5.75086 8.61224 5.94574L9.32343 6.32494C9.14357 6.77196 9.0011 7.2651 8.90167 7.80594C8.83135 8.18848 8.78255 8.59489 8.7572 9.02594C8.75149 9.12291 8.74465 9.21797 8.73672 9.31119L7.73789 9.1419C7.32951 9.07268 6.94233 9.34763 6.87311 9.75602C6.80389 10.1644 7.07884 10.5516 7.48723 10.6208L8.48893 10.7906C8.37429 11.2261 8.2298 11.6128 8.06318 11.9634C7.71754 12.6905 7.26531 13.2861 6.74334 13.8562C6.42541 14.2034 6.09812 14.5246 5.7514 14.8647L5.75137 14.8648L5.70237 14.9128L4.94238 14.4424C4.59018 14.2244 4.12794 14.3331 3.90992 14.6853C3.6919 15.0375 3.80067 15.4998 4.15286 15.7178L4.68557 16.0475C4.40587 16.4643 4.20292 16.9265 4.13426 17.4134C4.03321 18.13 4.23516 18.8181 4.75284 19.3845L3.93074 20.5734C3.69515 20.9141 3.78036 21.3813 4.12105 21.6169C4.46174 21.8525 4.92891 21.7673 5.1645 21.4266L5.98709 20.237C6.33473 20.3927 6.72868 20.5234 7.16871 20.6293C7.87751 20.7999 8.72362 20.9102 9.7213 20.9509C10.007 20.9626 10.3057 20.9686 10.6177 20.9686C11.2163 20.9686 11.7766 20.9085 12.3002 20.7943L12.5116 21.2928C12.6733 21.6741 13.1136 21.8521 13.4949 21.6904C13.8762 21.5286 14.0543 21.0884 13.8925 20.7071L13.7252 20.3125C14.4964 19.9482 15.1488 19.4513 15.6971 18.8694C16.1814 18.3555 16.582 17.7782 16.9136 17.1714L18.0732 17.6138C18.4602 17.7615 18.8937 17.5675 19.0413 17.1805C19.189 16.7935 18.9949 16.36 18.6079 16.2124L17.5371 15.8038C17.693 15.3907 17.8252 14.9728 17.9372 14.5583C18.0926 13.983 18.21 13.4108 18.2983 12.8621L19.3353 13.0261C19.7444 13.0908 20.1285 12.8117 20.1933 12.4025C20.258 11.9934 19.9788 11.6093 19.5697 11.5445L18.4789 11.372C18.5323 10.7312 18.5497 10.1593 18.5497 9.70104C18.5497 8.97399 18.5386 8.2604 18.4754 7.59357C18.4077 6.87969 18.2775 6.17983 18.0121 5.54537L18.7463 5.07319C19.0947 4.84913 19.1954 4.38507 18.9714 4.03669C18.7473 3.68831 18.2833 3.58752 17.9349 3.81158L17.194 4.28806C16.6751 3.75613 15.9856 3.37082 15.1006 3.14464C14.4436 2.97674 13.7027 2.95199 12.9629 3.10889L12.7732 2.69043ZM12.509 19.1852C13.3563 18.9069 14.043 18.4375 14.6054 17.8407C15.1178 17.2969 15.5313 16.6425 15.8624 15.924L15.8705 15.9064C16.1252 15.3506 16.3283 14.7622 16.4891 14.1671C16.6956 13.4024 16.8303 12.6339 16.9158 11.9207L16.9175 11.9063C17.02 11.0454 17.0497 10.2741 17.0497 9.70104C17.0497 8.9811 17.0382 8.32709 16.9821 7.73509C16.8993 6.86224 16.7251 6.19631 16.409 5.70099L16.4014 5.68952L16.3954 5.68001C16.084 5.20289 15.593 4.81869 14.7292 4.59793C14.1611 4.45275 13.476 4.46559 12.8182 4.70766C12.8112 4.71036 12.8043 4.71296 12.7973 4.71545C12.1163 4.97132 11.4525 5.47878 10.9706 6.34632L10.9677 6.35172C10.9635 6.35962 10.9592 6.36742 10.9547 6.37511C10.7065 6.82991 10.5031 7.39088 10.377 8.07715C10.3185 8.39529 10.2766 8.74035 10.2546 9.11401C10.2299 9.5344 10.1859 9.93002 10.1241 10.3038C9.97842 11.186 9.73477 11.9407 9.41793 12.6073C8.98748 13.5129 8.43333 14.2317 7.84966 14.8691C7.5034 15.2473 7.13024 15.6135 6.77054 15.9665C6.62823 16.1061 6.48802 16.2437 6.35242 16.3792C6.34433 16.3877 6.33607 16.3959 6.32765 16.404C5.90188 16.8336 5.66934 17.2699 5.61957 17.6228C5.57404 17.9457 5.66228 18.2935 6.17033 18.6339C6.46207 18.8294 6.89575 19.0208 7.51963 19.1709C8.11131 19.3133 8.8568 19.4144 9.78251 19.4522C10.0466 19.463 10.3248 19.4686 10.6177 19.4686C11.3315 19.4686 11.9541 19.3661 12.4989 19.1884L12.509 19.1852ZM13.7334 7.02441C13.3192 7.02441 12.9834 7.3602 12.9834 7.77441C12.9834 8.18863 13.3192 8.52441 13.7334 8.52441C14.1476 8.52441 14.4834 8.18863 14.4834 7.77441C14.4834 7.3602 14.1476 7.02441 13.7334 7.02441ZM11.4834 7.77441C11.4834 6.53177 12.4908 5.52441 13.7334 5.52441C14.976 5.52441 15.9834 6.53177 15.9834 7.77441C15.9834 9.01705 14.976 10.0244 13.7334 10.0244C12.4908 10.0244 11.4834 9.01705 11.4834 7.77441ZM11.2831 15.4788C10.9784 15.4788 10.7314 15.7257 10.7314 16.0304C10.7314 16.3351 10.9784 16.5821 11.2831 16.5821C11.5878 16.5821 11.8347 16.3351 11.8347 16.0304C11.8347 15.7257 11.5878 15.4788 11.2831 15.4788ZM9.23145 16.0304C9.23145 14.8973 10.15 13.9788 11.2831 13.9788C12.4162 13.9788 13.3347 14.8973 13.3347 16.0304C13.3347 17.1635 12.4162 18.0821 11.2831 18.0821C10.15 18.0821 9.23145 17.1635 9.23145 16.0304Z" 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.46967 4.20722C4.76256 3.91433 5.23744 3.91433 5.53033 4.20722L7.03507 5.71196C8.44332 4.60301 10.216 4.25 11.9999 4.25C13.6543 4.25 15.5449 4.79032 16.9298 5.74714L18.4697 4.20722C18.7626 3.91433 19.2374 3.91433 19.5303 4.20722C19.8232 4.50011 19.8232 4.97499 19.5303 5.26788L18.0442 6.75404C18.3332 7.10328 18.5795 7.49141 18.7873 7.90327C18.8687 8.0645 18.7481 8.25 18.5675 8.25H5.51801C5.33659 8.25 5.216 8.06296 5.29771 7.90098C5.4992 7.50152 5.72888 7.12509 5.98588 6.78409L4.46967 5.26788C4.17678 4.97499 4.17678 4.50011 4.46967 4.20722ZM19.503 9.9402C19.4775 9.82822 19.3771 9.75 19.2622 9.75H13C12.8619 9.75 12.75 9.86193 12.75 10V19.4608C12.75 19.605 12.8718 19.7196 13.0155 19.707C14.4414 19.5823 15.8243 19.1714 16.9623 18.2847L18.4697 19.792C18.7626 20.0849 19.2374 20.0849 19.5303 19.792C19.8232 19.4992 19.8232 19.0243 19.5303 18.7314L18.0205 17.2215C18.9774 15.9937 19.5718 14.3492 19.7158 12.75H21C21.4142 12.75 21.75 12.4142 21.75 12C21.75 11.5858 21.4142 11.25 21 11.25H19.7138C19.6752 10.8331 19.6055 10.3893 19.503 9.9402ZM11.25 19.4562C11.25 19.6011 11.1272 19.7159 10.9829 19.7021C9.56986 19.5666 8.17687 19.1336 7.04553 18.2768L5.53033 19.792C5.23744 20.0849 4.76256 20.0849 4.46967 19.792C4.17678 19.4992 4.17678 19.0243 4.46967 18.7314L5.97192 17.2291C4.9837 15.9958 4.41606 14.3663 4.28138 12.75H3C2.58579 12.75 2.25 12.4142 2.25 12C2.25 11.5858 2.58579 11.25 3 11.25H4.29494C4.34242 10.83 4.42657 10.3838 4.543 9.93361C4.57113 9.82486 4.66997 9.75 4.78229 9.75H11C11.1381 9.75 11.25 9.86193 11.25 10L11.25 19.4562Z" 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.53033 4.20722C5.23744 3.91433 4.76256 3.91433 4.46967 4.20722C4.17678 4.50011 4.17678 4.97499 4.46967 5.26788L5.98591 6.78412C5.66814 7.20569 5.39208 7.68138 5.15997 8.1872C4.71141 9.16473 4.40485 10.2775 4.29494 11.25H3C2.58579 11.25 2.25 11.5858 2.25 12C2.25 12.4142 2.58579 12.75 3 12.75H4.28138C4.41606 14.3663 4.9837 15.9958 5.97192 17.2291L4.46967 18.7314C4.17678 19.0243 4.17678 19.4992 4.46967 19.792C4.76256 20.0849 5.23744 20.0849 5.53033 19.792L7.04553 18.2768C8.44828 19.3391 10.2533 19.75 12 19.75C13.774 19.75 15.5554 19.381 16.9623 18.2847L18.4697 19.792C18.7626 20.0849 19.2374 20.0849 19.5303 19.792C19.8232 19.4992 19.8232 19.0243 19.5303 18.7314L18.0205 17.2215C18.9774 15.9937 19.5718 14.3492 19.7158 12.75H21C21.4142 12.75 21.75 12.4142 21.75 12C21.75 11.5858 21.4142 11.25 21 11.25H19.7138C19.6246 10.2854 19.3686 9.17633 18.9251 8.19195C18.6913 7.67283 18.4001 7.18392 18.0442 6.75398L19.5303 5.26788C19.8232 4.97499 19.8232 4.50011 19.5303 4.20722C19.2374 3.91433 18.7626 3.91433 18.4697 4.20722L16.9298 5.7471C15.545 4.79031 13.6544 4.25 12 4.25C10.2161 4.25 8.44336 4.60302 7.03511 5.71199L5.53033 4.20722ZM7.52435 16.7138C6.40166 15.616 5.75 13.8 5.75 12C5.75 11.3801 5.89376 10.5619 6.15855 9.75L11.25 9.75V18.2202C9.78026 18.101 8.45199 17.6208 7.52435 16.7138ZM12.75 18.2237C14.2478 18.1153 15.5365 17.6631 16.4668 16.7226C17.5546 15.6228 18.25 13.7472 18.25 12C18.25 11.3556 18.1376 10.5417 17.9037 9.75L12.75 9.75V18.2237ZM17.2676 8.25C17.0461 7.87972 16.791 7.56458 16.5052 7.31361C15.4241 6.36445 13.5936 5.75 12 5.75C10.1623 5.75 8.61816 6.16673 7.53652 7.27407C7.27752 7.53922 7.03336 7.86848 6.81312 8.25L17.2676 8.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="M14.8327 5.41837C14.8016 5.23959 14.7783 5.10375 14.7628 5.01282C14.7589 4.99276 14.7551 4.97269 14.7513 4.95263C14.735 4.86639 14.7188 4.78032 14.6932 4.6962C14.6726 4.62829 14.6422 4.53482 14.6007 4.42416C14.5186 4.20527 14.3887 3.9069 14.1985 3.6025C13.8313 3.01503 13.133 2.25 12 2.25H9C7.91517 2.25 7.09978 2.96131 6.62307 3.50612C6.42843 3.72856 6.26767 3.94889 6.14377 4.13492C6.09636 4.20611 6.01709 4.25 5.93156 4.25H4C3.0335 4.25 2.25 5.0335 2.25 6V7.93934C2.25 8.81738 2.5988 9.65946 3.21967 10.2803C3.84054 10.9012 4.68262 11.25 5.56066 11.25H7.38783C7.48416 11.25 7.55635 11.3382 7.53767 11.4327C7.40309 12.1135 7.22893 13.0635 7.07048 14.1409C6.75664 16.275 6.49236 18.9856 6.75579 21.093C6.80271 21.4683 7.12176 21.75 7.5 21.75H19C19.291 21.75 19.5558 21.5817 19.6792 21.3181C19.8026 21.0547 19.7622 20.7434 19.5762 20.5199L19.5737 20.5168L19.5573 20.4966C19.542 20.4774 19.5179 20.4469 19.486 20.4053C19.4223 20.3221 19.3275 20.1946 19.2094 20.0248C18.9731 19.6852 18.644 19.177 18.2834 18.5159C17.5617 17.1927 16.7177 15.2641 16.2354 12.8529C15.8331 10.8414 15.512 9.15458 15.272 7.85787C15.2409 7.69003 15.0547 7.60208 14.9052 7.68451L14.3668 7.98146C13.2434 8.62002 11.801 8.93333 10.6819 8.60131C10.095 8.42716 9.54979 8.05589 9.26638 7.41755C8.9904 6.79592 9.02392 6.05719 9.28872 5.26279C9.41971 4.86983 9.84445 4.65746 10.2374 4.78845C10.6304 4.91944 10.8427 5.34418 10.7117 5.73713C10.5161 6.32403 10.5662 6.6486 10.6373 6.80888C10.7011 6.95244 10.8336 7.08169 11.1086 7.16327C11.7117 7.34223 12.7273 7.18916 13.629 6.67546L13.6379 6.67035C13.638 6.67034 13.638 6.67035 13.638 6.67036C13.638 6.67038 13.638 6.67039 13.638 6.67038L14.771 6.04554C14.8647 5.99388 14.9151 5.88833 14.8965 5.78298C14.8725 5.64649 14.8512 5.52482 14.8327 5.41837Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@generated This file is auto-generated. Do not edit manually.
|
|
3
|
+
@version 1.0.0
|
|
4
|
+
@downloadUrl https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip
|
|
5
|
+
-->
|
|
6
|
+
<script setup>
|
|
7
|
+
import { computed, useAttrs } from "vue";
|
|
8
|
+
|
|
9
|
+
const props = defineProps({
|
|
10
|
+
size: {
|
|
11
|
+
type: [String, Number],
|
|
12
|
+
default: "1em",
|
|
13
|
+
},
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "",
|
|
17
|
+
},
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const attrs = useAttrs();
|
|
25
|
+
|
|
26
|
+
const normalizedSize = computed(() =>
|
|
27
|
+
typeof props.size === "number" ? `${props.size}px` : props.size,
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const accessibleLabel = computed(
|
|
31
|
+
() => props.ariaLabel || props.title || undefined,
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const decorative = computed(() => !accessibleLabel.value);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<template>
|
|
38
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="attrs" :width="normalizedSize" :height="normalizedSize" :aria-hidden="decorative ? 'true' : undefined" :aria-label="accessibleLabel" :role="decorative ? undefined : 'img'">
|
|
39
|
+
<title v-if="props.title">{{ props.title }}</title>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7398 4.8767C14.7365 4.85701 14.7324 4.83746 14.7276 4.8181L14.727 4.81571L14.7262 4.81258L14.724 4.80411L14.7172 4.77867C14.7115 4.75806 14.7036 4.73023 14.6932 4.6962C14.6726 4.62829 14.6422 4.53482 14.6007 4.42416C14.5186 4.20527 14.3887 3.9069 14.1985 3.6025C13.8313 3.01503 13.133 2.25 12 2.25H9C7.91517 2.25 7.09978 2.96131 6.62307 3.50612C6.38652 3.77646 6.2 4.04368 6.0689 4.25H4C3.0335 4.25 2.25 5.0335 2.25 6V7.93934C2.25 8.81738 2.5988 9.65946 3.21967 10.2803C3.84054 10.9012 4.68262 11.25 5.56066 11.25H7.57412C7.56234 11.3085 7.55017 11.3694 7.53767 11.4327C7.40309 12.1135 7.22893 13.0635 7.07048 14.1409C6.75664 16.275 6.49236 18.9856 6.75579 21.093C6.80271 21.4683 7.12176 21.75 7.5 21.75H19C19.291 21.75 19.5558 21.5817 19.6792 21.3181C19.8026 21.0547 19.7622 20.7434 19.5762 20.5199L19.5737 20.5168L19.5573 20.4966C19.542 20.4774 19.5179 20.4469 19.486 20.4053C19.4223 20.3221 19.3275 20.1946 19.2094 20.0248C18.9731 19.6852 18.644 19.177 18.2834 18.5159C17.5617 17.1927 16.7177 15.2641 16.2354 12.8529C15.7364 10.3576 15.3622 8.36193 15.1129 6.99084C14.9883 6.3053 14.8948 5.77594 14.8327 5.41837C14.8016 5.23959 14.7783 5.10375 14.7628 5.01282L14.7454 4.91035L14.7398 4.8767ZM6.5 5.75C6.78394 5.75 7.04352 5.58965 7.17063 5.33578L7.17564 5.32616C7.18091 5.31613 7.18976 5.29953 7.20207 5.2773C7.22673 5.23274 7.26495 5.16617 7.31569 5.085C7.41813 4.92109 7.56657 4.70572 7.75193 4.49388C8.15022 4.03869 8.58483 3.75 9 3.75H12C12.367 3.75 12.6687 3.98497 12.9265 4.3975C13.0488 4.5931 13.1376 4.79473 13.1962 4.95084C13.225 5.02768 13.2453 5.09046 13.2579 5.13192L13.2665 5.16106L13.2841 5.26452C13.2998 5.35719 13.3234 5.49479 13.3548 5.67538C13.4003 5.93692 13.4622 6.28862 13.5405 6.72455C12.6615 7.19881 11.6921 7.33644 11.1085 7.16331C10.8336 7.08173 10.701 6.95248 10.6373 6.80892C10.5661 6.64864 10.5161 6.32407 10.7117 5.73717C10.8427 5.34422 10.6303 4.91948 10.2374 4.78849C9.84442 4.6575 9.41968 4.86987 9.28869 5.26283C9.02388 6.05723 8.99037 6.79596 9.26635 7.41759C9.54976 8.05593 10.0949 8.4272 10.6819 8.60135C11.6263 8.88157 12.8012 8.70211 13.8201 8.25541C14.0587 9.54136 14.3735 11.1918 14.7646 13.1471C15.2823 15.7359 16.1883 17.8073 16.9666 19.2341C17.1772 19.6203 17.3787 19.9597 17.5611 20.25H8.18205C8.06125 18.4524 8.27812 16.2386 8.55452 14.3591C8.70857 13.3115 8.87816 12.3865 9.0092 11.7236C9.07468 11.3923 9.13043 11.1271 9.16965 10.9453C9.18926 10.8544 9.20472 10.7845 9.2152 10.7376L9.22706 10.685L9.22998 10.6722L9.23081 10.6686C9.28218 10.4459 9.22921 10.2119 9.08693 10.0331C8.94464 9.85422 8.72856 9.75 8.5 9.75H5.56066C5.08044 9.75 4.61989 9.55923 4.28033 9.21967C3.94077 8.88011 3.75 8.41956 3.75 7.93934V6C3.75 5.86193 3.86193 5.75 4 5.75H6.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="M12 2.25C6.61522 2.25 2.25 6.61522 2.25 12C2.25 17.3848 6.61522 21.75 12 21.75C17.3848 21.75 21.75 17.3848 21.75 12C21.75 6.61522 17.3848 2.25 12 2.25ZM8.31136 4.61852C5.60679 5.97267 3.75 8.7695 3.75 12C3.75 15.9956 6.59049 19.3278 10.3623 20.0875V19.7623C10.3623 18.5027 9.37681 17.5123 7.94824 17.5123C7.14013 17.5123 6.40193 17.3155 5.86949 16.7944C5.33402 16.2705 5.13574 15.5454 5.13574 14.7701C5.13574 13.5668 5.77448 12.6056 6.62758 11.9711C7.47313 11.3421 8.56959 10.9967 9.63574 10.9967C10.3721 10.9967 11.017 11.1835 11.5345 11.3389L11.5759 11.3513C12.1088 11.5114 12.4628 11.6178 12.7998 11.6178C12.8028 11.6178 12.8085 11.6175 12.8199 11.6132C12.8324 11.6085 12.8546 11.5979 12.8853 11.5744C12.9501 11.5251 13.0327 11.4345 13.1156 11.2935C13.2855 11.0042 13.3857 10.6252 13.3857 10.3287C13.3857 10.3155 13.3716 10.2052 13.1938 9.99694C13.0271 9.80165 12.7777 9.59314 12.4812 9.39791C12.1883 9.20498 11.8761 9.04249 11.6052 8.93066C11.4876 8.88211 11.3839 8.8456 11.2978 8.82048C11.2775 8.86458 11.2541 8.92016 11.2277 8.98945C11.1971 9.0694 11.1677 9.15321 11.1347 9.24686L11.1344 9.24787C11.1028 9.33772 11.067 9.43955 11.0296 9.53609C10.9678 9.69547 10.853 9.97999 10.6462 10.1868C10.4857 10.3473 10.1904 10.5206 9.81828 10.4283C9.52974 10.3567 9.36171 10.1574 9.29843 10.0769C9.1791 9.92522 9.07389 9.70993 9.01023 9.57965L8.98763 9.53362C8.92845 9.41426 8.88252 9.32757 8.84346 9.26499C8.78498 9.27775 8.74432 9.2968 8.71341 9.31499C8.64957 9.35255 8.58418 9.41215 8.49106 9.52275C8.47802 9.53824 8.45959 9.56118 8.43723 9.58902C8.35835 9.6872 8.2306 9.84623 8.1182 9.95346C7.93347 10.1297 7.64246 10.3295 7.22995 10.3295C6.88978 10.3295 6.49544 10.2558 6.15421 10.0098C5.79373 9.74986 5.57703 9.35835 5.51021 8.89354C5.43146 8.34571 5.66513 7.77404 5.91319 7.33503C6.18112 6.86083 6.55806 6.38141 6.96989 5.96958C7.14198 5.79748 7.32491 5.63961 7.48365 5.50261C7.51845 5.47258 7.5521 5.44354 7.5842 5.41559C7.77274 5.25142 7.93273 5.10442 8.07747 4.93585C8.15716 4.84304 8.23593 4.7394 8.31136 4.61852ZM16.9588 18.594C18.5907 17.3648 19.7517 15.544 20.1229 13.4503H20.0918C20.0632 13.4503 20.0103 13.4601 19.8786 13.5495C19.8477 13.5704 19.8181 13.5917 19.781 13.6183L19.7757 13.6221C19.7403 13.6475 19.6916 13.6824 19.6428 13.7142C19.5948 13.7455 19.5242 13.7889 19.4402 13.8254C19.3579 13.8612 19.2253 13.9073 19.0606 13.9073C18.8174 13.9073 18.6263 13.8 18.5546 13.7589C18.4555 13.7021 18.3537 13.6295 18.2575 13.5569C18.0962 13.4353 17.8844 13.2627 17.6232 13.0499L17.4659 12.9217C17.4137 12.8803 17.3662 12.842 17.3222 12.8066C17.0139 12.5582 16.8848 12.4542 16.6114 12.4542C16.5054 12.4542 16.3134 12.5248 16.121 12.742C15.9321 12.9552 15.8379 13.2066 15.8379 13.3917C15.8379 13.4668 15.8689 13.5791 16.0161 13.7469C16.1671 13.919 16.3908 14.0919 16.6652 14.2719C16.7993 14.3598 16.9351 14.4429 17.0726 14.5267L17.0905 14.5376C17.2177 14.6152 17.3521 14.6972 17.4705 14.7758C17.5892 14.8547 17.7307 14.9551 17.8485 15.0722C17.9405 15.1637 18.17 15.4099 18.17 15.7824C18.17 16.3543 17.8831 16.7516 17.4435 17.2507L17.4406 17.2539C16.9754 17.7759 16.9276 17.9557 16.9276 18.1143C16.9276 18.2213 16.9349 18.3054 16.9442 18.4127C16.9488 18.4655 16.9539 18.5242 16.9588 18.594Z" 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="M2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.3111 4.61865C5.60667 5.97285 3.75 8.7696 3.75 12C3.75 15.9956 6.59049 19.3278 10.3623 20.0875V19.7624C10.3623 18.5028 9.37681 17.5124 7.94824 17.5124C7.14013 17.5124 6.40193 17.3155 5.86949 16.7945C5.33402 16.2705 5.13574 15.5454 5.13574 14.7702C5.13574 13.5668 5.77448 12.6057 6.62758 11.9711C7.47313 11.3422 8.56959 10.9967 9.63574 10.9967C10.3721 10.9967 11.017 11.1835 11.5345 11.339L11.5759 11.3514C12.1088 11.5115 12.4628 11.6178 12.7998 11.6178C12.8028 11.6178 12.8085 11.6176 12.8199 11.6133C12.8324 11.6086 12.8546 11.5979 12.8853 11.5745C12.9501 11.5252 13.0327 11.4346 13.1156 11.2935C13.2855 11.0043 13.3857 10.6253 13.3857 10.3288C13.3857 10.3156 13.3714 10.2053 13.1936 9.99702C13.0269 9.80173 12.7775 9.59322 12.481 9.39798C12.1881 9.20506 11.8758 9.04257 11.605 8.93074C11.4874 8.88219 11.3836 8.84568 11.2976 8.82056C11.2773 8.86466 11.2539 8.92024 11.2274 8.98953C11.2007 9.05946 11.1748 9.1323 11.1467 9.21213C11.1467 9.21213 11.1467 9.21214 11.1467 9.21213C11.1427 9.22354 11.1387 9.2351 11.1346 9.2468L11.1341 9.24795C11.1026 9.33781 11.0668 9.43961 11.0293 9.53617C10.9676 9.69555 10.8528 9.98007 10.646 10.1869C10.4854 10.3474 10.1902 10.5207 9.81805 10.4284C9.52952 10.3568 9.36149 10.1575 9.29821 10.077C9.17887 9.9253 9.07366 9.71 9.01 9.57973L8.98741 9.53369C8.92823 9.41434 8.8823 9.32765 8.84323 9.26507C8.78476 9.27783 8.74409 9.29688 8.71318 9.31507C8.64935 9.35263 8.58396 9.41223 8.49084 9.52282C8.47781 9.53829 8.45942 9.56119 8.4371 9.58897C8.35823 9.68716 8.23039 9.8463 8.11798 9.95354C7.93325 10.1298 7.64224 10.3296 7.22973 10.3296C6.88955 10.3296 6.49521 10.2559 6.15399 10.0098C5.79351 9.74994 5.57681 9.35843 5.50999 8.89362C5.43123 8.34579 5.66491 7.77412 5.91296 7.33511C6.1809 6.86091 6.55784 6.38149 6.96967 5.96965C7.14177 5.79756 7.3247 5.63968 7.48344 5.50268C7.51824 5.47265 7.55188 5.44362 7.58398 5.41567C7.77252 5.2515 7.93251 5.1045 8.07725 4.93593C8.15693 4.84313 8.23569 4.7395 8.3111 4.61865ZM10.1703 3.95361C9.9611 4.83619 9.62315 5.4381 9.21529 5.91311C8.99718 6.16712 8.76995 6.37194 8.56902 6.54691C8.52677 6.5837 8.48633 6.61864 8.44737 6.65232C8.29184 6.78672 8.15988 6.90077 8.03033 7.03031C7.69852 7.36212 7.40981 7.73516 7.21891 8.07301C7.12368 8.24155 7.06076 8.38733 7.02594 8.50367C7.0088 8.56093 7.00024 8.60519 6.99661 8.63701C6.9932 8.66695 6.99475 8.68038 6.99475 8.68038C7.0041 8.74543 7.01892 8.77509 7.02402 8.784C7.02791 8.79081 7.03092 8.7929 7.03092 8.7929C7.03559 8.79626 7.06296 8.81295 7.12635 8.82256C7.14539 8.80087 7.16458 8.7767 7.19054 8.744C7.22471 8.70096 7.27063 8.64314 7.34338 8.55673C7.4775 8.39743 7.6723 8.18713 7.95248 8.02227C8.24335 7.85111 8.58923 7.74998 9 7.74998C9.45297 7.74998 9.75757 8.01381 9.92686 8.21095C9.99058 8.0708 10.0706 7.9213 10.172 7.78733C10.3424 7.5621 10.6528 7.28188 11.124 7.28188C11.455 7.28188 11.8456 7.40724 12.1775 7.54427C12.5372 7.69281 12.934 7.9002 13.3061 8.14526C13.6747 8.38802 14.0463 8.68561 14.3345 9.02316C14.6115 9.34773 14.8857 9.79704 14.8857 10.3288C14.8857 10.8994 14.7106 11.5399 14.4088 12.0534C14.1233 12.5393 13.5916 13.1178 12.7998 13.1178C12.2326 13.1178 11.6757 12.949 11.2176 12.8102L11.1031 12.7756C10.5865 12.6204 10.1299 12.4967 9.63574 12.4967C8.87376 12.4967 8.09523 12.7489 7.5228 13.1747C6.95794 13.5948 6.63574 14.1454 6.63574 14.7702C6.63574 15.3074 6.77145 15.5784 6.91859 15.7224C7.06877 15.8694 7.36183 16.0124 7.94824 16.0124C10.129 16.0124 11.8623 17.6002 11.8623 19.7624V20.2489C11.9081 20.2496 11.954 20.25 12 20.25C13.2186 20.25 14.3754 19.9858 15.4164 19.5116C15.4604 19.4298 15.4678 19.399 15.474 19.3631C15.4886 19.2791 15.4944 19.1265 15.465 18.7327L15.4645 18.7267C15.4626 18.6973 15.4593 18.6587 15.4555 18.6139C15.4441 18.4791 15.4278 18.2874 15.4278 18.1144C15.4278 17.3597 15.8245 16.8133 16.3195 16.2576C16.4283 16.1341 16.5041 16.0415 16.5572 15.9713C16.4818 15.9234 16.3956 15.8708 16.2956 15.8098L16.2916 15.8074C16.1558 15.7246 16.0001 15.6295 15.8427 15.5263C15.534 15.3239 15.1748 15.0625 14.8885 14.7362C14.5984 14.4055 14.3379 13.9553 14.3379 13.3917C14.3379 12.7682 14.6187 12.1758 14.9982 11.7474C15.3741 11.3231 15.9439 10.9542 16.6114 10.9542C17.4565 10.9542 18.0077 11.4189 18.302 11.6669C18.3066 11.6708 18.3112 11.6747 18.3158 11.6785C18.3475 11.7052 18.3761 11.7292 18.4016 11.7494L18.4089 11.7552L18.578 11.893C18.7848 12.0614 18.9428 12.1901 19.0673 12.2875C19.277 12.1484 19.6282 11.9503 20.0918 11.9503H20.2499C20.2231 7.41683 16.5398 3.75 12 3.75C11.3712 3.75 10.7588 3.82035 10.1703 3.95361ZM20.1229 13.4503C19.7516 15.544 18.5907 17.3647 16.959 18.5939C16.954 18.5242 16.949 18.4657 16.9444 18.4129C16.9351 18.3055 16.9278 18.2215 16.9278 18.1144C16.9278 17.9558 16.9755 17.776 17.4408 17.254L17.4437 17.2508C17.8833 16.7517 18.17 16.3543 18.17 15.7824C18.17 15.4099 17.9405 15.1638 17.8485 15.0723C17.7307 14.9552 17.5892 14.8547 17.4705 14.7759C17.3521 14.6972 17.2177 14.6153 17.0905 14.5377L17.0726 14.5268C16.9351 14.4429 16.7993 14.3598 16.6652 14.2719C16.3908 14.092 16.1671 13.919 16.0161 13.7469C15.8689 13.5791 15.8379 13.4669 15.8379 13.3917C15.8379 13.2067 15.9321 12.9553 16.121 12.7421C16.3134 12.5248 16.5054 12.4542 16.6114 12.4542C16.8848 12.4542 17.0139 12.5582 17.3222 12.8066C17.366 12.8419 17.4139 12.8805 17.4659 12.9217L17.6232 13.0499C17.8845 13.2628 18.0962 13.4353 18.2575 13.5569C18.3537 13.6295 18.4555 13.7021 18.5546 13.759C18.6263 13.8 18.8174 13.9074 19.0606 13.9074C19.2253 13.9074 19.3579 13.8612 19.4402 13.8254C19.5242 13.7889 19.5948 13.7456 19.6428 13.7142C19.6915 13.6825 19.74 13.6477 19.7753 13.6224L19.781 13.6183C19.7856 13.615 19.7903 13.6117 19.7947 13.6085C19.8256 13.5864 19.8516 13.5678 19.8786 13.5495C20.0103 13.4601 20.0632 13.4503 20.0918 13.4503H20.1229Z" 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 8.5C5.25 4.77208 8.27208 1.75 12 1.75C15.7279 1.75 18.75 4.77208 18.75 8.5C18.75 11.9744 16.125 14.8357 12.75 15.2088V21.5C12.75 21.9142 12.4142 22.25 12 22.25C11.5858 22.25 11.25 21.9142 11.25 21.5V15.2088C7.87504 14.8357 5.25 11.9744 5.25 8.5ZM3.5 14.25C3.08579 14.25 2.75 14.5858 2.75 15C2.75 16.6312 3.15996 17.9045 3.81346 18.8848C4.46383 19.8603 5.32562 20.5013 6.16459 20.9208C7.00063 21.3388 7.82758 21.5441 8.4392 21.646C8.74679 21.6973 9.00475 21.7232 9.18875 21.7364C9.28088 21.743 9.35484 21.7464 9.40763 21.7481C9.43841 21.7491 9.4692 21.75 9.5 21.75C9.91421 21.75 10.25 21.4142 10.25 21C10.25 19.3688 9.84004 18.0955 9.18654 17.1152C8.53617 16.1397 7.67438 15.4987 6.83541 15.0792C5.99937 14.6612 5.17242 14.4559 4.5608 14.354C4.21189 14.2958 3.85453 14.2504 3.5 14.25ZM20.5 14.25C20.9142 14.25 21.25 14.5858 21.25 15C21.25 16.6312 20.84 17.9045 20.1865 18.8848C19.5362 19.8603 18.6744 20.5013 17.8354 20.9208C16.9994 21.3388 16.1724 21.5441 15.5608 21.646C15.2532 21.6973 14.9952 21.7232 14.8112 21.7364C14.7191 21.743 14.6452 21.7464 14.5924 21.7481L14.5 21.75C14.0858 21.75 13.75 21.4142 13.75 21C13.75 19.3688 14.16 18.0955 14.8135 17.1152C15.4638 16.1397 16.3256 15.4987 17.1646 15.0792C18.0006 14.6612 18.8276 14.4559 19.4392 14.354C19.7468 14.3027 20.0048 14.2768 20.1888 14.2636C20.2809 14.257 20.3548 14.2536 20.4076 14.2519C20.4384 14.2509 20.4692 14.25 20.5 14.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="M18.75 8.5C18.75 11.9744 16.125 14.8357 12.75 15.2088V21.5C12.75 21.9142 12.4142 22.25 12 22.25C11.5858 22.25 11.25 21.9142 11.25 21.5V15.2088C7.87504 14.8357 5.25 11.9744 5.25 8.5C5.25 4.77208 8.27208 1.75 12 1.75C15.7279 1.75 18.75 4.77208 18.75 8.5ZM12 3.25C9.1005 3.25 6.75 5.60051 6.75 8.5C6.75 11.3995 9.1005 13.75 12 13.75C14.8995 13.75 17.25 11.3995 17.25 8.5C17.25 5.60051 14.8995 3.25 12 3.25ZM3.5 14.25V15C3.5 14.25 3.50039 14.25 3.5008 14.25L3.50174 14.25L3.50405 14.25L3.5103 14.25L3.52931 14.2503C3.54482 14.2505 3.56596 14.251 3.59237 14.2519C3.64516 14.2536 3.71912 14.257 3.81125 14.2636C3.99525 14.2768 4.25321 14.3027 4.5608 14.354C5.17242 14.4559 5.99937 14.6612 6.83541 15.0792C7.67438 15.4987 8.53617 16.1397 9.18654 17.1152C9.84004 18.0955 10.25 19.3688 10.25 21C10.25 21.4142 9.91421 21.75 9.5 21.75V21C9.5 21.75 9.49961 21.75 9.4992 21.75L9.49826 21.75L9.49595 21.75L9.4897 21.75L9.47069 21.7497C9.45518 21.7495 9.43404 21.749 9.40763 21.7481C9.35484 21.7464 9.28088 21.743 9.18875 21.7364C9.00475 21.7232 8.74679 21.6973 8.4392 21.646C7.82758 21.5441 7.00063 21.3388 6.16459 20.9208C5.32562 20.5013 4.46383 19.8603 3.81346 18.8848C3.15996 17.9045 2.75 16.6312 2.75 15C2.75 14.5858 3.08579 14.25 3.5 14.25ZM8.70484 20.1696C8.59757 19.2234 8.3085 18.5023 7.93846 17.9473C7.46383 17.2353 6.82562 16.7513 6.16459 16.4208C5.50063 16.0888 4.82758 15.9191 4.3142 15.8335L4.29516 15.8304C4.40243 16.7766 4.6915 17.4977 5.06154 18.0527C5.53617 18.7647 6.17438 19.2487 6.83541 19.5792C7.49937 19.9112 8.17242 20.0809 8.6858 20.1665L8.70484 20.1696ZM20.5 14.25C20.9142 14.25 21.25 14.5858 21.25 15C21.25 16.6312 20.84 17.9045 20.1865 18.8848C19.5362 19.8603 18.6744 20.5013 17.8354 20.9208C16.9994 21.3388 16.1724 21.5441 15.5608 21.646C15.2532 21.6973 14.9952 21.7232 14.8112 21.7364C14.7191 21.743 14.6452 21.7464 14.5924 21.7481C14.566 21.749 14.5448 21.7495 14.5293 21.7497L14.5103 21.75L14.504 21.75L14.5017 21.75L14.5008 21.75C14.5004 21.75 14.5 21.75 14.5 21V21.75C14.0858 21.75 13.75 21.4142 13.75 21C13.75 19.3688 14.16 18.0955 14.8135 17.1152C15.4638 16.1397 16.3256 15.4987 17.1646 15.0792C18.0006 14.6612 18.8276 14.4559 19.4392 14.354C19.7468 14.3027 20.0048 14.2768 20.1888 14.2636C20.2809 14.257 20.3548 14.2536 20.4076 14.2519C20.434 14.251 20.4552 14.2505 20.4707 14.2503L20.4897 14.25L20.496 14.25L20.4983 14.25L20.4992 14.25C20.4996 14.25 20.5 14.25 20.5 15V14.25ZM19.7048 15.8304L19.6858 15.8335C19.1724 15.9191 18.4994 16.0888 17.8354 16.4208C17.1744 16.7513 16.5362 17.2353 16.0615 17.9473C15.6915 18.5023 15.4024 19.2234 15.2952 20.1696L15.3142 20.1665C15.8276 20.0809 16.5006 19.9112 17.1646 19.5792C17.8256 19.2487 18.4638 18.7647 18.9385 18.0527C19.3085 17.4977 19.5976 16.7766 19.7048 15.8304Z" fill="currentColor"/>
|
|
41
|
+
</svg>
|
|
42
|
+
</template>
|