├── .changeset
├── README.md
├── clear-melons-greet.md
├── cold-trams-send.md
├── config.json
├── darkside-0.md
├── darkside-1.md
├── darkside-2.md
├── darkside-3.md
├── darkside-4.md
├── floppy-mugs-kneel.md
├── fuzzy-taxes-try.md
├── grumpy-melons-grab.md
├── poor-brooms-tickle.md
└── tiny-regions-hope.md
├── .eslintrc.js
├── .git-blame-ignore-revs
├── .github
├── ISSUE_TEMPLATE
│ ├── bug-report.md
│ ├── feature-request.md
│ ├── in-the-wild.yml
│ ├── new-component.yml
│ ├── new-icon.yaml
│ ├── token-missing.md
│ ├── update-component.yml
│ └── update-icon.yml
├── PULL_REQUEST_TEMPLATE.md
├── actions
│ ├── build-website
│ │ └── action.yml
│ └── setup
│ │ └── action.yml
├── dependabot.yml
└── workflows
│ ├── aksel-dev.yml
│ ├── aksel-prod.yml
│ ├── backup-sanity.yml
│ ├── chromatic.yml
│ ├── ci.yml
│ ├── e2e-optimized.yml
│ ├── figma-config.yml
│ ├── push-to-cdn.yaml
│ ├── referansesider-spa-deploy.yml
│ ├── release.yml
│ ├── stale.yml
│ └── update-article-views.yml
├── .gitignore
├── .husky
├── .gitignore
├── _
│ └── husky.sh
├── post-checkout
├── post-merge
└── pre-commit
├── .prettierignore
├── .storybook
├── docs
│ ├── PilotMigration.mdx
│ ├── PilotSetup.mdx
│ ├── PilotsChangelog.mdx
│ ├── PilotsIntro.mdx
│ ├── PilotsTokens.mdx
│ ├── assets
│ │ ├── aksel-thumbnail.png
│ │ ├── components.png
│ │ └── setup.png
│ └── getting-started.mdx
├── layout.css
├── main.ts
├── manager.ts
├── preview.tsx
├── public
│ └── logo.svg
└── theme.js
├── .vscode
├── extensions.json
└── settings.json
├── .yarn
└── releases
│ └── yarn-4.4.0.cjs
├── .yarnrc.yml
├── @navikt
├── aksel-icons
│ ├── .gitignore
│ ├── .svgrrc.js
│ ├── CHANGELOG.md
│ ├── CONTRIBUTING.md
│ ├── README.md
│ ├── __tests__
│ │ ├── figma.test.ts
│ │ ├── validate-config.test.ts
│ │ ├── validate-files.test.ts
│ │ ├── validate-svg-parsing.test.ts
│ │ └── validate-svg.test.ts
│ ├── config
│ │ ├── cleanTypes.js
│ │ ├── figma
│ │ │ ├── fetch-icons.ts
│ │ │ ├── icon-name.ts
│ │ │ ├── index.ts
│ │ │ └── make-configs.ts
│ │ ├── index-template.js
│ │ ├── metadata.js
│ │ ├── parse-svg.js
│ │ ├── template.js
│ │ └── zip.js
│ ├── figma-plugin
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── manifest.json
│ │ ├── package.json
│ │ ├── scripts
│ │ │ └── vite
│ │ │ │ ├── vite-inline-svg.ts
│ │ │ │ └── vite-svgr-component.ts
│ │ ├── src
│ │ │ ├── assets
│ │ │ │ ├── cover.png
│ │ │ │ ├── gh-cover.png
│ │ │ │ ├── logo.png
│ │ │ │ └── logo.svg
│ │ │ ├── plugin
│ │ │ │ └── plugin.ts
│ │ │ └── ui
│ │ │ │ ├── App.tsx
│ │ │ │ ├── app.css
│ │ │ │ ├── index.html
│ │ │ │ ├── main.tsx
│ │ │ │ ├── utils.ts
│ │ │ │ └── vite-env.d.ts
│ │ ├── tsconfig.json
│ │ ├── tsconfig.node.json
│ │ ├── vite.config.plugin.ts
│ │ └── vite.config.ui.ts
│ ├── icons.stories.tsx
│ ├── icons
│ │ ├── Airplane.svg
│ │ ├── Airplane.yml
│ │ ├── AirplaneFill.svg
│ │ ├── AirplaneFill.yml
│ │ ├── AlignBottom.svg
│ │ ├── AlignBottom.yml
│ │ ├── AlignBottomFill.svg
│ │ ├── AlignBottomFill.yml
│ │ ├── AlignCenter.svg
│ │ ├── AlignCenter.yml
│ │ ├── AlignCenterFill.svg
│ │ ├── AlignCenterFill.yml
│ │ ├── AlignLeft.svg
│ │ ├── AlignLeft.yml
│ │ ├── AlignLeftFill.svg
│ │ ├── AlignLeftFill.yml
│ │ ├── AlignMiddle.svg
│ │ ├── AlignMiddle.yml
│ │ ├── AlignMiddleFill.svg
│ │ ├── AlignMiddleFill.yml
│ │ ├── AlignRight.svg
│ │ ├── AlignRight.yml
│ │ ├── AlignRightFill.svg
│ │ ├── AlignRightFill.yml
│ │ ├── AlignTop.svg
│ │ ├── AlignTop.yml
│ │ ├── AlignTopFill.svg
│ │ ├── AlignTopFill.yml
│ │ ├── Allergens.svg
│ │ ├── Allergens.yml
│ │ ├── AllergensFill.svg
│ │ ├── AllergensFill.yml
│ │ ├── Angle.svg
│ │ ├── Angle.yml
│ │ ├── AngleRulerCircle.svg
│ │ ├── AngleRulerCircle.yml
│ │ ├── AngleRulerCircleFill.svg
│ │ ├── AngleRulerCircleFill.yml
│ │ ├── AngleRulerTriangle.svg
│ │ ├── AngleRulerTriangle.yml
│ │ ├── AngleRulerTriangleFill.svg
│ │ ├── AngleRulerTriangleFill.yml
│ │ ├── Archive.svg
│ │ ├── Archive.yml
│ │ ├── ArchiveFill.svg
│ │ ├── ArchiveFill.yml
│ │ ├── AreaChart.svg
│ │ ├── AreaChart.yml
│ │ ├── AreaChartFill.svg
│ │ ├── AreaChartFill.yml
│ │ ├── ArrowCirclepath.svg
│ │ ├── ArrowCirclepath.yml
│ │ ├── ArrowDown.svg
│ │ ├── ArrowDown.yml
│ │ ├── ArrowDownRight.svg
│ │ ├── ArrowDownRight.yml
│ │ ├── ArrowForward.svg
│ │ ├── ArrowForward.yml
│ │ ├── ArrowForwardFill.svg
│ │ ├── ArrowForwardFill.yml
│ │ ├── ArrowLeft.svg
│ │ ├── ArrowLeft.yml
│ │ ├── ArrowRedo.svg
│ │ ├── ArrowRedo.yml
│ │ ├── ArrowRight.svg
│ │ ├── ArrowRight.yml
│ │ ├── ArrowRightLeft.svg
│ │ ├── ArrowRightLeft.yml
│ │ ├── ArrowUndo.svg
│ │ ├── ArrowUndo.yml
│ │ ├── ArrowUp.svg
│ │ ├── ArrowUp.yml
│ │ ├── ArrowsCirclepath.svg
│ │ ├── ArrowsCirclepath.yml
│ │ ├── ArrowsSquarepath.svg
│ │ ├── ArrowsSquarepath.yml
│ │ ├── ArrowsUpDown.svg
│ │ ├── ArrowsUpDown.yml
│ │ ├── BabyWrapped.svg
│ │ ├── BabyWrapped.yml
│ │ ├── BabyWrappedFill.svg
│ │ ├── BabyWrappedFill.yml
│ │ ├── Backpack.svg
│ │ ├── Backpack.yml
│ │ ├── BackpackFill.svg
│ │ ├── BackpackFill.yml
│ │ ├── Backward.svg
│ │ ├── Backward.yml
│ │ ├── BackwardFill.svg
│ │ ├── BackwardFill.yml
│ │ ├── Bacteria.svg
│ │ ├── Bacteria.yml
│ │ ├── BacteriaFill.svg
│ │ ├── BacteriaFill.yml
│ │ ├── Bagde.svg
│ │ ├── Bagde.yml
│ │ ├── BagdeFill.svg
│ │ ├── BagdeFill.yml
│ │ ├── Baggage.svg
│ │ ├── Baggage.yml
│ │ ├── BaggageFill.svg
│ │ ├── BaggageFill.yml
│ │ ├── Bandage.svg
│ │ ├── Bandage.yml
│ │ ├── BandageFill.svg
│ │ ├── BandageFill.yml
│ │ ├── BankNote.svg
│ │ ├── BankNote.yml
│ │ ├── BankNoteFill.svg
│ │ ├── BankNoteFill.yml
│ │ ├── BarChart.svg
│ │ ├── BarChart.yml
│ │ ├── BarChartFill.svg
│ │ ├── BarChartFill.yml
│ │ ├── Bed.svg
│ │ ├── Bed.yml
│ │ ├── BedFill.svg
│ │ ├── BedFill.yml
│ │ ├── Bell.svg
│ │ ├── Bell.yml
│ │ ├── BellDot.svg
│ │ ├── BellDot.yml
│ │ ├── BellDotFill.svg
│ │ ├── BellDotFill.yml
│ │ ├── BellFill.svg
│ │ ├── BellFill.yml
│ │ ├── Bicycle.svg
│ │ ├── Bicycle.yml
│ │ ├── Boat.svg
│ │ ├── Boat.yml
│ │ ├── BoatFill.svg
│ │ ├── BoatFill.yml
│ │ ├── Bone.svg
│ │ ├── Bone.yml
│ │ ├── BoneBroken.svg
│ │ ├── BoneBroken.yml
│ │ ├── BoneFill.svg
│ │ ├── BoneFill.yml
│ │ ├── Book.svg
│ │ ├── Book.yml
│ │ ├── BookFill.svg
│ │ ├── BookFill.yml
│ │ ├── Bookmark.svg
│ │ ├── Bookmark.yml
│ │ ├── BookmarkDash.svg
│ │ ├── BookmarkDash.yml
│ │ ├── BookmarkFill.svg
│ │ ├── BookmarkFill.yml
│ │ ├── Books.svg
│ │ ├── Books.yml
│ │ ├── BooksFill.svg
│ │ ├── BooksFill.yml
│ │ ├── Bowl.svg
│ │ ├── Bowl.yml
│ │ ├── BowlFill.svg
│ │ ├── BowlFill.yml
│ │ ├── Braille.svg
│ │ ├── Braille.yml
│ │ ├── BrailleFill.svg
│ │ ├── BrailleFill.yml
│ │ ├── Branching.svg
│ │ ├── Branching.yml
│ │ ├── Briefcase.svg
│ │ ├── Briefcase.yml
│ │ ├── BriefcaseClock.svg
│ │ ├── BriefcaseClock.yml
│ │ ├── BriefcaseClockFill.svg
│ │ ├── BriefcaseClockFill.yml
│ │ ├── BriefcaseFill.svg
│ │ ├── BriefcaseFill.yml
│ │ ├── Broadcast.svg
│ │ ├── Broadcast.yml
│ │ ├── BroadcastMinusCircle.svg
│ │ ├── BroadcastMinusCircle.yml
│ │ ├── BroadcastMinusCircleFill.svg
│ │ ├── BroadcastMinusCircleFill.yml
│ │ ├── BroadcastPlusCircle.svg
│ │ ├── BroadcastPlusCircle.yml
│ │ ├── BroadcastPlusCircleFill.svg
│ │ ├── BroadcastPlusCircleFill.yml
│ │ ├── BubbleChart.svg
│ │ ├── BubbleChart.yml
│ │ ├── BubbleChartFill.svg
│ │ ├── BubbleChartFill.yml
│ │ ├── Bucket.svg
│ │ ├── Bucket.yml
│ │ ├── BucketFill.svg
│ │ ├── BucketFill.yml
│ │ ├── BucketMop.svg
│ │ ├── BucketMop.yml
│ │ ├── BucketMopFill.svg
│ │ ├── BucketMopFill.yml
│ │ ├── Bug.svg
│ │ ├── Bug.yml
│ │ ├── BugFill.svg
│ │ ├── BugFill.yml
│ │ ├── Buildings2.svg
│ │ ├── Buildings2.yml
│ │ ├── Buildings2Fill.svg
│ │ ├── Buildings2Fill.yml
│ │ ├── Buildings3.svg
│ │ ├── Buildings3.yml
│ │ ├── Buildings3Fill.svg
│ │ ├── Buildings3Fill.yml
│ │ ├── BulletList.svg
│ │ ├── BulletList.yml
│ │ ├── Bus.svg
│ │ ├── Bus.yml
│ │ ├── BusFill.svg
│ │ ├── BusFill.yml
│ │ ├── Calculator.svg
│ │ ├── Calculator.yml
│ │ ├── CalculatorFill.svg
│ │ ├── CalculatorFill.yml
│ │ ├── Calendar.svg
│ │ ├── Calendar.yml
│ │ ├── CalendarFill.svg
│ │ ├── CalendarFill.yml
│ │ ├── Camera.svg
│ │ ├── Camera.yml
│ │ ├── CameraFill.svg
│ │ ├── CameraFill.yml
│ │ ├── CameraTriangle.svg
│ │ ├── CameraTriangle.yml
│ │ ├── CameraTriangleFill.svg
│ │ ├── CameraTriangleFill.yml
│ │ ├── Candle.svg
│ │ ├── Candle.yml
│ │ ├── CandleFill.svg
│ │ ├── CandleFill.yml
│ │ ├── Captions.svg
│ │ ├── Captions.yml
│ │ ├── CaptionsFill.svg
│ │ ├── CaptionsFill.yml
│ │ ├── Car.svg
│ │ ├── Car.yml
│ │ ├── CarFill.svg
│ │ ├── CarFill.yml
│ │ ├── Card.svg
│ │ ├── Card.yml
│ │ ├── CardFill.svg
│ │ ├── CardFill.yml
│ │ ├── CaretDown.svg
│ │ ├── CaretDown.yml
│ │ ├── CaretDownCircle.svg
│ │ ├── CaretDownCircle.yml
│ │ ├── CaretDownCircleFill.svg
│ │ ├── CaretDownCircleFill.yml
│ │ ├── CaretDownFill.svg
│ │ ├── CaretDownFill.yml
│ │ ├── CaretLeft.svg
│ │ ├── CaretLeft.yml
│ │ ├── CaretLeftCircle.svg
│ │ ├── CaretLeftCircle.yml
│ │ ├── CaretLeftCircleFill.svg
│ │ ├── CaretLeftCircleFill.yml
│ │ ├── CaretLeftFill.svg
│ │ ├── CaretLeftFill.yml
│ │ ├── CaretLeftRight.svg
│ │ ├── CaretLeftRight.yml
│ │ ├── CaretLeftRightFill.svg
│ │ ├── CaretLeftRightFill.yml
│ │ ├── CaretRight.svg
│ │ ├── CaretRight.yml
│ │ ├── CaretRightCircle.svg
│ │ ├── CaretRightCircle.yml
│ │ ├── CaretRightCircleFill.svg
│ │ ├── CaretRightCircleFill.yml
│ │ ├── CaretRightFill.svg
│ │ ├── CaretRightFill.yml
│ │ ├── CaretUp.svg
│ │ ├── CaretUp.yml
│ │ ├── CaretUpCircle.svg
│ │ ├── CaretUpCircle.yml
│ │ ├── CaretUpCircleFill.svg
│ │ ├── CaretUpCircleFill.yml
│ │ ├── CaretUpDown.svg
│ │ ├── CaretUpDown.yml
│ │ ├── CaretUpDownFill.svg
│ │ ├── CaretUpDownFill.yml
│ │ ├── CaretUpDownFilledDown.svg
│ │ ├── CaretUpDownFilledDown.yml
│ │ ├── CaretUpDownFilledUp.svg
│ │ ├── CaretUpDownFilledUp.yml
│ │ ├── CaretUpFill.svg
│ │ ├── CaretUpFill.yml
│ │ ├── ChangingRoom.svg
│ │ ├── ChangingRoom.yml
│ │ ├── ChangingRoomFill.svg
│ │ ├── ChangingRoomFill.yml
│ │ ├── Chat.svg
│ │ ├── Chat.yml
│ │ ├── Chat2.svg
│ │ ├── Chat2.yml
│ │ ├── Chat2Fill.svg
│ │ ├── Chat2Fill.yml
│ │ ├── ChatCheckmark.svg
│ │ ├── ChatCheckmark.yml
│ │ ├── ChatCheckmarkFill.svg
│ │ ├── ChatCheckmarkFill.yml
│ │ ├── ChatElipsis.svg
│ │ ├── ChatElipsis.yml
│ │ ├── ChatElipsisFill.svg
│ │ ├── ChatElipsisFill.yml
│ │ ├── ChatExclamationmark.svg
│ │ ├── ChatExclamationmark.yml
│ │ ├── ChatExclamationmarkFill.svg
│ │ ├── ChatExclamationmarkFill.yml
│ │ ├── ChatFill.svg
│ │ ├── ChatFill.yml
│ │ ├── Checkmark.svg
│ │ ├── Checkmark.yml
│ │ ├── CheckmarkCircle.svg
│ │ ├── CheckmarkCircle.yml
│ │ ├── CheckmarkCircleFill.svg
│ │ ├── CheckmarkCircleFill.yml
│ │ ├── ChefHat.svg
│ │ ├── ChefHat.yml
│ │ ├── ChefHatFill.svg
│ │ ├── ChefHatFill.yml
│ │ ├── ChevronDown.svg
│ │ ├── ChevronDown.yml
│ │ ├── ChevronDownCircle.svg
│ │ ├── ChevronDownCircle.yml
│ │ ├── ChevronDownCircleFill.svg
│ │ ├── ChevronDownCircleFill.yml
│ │ ├── ChevronDownDouble.svg
│ │ ├── ChevronDownDouble.yml
│ │ ├── ChevronDownDoubleCircle.svg
│ │ ├── ChevronDownDoubleCircle.yml
│ │ ├── ChevronDownDoubleCircleFill.svg
│ │ ├── ChevronDownDoubleCircleFill.yml
│ │ ├── ChevronDownUp.svg
│ │ ├── ChevronDownUp.yml
│ │ ├── ChevronLeft.svg
│ │ ├── ChevronLeft.yml
│ │ ├── ChevronLeftCircle.svg
│ │ ├── ChevronLeftCircle.yml
│ │ ├── ChevronLeftCircleFill.svg
│ │ ├── ChevronLeftCircleFill.yml
│ │ ├── ChevronLeftDouble.svg
│ │ ├── ChevronLeftDouble.yml
│ │ ├── ChevronLeftDoubleCircle.svg
│ │ ├── ChevronLeftDoubleCircle.yml
│ │ ├── ChevronLeftDoubleCircleFill.svg
│ │ ├── ChevronLeftDoubleCircleFill.yml
│ │ ├── ChevronLeftFirst.svg
│ │ ├── ChevronLeftFirst.yml
│ │ ├── ChevronLeftFirstCircle.svg
│ │ ├── ChevronLeftFirstCircle.yml
│ │ ├── ChevronLeftFirstCircleFill.svg
│ │ ├── ChevronLeftFirstCircleFill.yml
│ │ ├── ChevronRight.svg
│ │ ├── ChevronRight.yml
│ │ ├── ChevronRightCircle.svg
│ │ ├── ChevronRightCircle.yml
│ │ ├── ChevronRightCircleFill.svg
│ │ ├── ChevronRightCircleFill.yml
│ │ ├── ChevronRightDouble.svg
│ │ ├── ChevronRightDouble.yml
│ │ ├── ChevronRightDoubleCircle.svg
│ │ ├── ChevronRightDoubleCircle.yml
│ │ ├── ChevronRightDoubleCircleFill.svg
│ │ ├── ChevronRightDoubleCircleFill.yml
│ │ ├── ChevronRightLast.svg
│ │ ├── ChevronRightLast.yml
│ │ ├── ChevronRightLastCircle.svg
│ │ ├── ChevronRightLastCircle.yml
│ │ ├── ChevronRightLastCircleFill.svg
│ │ ├── ChevronRightLastCircleFill.yml
│ │ ├── ChevronUp.svg
│ │ ├── ChevronUp.yml
│ │ ├── ChevronUpCircle.svg
│ │ ├── ChevronUpCircle.yml
│ │ ├── ChevronUpCircleFill.svg
│ │ ├── ChevronUpCircleFill.yml
│ │ ├── ChevronUpDouble.svg
│ │ ├── ChevronUpDouble.yml
│ │ ├── ChevronUpDoubleCircle.svg
│ │ ├── ChevronUpDoubleCircle.yml
│ │ ├── ChevronUpDoubleCircleFill.svg
│ │ ├── ChevronUpDoubleCircleFill.yml
│ │ ├── ChevronUpDown.svg
│ │ ├── ChevronUpDown.yml
│ │ ├── ChildEyes.svg
│ │ ├── ChildEyes.yml
│ │ ├── ChildEyesFill.svg
│ │ ├── ChildEyesFill.yml
│ │ ├── ChildHairEyes.svg
│ │ ├── ChildHairEyes.yml
│ │ ├── ChildHairEyesFill.svg
│ │ ├── ChildHairEyesFill.yml
│ │ ├── Cigarette.svg
│ │ ├── Cigarette.yml
│ │ ├── CigaretteFill.svg
│ │ ├── CigaretteFill.yml
│ │ ├── Circle.svg
│ │ ├── Circle.yml
│ │ ├── CircleBroken.svg
│ │ ├── CircleBroken.yml
│ │ ├── CircleFill.svg
│ │ ├── CircleFill.yml
│ │ ├── CircleSlash.svg
│ │ ├── CircleSlash.yml
│ │ ├── CircleSlashFill.svg
│ │ ├── CircleSlashFill.yml
│ │ ├── Clipboard.svg
│ │ ├── Clipboard.yml
│ │ ├── ClipboardCheckmark.svg
│ │ ├── ClipboardCheckmark.yml
│ │ ├── ClipboardCheckmarkFill.svg
│ │ ├── ClipboardCheckmarkFill.yml
│ │ ├── ClipboardFill.svg
│ │ ├── ClipboardFill.yml
│ │ ├── ClipboardLink.svg
│ │ ├── ClipboardLink.yml
│ │ ├── ClipboardLinkFill.svg
│ │ ├── ClipboardLinkFill.yml
│ │ ├── ClipboardXMark.svg
│ │ ├── ClipboardXMark.yml
│ │ ├── ClipboardXMarkFill.svg
│ │ ├── ClipboardXMarkFill.yml
│ │ ├── Clock.svg
│ │ ├── Clock.yml
│ │ ├── ClockDashed.svg
│ │ ├── ClockDashed.yml
│ │ ├── ClockFill.svg
│ │ ├── ClockFill.yml
│ │ ├── ClothingHanger.svg
│ │ ├── ClothingHanger.yml
│ │ ├── ClothingHangerFill.svg
│ │ ├── ClothingHangerFill.yml
│ │ ├── Cloud.svg
│ │ ├── Cloud.yml
│ │ ├── CloudDown.svg
│ │ ├── CloudDown.yml
│ │ ├── CloudDownFill.svg
│ │ ├── CloudDownFill.yml
│ │ ├── CloudFill.svg
│ │ ├── CloudFill.yml
│ │ ├── CloudSlash.svg
│ │ ├── CloudSlash.yml
│ │ ├── CloudSlashFill.svg
│ │ ├── CloudSlashFill.yml
│ │ ├── CloudUp.svg
│ │ ├── CloudUp.yml
│ │ ├── CloudUpFill.svg
│ │ ├── CloudUpFill.yml
│ │ ├── Code.svg
│ │ ├── Code.yml
│ │ ├── Coffee.svg
│ │ ├── Coffee.yml
│ │ ├── CoffeeFill.svg
│ │ ├── CoffeeFill.yml
│ │ ├── Cog.svg
│ │ ├── Cog.yml
│ │ ├── CogFill.svg
│ │ ├── CogFill.yml
│ │ ├── CogRotation.svg
│ │ ├── CogRotation.yml
│ │ ├── CogRotationFill.svg
│ │ ├── CogRotationFill.yml
│ │ ├── Combifridge1.svg
│ │ ├── Combifridge1.yml
│ │ ├── Combifridge1Fill.svg
│ │ ├── Combifridge1Fill.yml
│ │ ├── Combifridge2.svg
│ │ ├── Combifridge2.yml
│ │ ├── Combifridge2Fill.svg
│ │ ├── Combifridge2Fill.yml
│ │ ├── Compass.svg
│ │ ├── Compass.yml
│ │ ├── CompassFill.svg
│ │ ├── CompassFill.yml
│ │ ├── Component.svg
│ │ ├── Component.yml
│ │ ├── ComponentFill.svg
│ │ ├── ComponentFill.yml
│ │ ├── Cpu.svg
│ │ ├── Cpu.yml
│ │ ├── CpuFill.svg
│ │ ├── CpuFill.yml
│ │ ├── CurrencyExchange.svg
│ │ ├── CurrencyExchange.yml
│ │ ├── Cutlery.svg
│ │ ├── Cutlery.yml
│ │ ├── CutleryFill.svg
│ │ ├── CutleryFill.yml
│ │ ├── Database.svg
│ │ ├── Database.yml
│ │ ├── DatabaseFill.svg
│ │ ├── DatabaseFill.yml
│ │ ├── Density1.svg
│ │ ├── Density1.yml
│ │ ├── Density1Fill.svg
│ │ ├── Density1Fill.yml
│ │ ├── Density2.svg
│ │ ├── Density2.yml
│ │ ├── Density2Fill.svg
│ │ ├── Density2Fill.yml
│ │ ├── Density3.svg
│ │ ├── Density3.yml
│ │ ├── Diamond.svg
│ │ ├── Diamond.yml
│ │ ├── DiamondFill.svg
│ │ ├── DiamondFill.yml
│ │ ├── Dishwasher.svg
│ │ ├── Dishwasher.yml
│ │ ├── DishwasherFill.svg
│ │ ├── DishwasherFill.yml
│ │ ├── Divide.svg
│ │ ├── Divide.yml
│ │ ├── DocPencil.svg
│ │ ├── DocPencil.yml
│ │ ├── DocPencilFill.svg
│ │ ├── DocPencilFill.yml
│ │ ├── Dog.svg
│ │ ├── Dog.yml
│ │ ├── DogFill.svg
│ │ ├── DogFill.yml
│ │ ├── DogHarness.svg
│ │ ├── DogHarness.yml
│ │ ├── DogHarnessFill.svg
│ │ ├── DogHarnessFill.yml
│ │ ├── DonutChart.svg
│ │ ├── DonutChart.yml
│ │ ├── DonutChartFill.svg
│ │ ├── DonutChartFill.yml
│ │ ├── Donuts.svg
│ │ ├── Donuts.yml
│ │ ├── DonutsFill.svg
│ │ ├── DonutsFill.yml
│ │ ├── Door.svg
│ │ ├── Door.yml
│ │ ├── DoorFill.svg
│ │ ├── DoorFill.yml
│ │ ├── DoorOpen.svg
│ │ ├── DoorOpen.yml
│ │ ├── DoorOpenFill.svg
│ │ ├── DoorOpenFill.yml
│ │ ├── Download.svg
│ │ ├── Download.yml
│ │ ├── DragHorizontal.svg
│ │ ├── DragHorizontal.yml
│ │ ├── DragVertical.svg
│ │ ├── DragVertical.yml
│ │ ├── Ear.svg
│ │ ├── Ear.yml
│ │ ├── EarFill.svg
│ │ ├── EarFill.yml
│ │ ├── EarSlash.svg
│ │ ├── EarSlash.yml
│ │ ├── EarSlashFill.svg
│ │ ├── EarSlashFill.yml
│ │ ├── EarSoundwaves.svg
│ │ ├── EarSoundwaves.yml
│ │ ├── EarSoundwavesFill.svg
│ │ ├── EarSoundwavesFill.yml
│ │ ├── Earth.svg
│ │ ├── Earth.yml
│ │ ├── EarthFill.svg
│ │ ├── EarthFill.yml
│ │ ├── Elevator.svg
│ │ ├── Elevator.yml
│ │ ├── ElevatorFill.svg
│ │ ├── ElevatorFill.yml
│ │ ├── Enter.svg
│ │ ├── Enter.yml
│ │ ├── EnvelopeClosed.svg
│ │ ├── EnvelopeClosed.yml
│ │ ├── EnvelopeClosedFill.svg
│ │ ├── EnvelopeClosedFill.yml
│ │ ├── EnvelopeOpen.svg
│ │ ├── EnvelopeOpen.yml
│ │ ├── EnvelopeOpenFill.svg
│ │ ├── EnvelopeOpenFill.yml
│ │ ├── Equals.svg
│ │ ├── Equals.yml
│ │ ├── Eraser.svg
│ │ ├── Eraser.yml
│ │ ├── EraserFill.svg
│ │ ├── EraserFill.yml
│ │ ├── Escalator.svg
│ │ ├── Escalator.yml
│ │ ├── Ethernet.svg
│ │ ├── Ethernet.yml
│ │ ├── Exclamationmark.svg
│ │ ├── Exclamationmark.yml
│ │ ├── ExclamationmarkTriangle.svg
│ │ ├── ExclamationmarkTriangle.yml
│ │ ├── ExclamationmarkTriangleFill.svg
│ │ ├── ExclamationmarkTriangleFill.yml
│ │ ├── Expand.svg
│ │ ├── Expand.yml
│ │ ├── ExpandVertical.svg
│ │ ├── ExpandVertical.yml
│ │ ├── ExternalLink.svg
│ │ ├── ExternalLink.yml
│ │ ├── ExternalLinkFill.svg
│ │ ├── ExternalLinkFill.yml
│ │ ├── Eye.svg
│ │ ├── Eye.yml
│ │ ├── EyeClosed.svg
│ │ ├── EyeClosed.yml
│ │ ├── EyeFill.svg
│ │ ├── EyeFill.yml
│ │ ├── EyeObfuscated.svg
│ │ ├── EyeObfuscated.yml
│ │ ├── EyeObfuscatedFill.svg
│ │ ├── EyeObfuscatedFill.yml
│ │ ├── EyeSlash.svg
│ │ ├── EyeSlash.yml
│ │ ├── EyeSlashFill.svg
│ │ ├── EyeSlashFill.yml
│ │ ├── EyeWithPupil.svg
│ │ ├── EyeWithPupil.yml
│ │ ├── EyeWithPupilFill.svg
│ │ ├── EyeWithPupilFill.yml
│ │ ├── Face.svg
│ │ ├── Face.yml
│ │ ├── FaceCry.svg
│ │ ├── FaceCry.yml
│ │ ├── FaceCryFill.svg
│ │ ├── FaceCryFill.yml
│ │ ├── FaceFill.svg
│ │ ├── FaceFill.yml
│ │ ├── FaceFrown.svg
│ │ ├── FaceFrown.yml
│ │ ├── FaceFrownFill.svg
│ │ ├── FaceFrownFill.yml
│ │ ├── FaceLaugh.svg
│ │ ├── FaceLaugh.yml
│ │ ├── FaceLaughFill.svg
│ │ ├── FaceLaughFill.yml
│ │ ├── FaceSmile.svg
│ │ ├── FaceSmile.yml
│ │ ├── FaceSmileFill.svg
│ │ ├── FaceSmileFill.yml
│ │ ├── FeedingBottle.svg
│ │ ├── FeedingBottle.yml
│ │ ├── FeedingBottleFill.svg
│ │ ├── FeedingBottleFill.yml
│ │ ├── Figure.svg
│ │ ├── Figure.yml
│ │ ├── FigureChild.svg
│ │ ├── FigureChild.yml
│ │ ├── FigureChildFill.svg
│ │ ├── FigureChildFill.yml
│ │ ├── FigureCombination.svg
│ │ ├── FigureCombination.yml
│ │ ├── FigureCombinationFill.svg
│ │ ├── FigureCombinationFill.yml
│ │ ├── FigureFill.svg
│ │ ├── FigureFill.yml
│ │ ├── FigureInward.svg
│ │ ├── FigureInward.yml
│ │ ├── FigureInwardFill.svg
│ │ ├── FigureInwardFill.yml
│ │ ├── FigureOutward.svg
│ │ ├── FigureOutward.yml
│ │ ├── FigureOutwardFill.svg
│ │ ├── FigureOutwardFill.yml
│ │ ├── File.svg
│ │ ├── File.yml
│ │ ├── FileCheckmark.svg
│ │ ├── FileCheckmark.yml
│ │ ├── FileCheckmarkFill.svg
│ │ ├── FileCheckmarkFill.yml
│ │ ├── FileCode.svg
│ │ ├── FileCode.yml
│ │ ├── FileCodeFill.svg
│ │ ├── FileCodeFill.yml
│ │ ├── FileCsv.svg
│ │ ├── FileCsv.yml
│ │ ├── FileCsvFill.svg
│ │ ├── FileCsvFill.yml
│ │ ├── FileExcel.svg
│ │ ├── FileExcel.yml
│ │ ├── FileExcelFill.svg
│ │ ├── FileExcelFill.yml
│ │ ├── FileExport.svg
│ │ ├── FileExport.yml
│ │ ├── FileExportFill.svg
│ │ ├── FileExportFill.yml
│ │ ├── FileFill.svg
│ │ ├── FileFill.yml
│ │ ├── FileImage.svg
│ │ ├── FileImage.yml
│ │ ├── FileImageFill.svg
│ │ ├── FileImageFill.yml
│ │ ├── FileImport.svg
│ │ ├── FileImport.yml
│ │ ├── FileImportFill.svg
│ │ ├── FileImportFill.yml
│ │ ├── FileJpeg.svg
│ │ ├── FileJpeg.yml
│ │ ├── FileJpegFill.svg
│ │ ├── FileJpegFill.yml
│ │ ├── FileJson.svg
│ │ ├── FileJson.yml
│ │ ├── FileJsonFill.svg
│ │ ├── FileJsonFill.yml
│ │ ├── FileLoading.svg
│ │ ├── FileLoading.yml
│ │ ├── FileLoadingFill.svg
│ │ ├── FileLoadingFill.yml
│ │ ├── FileParagraph.svg
│ │ ├── FileParagraph.yml
│ │ ├── FileParagraphFill.svg
│ │ ├── FileParagraphFill.yml
│ │ ├── FilePdf.svg
│ │ ├── FilePdf.yml
│ │ ├── FilePdfFill.svg
│ │ ├── FilePdfFill.yml
│ │ ├── FilePlus.svg
│ │ ├── FilePlus.yml
│ │ ├── FilePlusFill.svg
│ │ ├── FilePlusFill.yml
│ │ ├── FilePng.svg
│ │ ├── FilePng.yml
│ │ ├── FilePngFill.svg
│ │ ├── FilePngFill.yml
│ │ ├── FileReset.svg
│ │ ├── FileReset.yml
│ │ ├── FileResetFill.svg
│ │ ├── FileResetFill.yml
│ │ ├── FileSearch.svg
│ │ ├── FileSearch.yml
│ │ ├── FileSearchFill.svg
│ │ ├── FileSearchFill.yml
│ │ ├── FileShredder.svg
│ │ ├── FileShredder.yml
│ │ ├── FileShredderFill.svg
│ │ ├── FileShredderFill.yml
│ │ ├── FileText.svg
│ │ ├── FileText.yml
│ │ ├── FileTextFill.svg
│ │ ├── FileTextFill.yml
│ │ ├── FileWord.svg
│ │ ├── FileWord.yml
│ │ ├── FileWordFill.svg
│ │ ├── FileWordFill.yml
│ │ ├── FileXMark.svg
│ │ ├── FileXMark.yml
│ │ ├── FileXMarkFill.svg
│ │ ├── FileXMarkFill.yml
│ │ ├── Files.svg
│ │ ├── Files.yml
│ │ ├── FilesFill.svg
│ │ ├── FilesFill.yml
│ │ ├── Filter.svg
│ │ ├── Filter.yml
│ │ ├── FingerButton.svg
│ │ ├── FingerButton.yml
│ │ ├── FingerButtonFill.svg
│ │ ├── FingerButtonFill.yml
│ │ ├── FingerMobile.svg
│ │ ├── FingerMobile.yml
│ │ ├── FingerMobileFill.svg
│ │ ├── FingerMobileFill.yml
│ │ ├── FirstAid.svg
│ │ ├── FirstAid.yml
│ │ ├── FirstAidFill.svg
│ │ ├── FirstAidFill.yml
│ │ ├── FirstAidKit.svg
│ │ ├── FirstAidKit.yml
│ │ ├── FirstAidKitFill.svg
│ │ ├── FirstAidKitFill.yml
│ │ ├── FlagCross.svg
│ │ ├── FlagCross.yml
│ │ ├── FlagCrossFill.svg
│ │ ├── FlagCrossFill.yml
│ │ ├── Floppydisk.svg
│ │ ├── Floppydisk.yml
│ │ ├── FloppydiskFill.svg
│ │ ├── FloppydiskFill.yml
│ │ ├── Flower.svg
│ │ ├── Flower.yml
│ │ ├── FlowerFill.svg
│ │ ├── FlowerFill.yml
│ │ ├── FlowerPension.svg
│ │ ├── FlowerPension.yml
│ │ ├── FlowerPensionFill.svg
│ │ ├── FlowerPensionFill.yml
│ │ ├── FlowerPetalFalling.svg
│ │ ├── FlowerPetalFalling.yml
│ │ ├── FlowerPetalFallingFill.svg
│ │ ├── FlowerPetalFallingFill.yml
│ │ ├── FlowerPetals.svg
│ │ ├── FlowerPetals.yml
│ │ ├── FlowerPetalsFill.svg
│ │ ├── FlowerPetalsFill.yml
│ │ ├── Folder.svg
│ │ ├── Folder.yml
│ │ ├── FolderFile.svg
│ │ ├── FolderFile.yml
│ │ ├── FolderFileFill.svg
│ │ ├── FolderFileFill.yml
│ │ ├── FolderFill.svg
│ │ ├── FolderFill.yml
│ │ ├── FolderMinus.svg
│ │ ├── FolderMinus.yml
│ │ ├── FolderMinusFill.svg
│ │ ├── FolderMinusFill.yml
│ │ ├── FolderPlus.svg
│ │ ├── FolderPlus.yml
│ │ ├── FolderPlusFill.svg
│ │ ├── FolderPlusFill.yml
│ │ ├── Fork.svg
│ │ ├── Fork.yml
│ │ ├── ForkFill.svg
│ │ ├── ForkFill.yml
│ │ ├── Forward.svg
│ │ ├── Forward.yml
│ │ ├── ForwardFill.svg
│ │ ├── ForwardFill.yml
│ │ ├── Freezer.svg
│ │ ├── Freezer.yml
│ │ ├── FreezerFill.svg
│ │ ├── FreezerFill.yml
│ │ ├── Funnel.svg
│ │ ├── Funnel.yml
│ │ ├── FunnelFill.svg
│ │ ├── FunnelFill.yml
│ │ ├── Gavel.svg
│ │ ├── Gavel.yml
│ │ ├── GavelFill.svg
│ │ ├── GavelFill.yml
│ │ ├── GavelSoundBlock.svg
│ │ ├── GavelSoundBlock.yml
│ │ ├── GavelSoundBlockFill.svg
│ │ ├── GavelSoundBlockFill.yml
│ │ ├── Glass.svg
│ │ ├── Glass.yml
│ │ ├── GlassFill.svg
│ │ ├── GlassFill.yml
│ │ ├── Glasses.svg
│ │ ├── Glasses.yml
│ │ ├── GlassesFill.svg
│ │ ├── GlassesFill.yml
│ │ ├── Globe.svg
│ │ ├── Globe.yml
│ │ ├── GlobeFill.svg
│ │ ├── GlobeFill.yml
│ │ ├── GlobeSlash.svg
│ │ ├── GlobeSlash.yml
│ │ ├── GlobeSlashFill.svg
│ │ ├── GlobeSlashFill.yml
│ │ ├── HandBandage.svg
│ │ ├── HandBandage.yml
│ │ ├── HandBandageFill.svg
│ │ ├── HandBandageFill.yml
│ │ ├── HandFinger.svg
│ │ ├── HandFinger.yml
│ │ ├── HandFingerFill.svg
│ │ ├── HandFingerFill.yml
│ │ ├── HandHeart.svg
│ │ ├── HandHeart.yml
│ │ ├── HandHeartFill.svg
│ │ ├── HandHeartFill.yml
│ │ ├── HandKnot.svg
│ │ ├── HandKnot.yml
│ │ ├── HandKnotFilled.svg
│ │ ├── HandKnotFilled.yml
│ │ ├── HandShakeHeart.svg
│ │ ├── HandShakeHeart.yml
│ │ ├── HandShakeHeartFill.svg
│ │ ├── HandShakeHeartFill.yml
│ │ ├── Handshake.svg
│ │ ├── Handshake.yml
│ │ ├── HandshakeFill.svg
│ │ ├── HandshakeFill.yml
│ │ ├── Hanger.svg
│ │ ├── Hanger.yml
│ │ ├── HardHat.svg
│ │ ├── HardHat.yml
│ │ ├── HardHatFill.svg
│ │ ├── HardHatFill.yml
│ │ ├── Hashtag.svg
│ │ ├── Hashtag.yml
│ │ ├── HatSchool.svg
│ │ ├── HatSchool.yml
│ │ ├── HatSchoolFill.svg
│ │ ├── HatSchoolFill.yml
│ │ ├── HddDown.svg
│ │ ├── HddDown.yml
│ │ ├── HddDownFill.svg
│ │ ├── HddDownFill.yml
│ │ ├── HddUp.svg
│ │ ├── HddUp.yml
│ │ ├── HddUpFill.svg
│ │ ├── HddUpFill.yml
│ │ ├── Head.svg
│ │ ├── Head.yml
│ │ ├── HeadCloud.svg
│ │ ├── HeadCloud.yml
│ │ ├── HeadCloudFill.svg
│ │ ├── HeadCloudFill.yml
│ │ ├── HeadFill.svg
│ │ ├── HeadFill.yml
│ │ ├── HeadHeart.svg
│ │ ├── HeadHeart.yml
│ │ ├── HeadHeartFill.svg
│ │ ├── HeadHeartFill.yml
│ │ ├── HearingLoop.svg
│ │ ├── HearingLoop.yml
│ │ ├── HearingLoopFill.svg
│ │ ├── HearingLoopFill.yml
│ │ ├── HearingLoopRadio.svg
│ │ ├── HearingLoopRadio.yml
│ │ ├── HearingLoopRadioFill.svg
│ │ ├── HearingLoopRadioFill.yml
│ │ ├── Heart.svg
│ │ ├── Heart.yml
│ │ ├── HeartBroken.svg
│ │ ├── HeartBroken.yml
│ │ ├── HeartBrokenFill.svg
│ │ ├── HeartBrokenFill.yml
│ │ ├── HeartFill.svg
│ │ ├── HeartFill.yml
│ │ ├── HexagonGrid.svg
│ │ ├── HexagonGrid.yml
│ │ ├── HexagonGridFill.svg
│ │ ├── HexagonGridFill.yml
│ │ ├── HikingTrailSign.svg
│ │ ├── HikingTrailSign.yml
│ │ ├── HikingTrailSignFill.svg
│ │ ├── HikingTrailSignFill.yml
│ │ ├── Hospital.svg
│ │ ├── Hospital.yml
│ │ ├── HospitalFill.svg
│ │ ├── HospitalFill.yml
│ │ ├── Hourglass.svg
│ │ ├── Hourglass.yml
│ │ ├── HourglassBottomFilled.svg
│ │ ├── HourglassBottomFilled.yml
│ │ ├── HourglassTopFilled.svg
│ │ ├── HourglassTopFilled.yml
│ │ ├── House.svg
│ │ ├── House.yml
│ │ ├── HouseFill.svg
│ │ ├── HouseFill.yml
│ │ ├── HouseHeart.svg
│ │ ├── HouseHeart.yml
│ │ ├── HouseHeartFill.svg
│ │ ├── HouseHeartFill.yml
│ │ ├── Image.svg
│ │ ├── Image.yml
│ │ ├── ImageFill.svg
│ │ ├── ImageFill.yml
│ │ ├── Inbox.svg
│ │ ├── Inbox.yml
│ │ ├── InboxDown.svg
│ │ ├── InboxDown.yml
│ │ ├── InboxDownFill.svg
│ │ ├── InboxDownFill.yml
│ │ ├── InboxFill.svg
│ │ ├── InboxFill.yml
│ │ ├── InboxUp.svg
│ │ ├── InboxUp.yml
│ │ ├── InboxUpFill.svg
│ │ ├── InboxUpFill.yml
│ │ ├── Information.svg
│ │ ├── Information.yml
│ │ ├── InformationSquare.svg
│ │ ├── InformationSquare.yml
│ │ ├── InformationSquareFill.svg
│ │ ├── InformationSquareFill.yml
│ │ ├── IvFluidBag.svg
│ │ ├── IvFluidBag.yml
│ │ ├── IvFluidBagFill.svg
│ │ ├── IvFluidBagFill.yml
│ │ ├── KeyHorizontal.svg
│ │ ├── KeyHorizontal.yml
│ │ ├── KeyHorizontalFill.svg
│ │ ├── KeyHorizontalFill.yml
│ │ ├── KeyVertical.svg
│ │ ├── KeyVertical.yml
│ │ ├── KeyVerticalFill.svg
│ │ ├── KeyVerticalFill.yml
│ │ ├── Knife.svg
│ │ ├── Knife.yml
│ │ ├── KnifeFill.svg
│ │ ├── KnifeFill.yml
│ │ ├── Kroner.svg
│ │ ├── Kroner.yml
│ │ ├── Language.svg
│ │ ├── Language.yml
│ │ ├── Laptop.svg
│ │ ├── Laptop.yml
│ │ ├── LaptopFill.svg
│ │ ├── LaptopFill.yml
│ │ ├── LaptopTriangle.svg
│ │ ├── LaptopTriangle.yml
│ │ ├── LaptopTriangleFill.svg
│ │ ├── LaptopTriangleFill.yml
│ │ ├── LayerMinus.svg
│ │ ├── LayerMinus.yml
│ │ ├── LayerMinusFill.svg
│ │ ├── LayerMinusFill.yml
│ │ ├── Layers.svg
│ │ ├── Layers.yml
│ │ ├── LayersFill.svg
│ │ ├── LayersFill.yml
│ │ ├── LayersPlus.svg
│ │ ├── LayersPlus.yml
│ │ ├── LayersPlusFill.svg
│ │ ├── LayersPlusFill.yml
│ │ ├── Leave.svg
│ │ ├── Leave.yml
│ │ ├── LightBulb.svg
│ │ ├── LightBulb.yml
│ │ ├── LightBulbFill.svg
│ │ ├── LightBulbFill.yml
│ │ ├── Lightning.svg
│ │ ├── Lightning.yml
│ │ ├── LightningFill.svg
│ │ ├── LightningFill.yml
│ │ ├── LineGraph.svg
│ │ ├── LineGraph.yml
│ │ ├── LineGraphDot.svg
│ │ ├── LineGraphDot.yml
│ │ ├── LineGraphStacked.svg
│ │ ├── LineGraphStacked.yml
│ │ ├── LineHeight.svg
│ │ ├── LineHeight.yml
│ │ ├── Link.svg
│ │ ├── Link.yml
│ │ ├── LinkBroken.svg
│ │ ├── LinkBroken.yml
│ │ ├── LocationPin.svg
│ │ ├── LocationPin.yml
│ │ ├── LocationPinFill.svg
│ │ ├── LocationPinFill.yml
│ │ ├── MagnifyingGlass.svg
│ │ ├── MagnifyingGlass.yml
│ │ ├── MagnifyingGlassFill.svg
│ │ ├── MagnifyingGlassFill.yml
│ │ ├── MeasuringTape.svg
│ │ ├── MeasuringTape.yml
│ │ ├── MeasuringTapeFill.svg
│ │ ├── MeasuringTapeFill.yml
│ │ ├── MedicalThermometer.svg
│ │ ├── MedicalThermometer.yml
│ │ ├── MedicalThermometerFill.svg
│ │ ├── MedicalThermometerFill.yml
│ │ ├── MedicineBottle.svg
│ │ ├── MedicineBottle.yml
│ │ ├── MedicineBottleFill.svg
│ │ ├── MedicineBottleFill.yml
│ │ ├── MeetingLarge.svg
│ │ ├── MeetingLarge.yml
│ │ ├── MeetingLargeFill.svg
│ │ ├── MeetingLargeFill.yml
│ │ ├── MeetingSmall.svg
│ │ ├── MeetingSmall.yml
│ │ ├── MeetingSmallFill.svg
│ │ ├── MeetingSmallFill.yml
│ │ ├── Megaphone.svg
│ │ ├── Megaphone.yml
│ │ ├── MegaphoneFill.svg
│ │ ├── MegaphoneFill.yml
│ │ ├── MegaphoneSpeaking.svg
│ │ ├── MegaphoneSpeaking.yml
│ │ ├── MegaphoneSpeakingFill.svg
│ │ ├── MegaphoneSpeakingFill.yml
│ │ ├── MenuElipsisHorizontal.svg
│ │ ├── MenuElipsisHorizontal.yml
│ │ ├── MenuElipsisHorizontalCircle.svg
│ │ ├── MenuElipsisHorizontalCircle.yml
│ │ ├── MenuElipsisHorizontalCircleFill.svg
│ │ ├── MenuElipsisHorizontalCircleFill.yml
│ │ ├── MenuElipsisHorizontalSquare.svg
│ │ ├── MenuElipsisHorizontalSquare.yml
│ │ ├── MenuElipsisHorizontalSquareFill.svg
│ │ ├── MenuElipsisHorizontalSquareFill.yml
│ │ ├── MenuElipsisVertical.svg
│ │ ├── MenuElipsisVertical.yml
│ │ ├── MenuElipsisVerticalCircle.svg
│ │ ├── MenuElipsisVerticalCircle.yml
│ │ ├── MenuElipsisVerticalCircleFill.svg
│ │ ├── MenuElipsisVerticalCircleFill.yml
│ │ ├── MenuElipsisVerticalSquare.svg
│ │ ├── MenuElipsisVerticalSquare.yml
│ │ ├── MenuElipsisVerticalSquareFill.svg
│ │ ├── MenuElipsisVerticalSquareFill.yml
│ │ ├── MenuGrid.svg
│ │ ├── MenuGrid.yml
│ │ ├── MenuHamburger.svg
│ │ ├── MenuHamburger.yml
│ │ ├── Microbe.svg
│ │ ├── Microbe.yml
│ │ ├── MicrobeFill.svg
│ │ ├── MicrobeFill.yml
│ │ ├── Microphone.svg
│ │ ├── Microphone.yml
│ │ ├── MicrophoneFill.svg
│ │ ├── MicrophoneFill.yml
│ │ ├── MicrophoneSlash.svg
│ │ ├── MicrophoneSlash.yml
│ │ ├── MicrophoneSlashFill.svg
│ │ ├── MicrophoneSlashFill.yml
│ │ ├── Migration.svg
│ │ ├── Migration.yml
│ │ ├── Minus.svg
│ │ ├── Minus.yml
│ │ ├── MinusCircle.svg
│ │ ├── MinusCircle.yml
│ │ ├── MinusCircleFill.svg
│ │ ├── MinusCircleFill.yml
│ │ ├── Mobile.svg
│ │ ├── Mobile.yml
│ │ ├── MobileFill.svg
│ │ ├── MobileFill.yml
│ │ ├── MobileSmall.svg
│ │ ├── MobileSmall.yml
│ │ ├── MobileSmallFill.svg
│ │ ├── MobileSmallFill.yml
│ │ ├── MobileTriangle.svg
│ │ ├── MobileTriangle.yml
│ │ ├── MobileTriangleFill.svg
│ │ ├── MobileTriangleFill.yml
│ │ ├── Monitor.svg
│ │ ├── Monitor.yml
│ │ ├── MonitorFill.svg
│ │ ├── MonitorFill.yml
│ │ ├── MonitorTriangle.svg
│ │ ├── MonitorTriangle.yml
│ │ ├── MonitorTriangleFill.svg
│ │ ├── MonitorTriangleFill.yml
│ │ ├── Moon.svg
│ │ ├── Moon.yml
│ │ ├── MoonFill.svg
│ │ ├── MoonFill.yml
│ │ ├── Motorcycle.svg
│ │ ├── Motorcycle.yml
│ │ ├── MotorcycleFill.svg
│ │ ├── MotorcycleFill.yml
│ │ ├── Mountain.svg
│ │ ├── Mountain.yml
│ │ ├── MountainFill.svg
│ │ ├── MountainFill.yml
│ │ ├── Mug.svg
│ │ ├── Mug.yml
│ │ ├── MugFill.svg
│ │ ├── MugFill.yml
│ │ ├── Multiply.svg
│ │ ├── Multiply.yml
│ │ ├── Newspaper.svg
│ │ ├── Newspaper.yml
│ │ ├── NewspaperFill.svg
│ │ ├── NewspaperFill.yml
│ │ ├── NoSmoking.svg
│ │ ├── NoSmoking.yml
│ │ ├── NoSmokingFill.svg
│ │ ├── NoSmokingFill.yml
│ │ ├── Nok.svg
│ │ ├── Nok.yml
│ │ ├── NotePencil.svg
│ │ ├── NotePencil.yml
│ │ ├── NotePencilDash.svg
│ │ ├── NotePencilDash.yml
│ │ ├── NotePencilFill.svg
│ │ ├── NotePencilFill.yml
│ │ ├── NumberList.svg
│ │ ├── NumberList.yml
│ │ ├── OpenSource.svg
│ │ ├── OpenSource.yml
│ │ ├── OpenSourceFill.svg
│ │ ├── OpenSourceFill.yml
│ │ ├── Over18.svg
│ │ ├── Over18.yml
│ │ ├── Over18Fill.svg
│ │ ├── Over18Fill.yml
│ │ ├── Package.svg
│ │ ├── Package.yml
│ │ ├── PackageFill.svg
│ │ ├── PackageFill.yml
│ │ ├── PadlockLocked.svg
│ │ ├── PadlockLocked.yml
│ │ ├── PadlockLockedFill.svg
│ │ ├── PadlockLockedFill.yml
│ │ ├── PadlockUnlocked.svg
│ │ ├── PadlockUnlocked.yml
│ │ ├── PadlockUnlockedFill.svg
│ │ ├── PadlockUnlockedFill.yml
│ │ ├── Palette.svg
│ │ ├── Palette.yml
│ │ ├── PaletteFill.svg
│ │ ├── PaletteFill.yml
│ │ ├── Paperclip.svg
│ │ ├── Paperclip.yml
│ │ ├── Paperplane.svg
│ │ ├── Paperplane.yml
│ │ ├── PaperplaneFill.svg
│ │ ├── PaperplaneFill.yml
│ │ ├── Paragraph.svg
│ │ ├── Paragraph.yml
│ │ ├── ParasolBeach.svg
│ │ ├── ParasolBeach.yml
│ │ ├── ParasolBeachFill.svg
│ │ ├── ParasolBeachFill.yml
│ │ ├── Parking.svg
│ │ ├── Parking.yml
│ │ ├── ParkingFill.svg
│ │ ├── ParkingFill.yml
│ │ ├── Passport.svg
│ │ ├── Passport.yml
│ │ ├── PassportFill.svg
│ │ ├── PassportFill.yml
│ │ ├── PasswordHidden.svg
│ │ ├── PasswordHidden.yml
│ │ ├── Pause.svg
│ │ ├── Pause.yml
│ │ ├── PauseFill.svg
│ │ ├── PauseFill.yml
│ │ ├── Pencil.svg
│ │ ├── Pencil.yml
│ │ ├── PencilBoard.svg
│ │ ├── PencilBoard.yml
│ │ ├── PencilBoardFill.svg
│ │ ├── PencilBoardFill.yml
│ │ ├── PencilFill.svg
│ │ ├── PencilFill.yml
│ │ ├── PencilLine.svg
│ │ ├── PencilLine.yml
│ │ ├── PencilLineFill.svg
│ │ ├── PencilLineFill.yml
│ │ ├── PencilWriting.svg
│ │ ├── PencilWriting.yml
│ │ ├── PencilWritingFill.svg
│ │ ├── PencilWritingFill.yml
│ │ ├── Pentagon.svg
│ │ ├── Pentagon.yml
│ │ ├── PentagonFill.svg
│ │ ├── PentagonFill.yml
│ │ ├── Percent.svg
│ │ ├── Percent.yml
│ │ ├── Person.svg
│ │ ├── Person.yml
│ │ ├── PersonChat.svg
│ │ ├── PersonChat.yml
│ │ ├── PersonChatFill.svg
│ │ ├── PersonChatFill.yml
│ │ ├── PersonCheckmark.svg
│ │ ├── PersonCheckmark.yml
│ │ ├── PersonCheckmarkFill.svg
│ │ ├── PersonCheckmarkFill.yml
│ │ ├── PersonCircle.svg
│ │ ├── PersonCircle.yml
│ │ ├── PersonCircleFill.svg
│ │ ├── PersonCircleFill.yml
│ │ ├── PersonCross.svg
│ │ ├── PersonCross.yml
│ │ ├── PersonCrossFill.svg
│ │ ├── PersonCrossFill.yml
│ │ ├── PersonEnvelope.svg
│ │ ├── PersonEnvelope.yml
│ │ ├── PersonEnvelopeFill.svg
│ │ ├── PersonEnvelopeFill.yml
│ │ ├── PersonFill.svg
│ │ ├── PersonFill.yml
│ │ ├── PersonGavel.svg
│ │ ├── PersonGavel.yml
│ │ ├── PersonGavelFill.svg
│ │ ├── PersonGavelFill.yml
│ │ ├── PersonGroup.svg
│ │ ├── PersonGroup.yml
│ │ ├── PersonGroupFill.svg
│ │ ├── PersonGroupFill.yml
│ │ ├── PersonHeadset.svg
│ │ ├── PersonHeadset.yml
│ │ ├── PersonHeadsetFill.svg
│ │ ├── PersonHeadsetFill.yml
│ │ ├── PersonMinus.svg
│ │ ├── PersonMinus.yml
│ │ ├── PersonMinusFill.svg
│ │ ├── PersonMinusFill.yml
│ │ ├── PersonPencil.svg
│ │ ├── PersonPencil.yml
│ │ ├── PersonPencilFill.svg
│ │ ├── PersonPencilFill.yml
│ │ ├── PersonPlus.svg
│ │ ├── PersonPlus.yml
│ │ ├── PersonPlusFill.svg
│ │ ├── PersonPlusFill.yml
│ │ ├── PersonPregnant.svg
│ │ ├── PersonPregnant.yml
│ │ ├── PersonPregnantFill.svg
│ │ ├── PersonPregnantFill.yml
│ │ ├── PersonRectangle.svg
│ │ ├── PersonRectangle.yml
│ │ ├── PersonRectangleFill.svg
│ │ ├── PersonRectangleFill.yml
│ │ ├── PersonSuit.svg
│ │ ├── PersonSuit.yml
│ │ ├── PersonSuitFill.svg
│ │ ├── PersonSuitFill.yml
│ │ ├── PersonTallShort.svg
│ │ ├── PersonTallShort.yml
│ │ ├── PersonTallShortFill.svg
│ │ ├── PersonTallShortFill.yml
│ │ ├── Phone.svg
│ │ ├── Phone.yml
│ │ ├── PhoneFill.svg
│ │ ├── PhoneFill.yml
│ │ ├── PieChart.svg
│ │ ├── PieChart.yml
│ │ ├── PieChartFill.svg
│ │ ├── PieChartFill.yml
│ │ ├── Piggybank.svg
│ │ ├── Piggybank.yml
│ │ ├── PiggybankFill.svg
│ │ ├── PiggybankFill.yml
│ │ ├── PillCircle.svg
│ │ ├── PillCircle.yml
│ │ ├── PillCircleFill.svg
│ │ ├── PillCircleFill.yml
│ │ ├── PillCircleRectangle.svg
│ │ ├── PillCircleRectangle.yml
│ │ ├── PillCircleRectangleFill.svg
│ │ ├── PillCircleRectangleFill.yml
│ │ ├── PillRectangle.svg
│ │ ├── PillRectangle.yml
│ │ ├── PillRectangleFill.svg
│ │ ├── PillRectangleFill.yml
│ │ ├── Pin.svg
│ │ ├── Pin.yml
│ │ ├── PinFill.svg
│ │ ├── PinFill.yml
│ │ ├── Plant.svg
│ │ ├── Plant.yml
│ │ ├── PlantFill.svg
│ │ ├── PlantFill.yml
│ │ ├── Plate.svg
│ │ ├── Plate.yml
│ │ ├── PlateFill.svg
│ │ ├── PlateFill.yml
│ │ ├── Play.svg
│ │ ├── Play.yml
│ │ ├── PlayFill.svg
│ │ ├── PlayFill.yml
│ │ ├── Plus.svg
│ │ ├── Plus.yml
│ │ ├── PlusCircle.svg
│ │ ├── PlusCircle.yml
│ │ ├── PlusCircleFill.svg
│ │ ├── PlusCircleFill.yml
│ │ ├── PlusMinusSlash.svg
│ │ ├── PlusMinusSlash.yml
│ │ ├── Portal.svg
│ │ ├── Portal.yml
│ │ ├── PortalFill.svg
│ │ ├── PortalFill.yml
│ │ ├── Presentation.svg
│ │ ├── Presentation.yml
│ │ ├── PresentationFill.svg
│ │ ├── PresentationFill.yml
│ │ ├── PrinterLarge.svg
│ │ ├── PrinterLarge.yml
│ │ ├── PrinterLargeFill.svg
│ │ ├── PrinterLargeFill.yml
│ │ ├── PrinterLargeTriangle.svg
│ │ ├── PrinterLargeTriangle.yml
│ │ ├── PrinterLargeTriangleFill.svg
│ │ ├── PrinterLargeTriangleFill.yml
│ │ ├── PrinterSmall.svg
│ │ ├── PrinterSmall.yml
│ │ ├── PrinterSmallFill.svg
│ │ ├── PrinterSmallFill.yml
│ │ ├── PrinterSmallTriangle.svg
│ │ ├── PrinterSmallTriangle.yml
│ │ ├── PrinterSmallTriangleFill.svg
│ │ ├── PrinterSmallTriangleFill.yml
│ │ ├── PushPin.svg
│ │ ├── PushPin.yml
│ │ ├── PushPinFill.svg
│ │ ├── PushPinFill.yml
│ │ ├── PuzzlePiece.svg
│ │ ├── PuzzlePiece.yml
│ │ ├── PuzzlePieceFill.svg
│ │ ├── PuzzlePieceFill.yml
│ │ ├── QrCode.svg
│ │ ├── QrCode.yml
│ │ ├── QrCodeFill.svg
│ │ ├── QrCodeFill.yml
│ │ ├── QrCodeScanning.svg
│ │ ├── QrCodeScanning.yml
│ │ ├── QrCodeScanningFill.svg
│ │ ├── QrCodeScanningFill.yml
│ │ ├── Questionmark.svg
│ │ ├── Questionmark.yml
│ │ ├── QuestionmarkCircle.svg
│ │ ├── QuestionmarkCircle.yml
│ │ ├── QuestionmarkCircleFill.svg
│ │ ├── QuestionmarkCircleFill.yml
│ │ ├── QuestionmarkDiamond.svg
│ │ ├── QuestionmarkDiamond.yml
│ │ ├── QuestionmarkDiamondFill.svg
│ │ ├── QuestionmarkDiamondFill.yml
│ │ ├── QuietZone.svg
│ │ ├── QuietZone.yml
│ │ ├── QuietZoneFill.svg
│ │ ├── QuietZoneFill.yml
│ │ ├── Raindrop.svg
│ │ ├── Raindrop.yml
│ │ ├── RaindropFill.svg
│ │ ├── RaindropFill.yml
│ │ ├── Receipt.svg
│ │ ├── Receipt.yml
│ │ ├── ReceiptFill.svg
│ │ ├── ReceiptFill.yml
│ │ ├── Reception.svg
│ │ ├── Reception.yml
│ │ ├── ReceptionFill.svg
│ │ ├── ReceptionFill.yml
│ │ ├── Record.svg
│ │ ├── Record.yml
│ │ ├── RecordFill.svg
│ │ ├── RecordFill.yml
│ │ ├── RectangleSections.svg
│ │ ├── RectangleSections.yml
│ │ ├── RectangleSectionsFill.svg
│ │ ├── RectangleSectionsFill.yml
│ │ ├── Recycle.svg
│ │ ├── Recycle.yml
│ │ ├── RecycleFill.svg
│ │ ├── RecycleFill.yml
│ │ ├── Refrigerator.svg
│ │ ├── Refrigerator.yml
│ │ ├── RefrigeratorFill.svg
│ │ ├── RefrigeratorFill.yml
│ │ ├── Roadblock.svg
│ │ ├── Roadblock.yml
│ │ ├── RoadblockFill.svg
│ │ ├── RoadblockFill.yml
│ │ ├── Robot.svg
│ │ ├── Robot.yml
│ │ ├── RobotFill.svg
│ │ ├── RobotFill.yml
│ │ ├── RobotFrown.svg
│ │ ├── RobotFrown.yml
│ │ ├── RobotFrownFill.svg
│ │ ├── RobotFrownFill.yml
│ │ ├── RobotSmile.svg
│ │ ├── RobotSmile.yml
│ │ ├── RobotSmileFill.svg
│ │ ├── RobotSmileFill.yml
│ │ ├── Rocket.svg
│ │ ├── Rocket.yml
│ │ ├── RocketFill.svg
│ │ ├── RocketFill.yml
│ │ ├── RockingHorse.svg
│ │ ├── RockingHorse.yml
│ │ ├── RockingHorseFill.svg
│ │ ├── RockingHorseFill.yml
│ │ ├── RotateLeft.svg
│ │ ├── RotateLeft.yml
│ │ ├── RotateLeftFill.svg
│ │ ├── RotateLeftFill.yml
│ │ ├── RotateRight.svg
│ │ ├── RotateRight.yml
│ │ ├── RotateRightFill.svg
│ │ ├── RotateRightFill.yml
│ │ ├── Router.svg
│ │ ├── Router.yml
│ │ ├── Ruler.svg
│ │ ├── Ruler.yml
│ │ ├── RulerFill.svg
│ │ ├── RulerFill.yml
│ │ ├── Rulers.svg
│ │ ├── Rulers.yml
│ │ ├── RulersFill.svg
│ │ ├── RulersFill.yml
│ │ ├── Sack.svg
│ │ ├── Sack.yml
│ │ ├── SackFill.svg
│ │ ├── SackFill.yml
│ │ ├── SackKroner.svg
│ │ ├── SackKroner.yml
│ │ ├── SackKronerFill.svg
│ │ ├── SackKronerFill.yml
│ │ ├── SackPension.svg
│ │ ├── SackPension.yml
│ │ ├── SackPensionFill.svg
│ │ ├── SackPensionFill.yml
│ │ ├── Sandbox.svg
│ │ ├── Sandbox.yml
│ │ ├── SandboxFill.svg
│ │ ├── SandboxFill.yml
│ │ ├── Scissors.svg
│ │ ├── Scissors.yml
│ │ ├── ScissorsFill.svg
│ │ ├── ScissorsFill.yml
│ │ ├── Seal.svg
│ │ ├── Seal.yml
│ │ ├── SealCheckmark.svg
│ │ ├── SealCheckmark.yml
│ │ ├── SealCheckmarkFill.svg
│ │ ├── SealCheckmarkFill.yml
│ │ ├── SealFill.svg
│ │ ├── SealFill.yml
│ │ ├── SealXMark.svg
│ │ ├── SealXMark.yml
│ │ ├── SealXMarkFill.svg
│ │ ├── SealXMarkFill.yml
│ │ ├── SectorChart.svg
│ │ ├── SectorChart.yml
│ │ ├── SectorChartFill.svg
│ │ ├── SectorChartFill.yml
│ │ ├── Shield.svg
│ │ ├── Shield.yml
│ │ ├── ShieldCheckmark.svg
│ │ ├── ShieldCheckmark.yml
│ │ ├── ShieldCheckmarkFill.svg
│ │ ├── ShieldCheckmarkFill.yml
│ │ ├── ShieldFill.svg
│ │ ├── ShieldFill.yml
│ │ ├── ShieldLock.svg
│ │ ├── ShieldLock.yml
│ │ ├── ShieldLockFill.svg
│ │ ├── ShieldLockFill.yml
│ │ ├── ShoppingBasket.svg
│ │ ├── ShoppingBasket.yml
│ │ ├── ShoppingBasketFill.svg
│ │ ├── ShoppingBasketFill.yml
│ │ ├── Shower.svg
│ │ ├── Shower.yml
│ │ ├── ShowerFill.svg
│ │ ├── ShowerFill.yml
│ │ ├── Shrink.svg
│ │ ├── Shrink.yml
│ │ ├── SidebarBoth.svg
│ │ ├── SidebarBoth.yml
│ │ ├── SidebarBothFill.svg
│ │ ├── SidebarBothFill.yml
│ │ ├── SidebarLeft.svg
│ │ ├── SidebarLeft.yml
│ │ ├── SidebarLeftFill.svg
│ │ ├── SidebarLeftFill.yml
│ │ ├── SidebarRight.svg
│ │ ├── SidebarRight.yml
│ │ ├── SidebarRightFill.svg
│ │ ├── SidebarRightFill.yml
│ │ ├── SignLanguageSingleHand.svg
│ │ ├── SignLanguageSingleHand.yml
│ │ ├── SignLanguageSingleHandFill.svg
│ │ ├── SignLanguageSingleHandFill.yml
│ │ ├── SignLanguageTwoHands.svg
│ │ ├── SignLanguageTwoHands.yml
│ │ ├── SignLanguageTwoHandsFill.svg
│ │ ├── SignLanguageTwoHandsFill.yml
│ │ ├── Silhouette.svg
│ │ ├── Silhouette.yml
│ │ ├── SilhouetteFill.svg
│ │ ├── SilhouetteFill.yml
│ │ ├── SkipBackward.svg
│ │ ├── SkipBackward.yml
│ │ ├── SkipBackwardFill.svg
│ │ ├── SkipBackwardFill.yml
│ │ ├── SkipForward.svg
│ │ ├── SkipForward.yml
│ │ ├── SkipForwardFill.svg
│ │ ├── SkipForwardFill.yml
│ │ ├── Snow.svg
│ │ ├── Snow.yml
│ │ ├── SortDown.svg
│ │ ├── SortDown.yml
│ │ ├── SortUp.svg
│ │ ├── SortUp.yml
│ │ ├── SpaceHorizontal.svg
│ │ ├── SpaceHorizontal.yml
│ │ ├── SpaceVertical.svg
│ │ ├── SpaceVertical.yml
│ │ ├── SparkLarge.svg
│ │ ├── SparkLarge.yml
│ │ ├── SparkSmall.svg
│ │ ├── SparkSmall.yml
│ │ ├── Sparkles.svg
│ │ ├── Sparkles.yml
│ │ ├── SparklesFill.svg
│ │ ├── SparklesFill.yml
│ │ ├── Speaker.svg
│ │ ├── Speaker.yml
│ │ ├── SpeakerFill.svg
│ │ ├── SpeakerFill.yml
│ │ ├── SpeakerSlash.svg
│ │ ├── SpeakerSlash.yml
│ │ ├── SpeakerSlashFill.svg
│ │ ├── SpeakerSlashFill.yml
│ │ ├── SpeakerSoundWave1.svg
│ │ ├── SpeakerSoundWave1.yml
│ │ ├── SpeakerSoundWave1Fill.svg
│ │ ├── SpeakerSoundWave1Fill.yml
│ │ ├── SpeakerSoundWave2.svg
│ │ ├── SpeakerSoundWave2.yml
│ │ ├── SpeakerSoundWave2Fill.svg
│ │ ├── SpeakerSoundWave2Fill.yml
│ │ ├── SpeakerSoundWave3.svg
│ │ ├── SpeakerSoundWave3.yml
│ │ ├── SpeakerSoundWave3Fill.svg
│ │ ├── SpeakerSoundWave3Fill.yml
│ │ ├── SplitHorizontal.svg
│ │ ├── SplitHorizontal.yml
│ │ ├── SplitHorizontalFill.svg
│ │ ├── SplitHorizontalFill.yml
│ │ ├── SplitVertical.svg
│ │ ├── SplitVertical.yml
│ │ ├── SplitVerticalFill.svg
│ │ ├── SplitVerticalFill.yml
│ │ ├── Spoon.svg
│ │ ├── Spoon.yml
│ │ ├── SpoonFill.svg
│ │ ├── SpoonFill.yml
│ │ ├── Square.svg
│ │ ├── Square.yml
│ │ ├── SquareFill.svg
│ │ ├── SquareFill.yml
│ │ ├── SquareGrid.svg
│ │ ├── SquareGrid.yml
│ │ ├── SquareGridFill.svg
│ │ ├── SquareGridFill.yml
│ │ ├── Squareroot.svg
│ │ ├── Squareroot.yml
│ │ ├── Staircase.svg
│ │ ├── Staircase.yml
│ │ ├── Star.svg
│ │ ├── Star.yml
│ │ ├── StarFill.svg
│ │ ├── StarFill.yml
│ │ ├── StarOfLife.svg
│ │ ├── StarOfLife.yml
│ │ ├── StarOfLifeFill.svg
│ │ ├── StarOfLifeFill.yml
│ │ ├── StarsEu.svg
│ │ ├── StarsEu.yml
│ │ ├── Stethoscope.svg
│ │ ├── Stethoscope.yml
│ │ ├── Stop.svg
│ │ ├── Stop.yml
│ │ ├── StopFill.svg
│ │ ├── StopFill.yml
│ │ ├── Stroller.svg
│ │ ├── Stroller.yml
│ │ ├── StrollerFill.svg
│ │ ├── StrollerFill.yml
│ │ ├── Sun.svg
│ │ ├── Sun.yml
│ │ ├── SunFill.svg
│ │ ├── SunFill.yml
│ │ ├── Table.svg
│ │ ├── Table.yml
│ │ ├── TableFill.svg
│ │ ├── TableFill.yml
│ │ ├── Tablet.svg
│ │ ├── Tablet.yml
│ │ ├── TabletFill.svg
│ │ ├── TabletFill.yml
│ │ ├── Tabs.svg
│ │ ├── Tabs.yml
│ │ ├── TabsAdd.svg
│ │ ├── TabsAdd.yml
│ │ ├── TabsAddFill.svg
│ │ ├── TabsAddFill.yml
│ │ ├── TabsFill.svg
│ │ ├── TabsFill.yml
│ │ ├── TabsRemove.svg
│ │ ├── TabsRemove.yml
│ │ ├── TabsRemoveFill.svg
│ │ ├── TabsRemoveFill.yml
│ │ ├── Tag.svg
│ │ ├── Tag.yml
│ │ ├── TagFill.svg
│ │ ├── TagFill.yml
│ │ ├── TapWater.svg
│ │ ├── TapWater.yml
│ │ ├── TapWaterFill.svg
│ │ ├── TapWaterFill.yml
│ │ ├── Tasklist.svg
│ │ ├── Tasklist.yml
│ │ ├── TasklistFill.svg
│ │ ├── TasklistFill.yml
│ │ ├── TasklistSave.svg
│ │ ├── TasklistSave.yml
│ │ ├── TasklistSaveFill.svg
│ │ ├── TasklistSaveFill.yml
│ │ ├── TasklistSend.svg
│ │ ├── TasklistSend.yml
│ │ ├── TasklistSendFill.svg
│ │ ├── TasklistSendFill.yml
│ │ ├── TasklistStart.svg
│ │ ├── TasklistStart.yml
│ │ ├── TasklistStartFill.svg
│ │ ├── TasklistStartFill.yml
│ │ ├── TeddyBear.svg
│ │ ├── TeddyBear.yml
│ │ ├── TeddyBearFill.svg
│ │ ├── TeddyBearFill.yml
│ │ ├── Tenancy.svg
│ │ ├── Tenancy.yml
│ │ ├── TenancyFill.svg
│ │ ├── TenancyFill.yml
│ │ ├── Terminal.svg
│ │ ├── Terminal.yml
│ │ ├── TerminalFill.svg
│ │ ├── TerminalFill.yml
│ │ ├── TestFlask.svg
│ │ ├── TestFlask.yml
│ │ ├── TestFlaskFill.svg
│ │ ├── TestFlaskFill.yml
│ │ ├── Thermometer.svg
│ │ ├── Thermometer.yml
│ │ ├── ThermometerFill.svg
│ │ ├── ThermometerFill.yml
│ │ ├── ThumbDown.svg
│ │ ├── ThumbDown.yml
│ │ ├── ThumbDownFill.svg
│ │ ├── ThumbDownFill.yml
│ │ ├── ThumbUp.svg
│ │ ├── ThumbUp.yml
│ │ ├── ThumbUpFill.svg
│ │ ├── ThumbUpFill.yml
│ │ ├── Timer.svg
│ │ ├── Timer.yml
│ │ ├── TimerFill.svg
│ │ ├── TimerFill.yml
│ │ ├── TimerPause.svg
│ │ ├── TimerPause.yml
│ │ ├── TimerPauseFill.svg
│ │ ├── TimerPauseFill.yml
│ │ ├── TimerStart.svg
│ │ ├── TimerStart.yml
│ │ ├── TimerStartFill.svg
│ │ ├── TimerStartFill.yml
│ │ ├── Toilet.svg
│ │ ├── Toilet.yml
│ │ ├── ToiletFill.svg
│ │ ├── ToiletFill.yml
│ │ ├── Token.svg
│ │ ├── Token.yml
│ │ ├── TokenFill.svg
│ │ ├── TokenFill.yml
│ │ ├── Tooth.svg
│ │ ├── Tooth.yml
│ │ ├── ToothFill.svg
│ │ ├── ToothFill.yml
│ │ ├── Train.svg
│ │ ├── Train.yml
│ │ ├── TrainFill.svg
│ │ ├── TrainFill.yml
│ │ ├── Tram.svg
│ │ ├── Tram.yml
│ │ ├── TramFill.svg
│ │ ├── TramFill.yml
│ │ ├── Trash.svg
│ │ ├── Trash.yml
│ │ ├── TrashFill.svg
│ │ ├── TrashFill.yml
│ │ ├── TrayFood.svg
│ │ ├── TrayFood.yml
│ │ ├── TrayFoodFill.svg
│ │ ├── TrayFoodFill.yml
│ │ ├── TrendDown.svg
│ │ ├── TrendDown.yml
│ │ ├── TrendFlat.svg
│ │ ├── TrendFlat.yml
│ │ ├── TrendUp.svg
│ │ ├── TrendUp.yml
│ │ ├── Triangle.svg
│ │ ├── Triangle.yml
│ │ ├── TriangleFill.svg
│ │ ├── TriangleFill.yml
│ │ ├── Truck.svg
│ │ ├── Truck.yml
│ │ ├── TruckFill.svg
│ │ ├── TruckFill.yml
│ │ ├── TruckPercent.svg
│ │ ├── TruckPercent.yml
│ │ ├── TruckPercentFill.svg
│ │ ├── TruckPercentFill.yml
│ │ ├── Umbrella.svg
│ │ ├── Umbrella.yml
│ │ ├── UmbrellaFill.svg
│ │ ├── UmbrellaFill.yml
│ │ ├── Upload.svg
│ │ ├── Upload.yml
│ │ ├── Video.svg
│ │ ├── Video.yml
│ │ ├── VideoFill.svg
│ │ ├── VideoFill.yml
│ │ ├── VideoSlash.svg
│ │ ├── VideoSlash.yml
│ │ ├── VideoSlashFill.svg
│ │ ├── VideoSlashFill.yml
│ │ ├── Videoplayer.svg
│ │ ├── Videoplayer.yml
│ │ ├── VideoplayerFill.svg
│ │ ├── VideoplayerFill.yml
│ │ ├── Virus.svg
│ │ ├── Virus.yml
│ │ ├── VirusFill.svg
│ │ ├── VirusFill.yml
│ │ ├── Vitals.svg
│ │ ├── Vitals.yml
│ │ ├── WaitingRoom.svg
│ │ ├── WaitingRoom.yml
│ │ ├── WaitingRoomFill.svg
│ │ ├── WaitingRoomFill.yml
│ │ ├── Wallet.svg
│ │ ├── Wallet.yml
│ │ ├── WalletFill.svg
│ │ ├── WalletFill.yml
│ │ ├── WateringCan.svg
│ │ ├── WateringCan.yml
│ │ ├── WateringCanFill.svg
│ │ ├── WateringCanFill.yml
│ │ ├── Waveform.svg
│ │ ├── Waveform.yml
│ │ ├── Waves.svg
│ │ ├── Waves.yml
│ │ ├── Weight.svg
│ │ ├── Weight.yml
│ │ ├── Wheelchair.svg
│ │ ├── Wheelchair.yml
│ │ ├── WheelchairFill.svg
│ │ ├── WheelchairFill.yml
│ │ ├── Wrench.svg
│ │ ├── Wrench.yml
│ │ ├── WrenchFill.svg
│ │ ├── WrenchFill.yml
│ │ ├── XMark.svg
│ │ ├── XMark.yml
│ │ ├── XMarkOctagon.svg
│ │ ├── XMarkOctagon.yml
│ │ ├── XMarkOctagonFill.svg
│ │ ├── XMarkOctagonFill.yml
│ │ ├── ZoomMinus.svg
│ │ ├── ZoomMinus.yml
│ │ ├── ZoomMinusFill.svg
│ │ ├── ZoomMinusFill.yml
│ │ ├── ZoomPlus.svg
│ │ ├── ZoomPlus.yml
│ │ ├── ZoomPlusFill.svg
│ │ └── ZoomPlusFill.yml
│ ├── package.json
│ ├── template
│ │ ├── Template.svg
│ │ └── Template.yml
│ ├── tsconfig.esm.json
│ ├── tsconfig.json
│ └── util
│ │ └── useId.ts
├── aksel-stylelint
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── deprecations.ts
│ │ ├── index.ts
│ │ ├── recommended.ts
│ │ ├── rules
│ │ │ ├── aksel-design-token-exists
│ │ │ │ ├── index.test.ts
│ │ │ │ └── index.ts
│ │ │ ├── aksel-design-token-no-component-reference
│ │ │ │ ├── index.test.ts
│ │ │ │ └── index.ts
│ │ │ ├── aksel-design-token-no-global-override
│ │ │ │ ├── index.test.ts
│ │ │ │ └── index.ts
│ │ │ ├── aksel-no-class-override
│ │ │ │ ├── index.test.ts
│ │ │ │ └── index.ts
│ │ │ ├── aksel-no-deprecated-classes
│ │ │ │ ├── index.test.ts
│ │ │ │ └── index.ts
│ │ │ ├── aksel-no-internal-tokens
│ │ │ │ ├── index.test.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ └── utils.ts
│ └── tsconfig.json
├── aksel
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── codemod
│ │ │ ├── codeshift.utils.ts
│ │ │ ├── index.ts
│ │ │ ├── migrations.ts
│ │ │ ├── run-codeshift.ts
│ │ │ ├── tests
│ │ │ │ └── migrations.test.ts
│ │ │ ├── tokens-map.js
│ │ │ ├── transforms
│ │ │ │ ├── darkside
│ │ │ │ │ ├── box-to-boxnew
│ │ │ │ │ │ ├── box-to-boxnew.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ ├── box-radius.input.js
│ │ │ │ │ │ │ ├── box-radius.output.js
│ │ │ │ │ │ │ ├── box-simple.input.js
│ │ │ │ │ │ │ ├── box-simple.output.js
│ │ │ │ │ │ │ ├── box.input.js
│ │ │ │ │ │ │ ├── box.output.js
│ │ │ │ │ │ │ ├── idempotent-2.input.js
│ │ │ │ │ │ │ ├── idempotent-2.output.js
│ │ │ │ │ │ │ ├── idempotent.input.js
│ │ │ │ │ │ │ ├── idempotent.output.js
│ │ │ │ │ │ │ ├── import.input.js
│ │ │ │ │ │ │ ├── import.output.js
│ │ │ │ │ │ │ ├── import2.input.js
│ │ │ │ │ │ │ ├── import2.output.js
│ │ │ │ │ │ │ └── index.test.ts
│ │ │ │ │ └── prop-deprecate
│ │ │ │ │ │ ├── prop-deprecate.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── import.input.js
│ │ │ │ │ │ ├── import.output.js
│ │ │ │ │ │ └── index.test.ts
│ │ │ │ ├── rename-prop
│ │ │ │ │ ├── rename-prop.ts
│ │ │ │ │ └── tests
│ │ │ │ │ │ ├── rename-prop.test.ts
│ │ │ │ │ │ ├── rename.input.js
│ │ │ │ │ │ └── rename.output.js
│ │ │ │ ├── spacing
│ │ │ │ │ ├── primitives-spacing
│ │ │ │ │ │ ├── spacing.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ ├── directImport.input.js
│ │ │ │ │ │ │ ├── directImport.output.js
│ │ │ │ │ │ │ ├── idempotent.input.js
│ │ │ │ │ │ │ ├── idempotent.output.js
│ │ │ │ │ │ │ ├── import.input.js
│ │ │ │ │ │ │ ├── import.output.js
│ │ │ │ │ │ │ ├── importAlias.input.js
│ │ │ │ │ │ │ ├── importAlias.output.js
│ │ │ │ │ │ │ ├── spacing.test.ts
│ │ │ │ │ │ │ ├── subComponent.input.js
│ │ │ │ │ │ │ ├── subComponent.output.js
│ │ │ │ │ │ │ ├── valueAsObject.input.js
│ │ │ │ │ │ │ └── valueAsObject.output.js
│ │ │ │ │ ├── spacing.utils.ts
│ │ │ │ │ ├── token-spacing-js
│ │ │ │ │ │ ├── spacing.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ ├── complete.input.js
│ │ │ │ │ │ │ ├── complete.output.js
│ │ │ │ │ │ │ └── spacing.test.ts
│ │ │ │ │ └── token-spacing
│ │ │ │ │ │ ├── spacing.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── complete.input.css
│ │ │ │ │ │ ├── complete.input.less
│ │ │ │ │ │ ├── complete.input.scss
│ │ │ │ │ │ ├── complete.output.css
│ │ │ │ │ │ ├── complete.output.less
│ │ │ │ │ │ ├── complete.output.scss
│ │ │ │ │ │ └── spacing.test.ts
│ │ │ │ ├── v1.0.0
│ │ │ │ │ ├── chat
│ │ │ │ │ │ ├── chat.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ ├── chat.test.ts
│ │ │ │ │ │ │ ├── complete.input.js
│ │ │ │ │ │ │ ├── complete.output.js
│ │ │ │ │ │ │ ├── idempotent.input.js
│ │ │ │ │ │ │ ├── idempotent.output.js
│ │ │ │ │ │ │ ├── props.input.js
│ │ │ │ │ │ │ ├── props.output.js
│ │ │ │ │ │ │ ├── renamed.input.js
│ │ │ │ │ │ │ └── renamed.output.js
│ │ │ │ │ ├── pagination
│ │ │ │ │ │ ├── pagination.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ ├── idempotent.input.js
│ │ │ │ │ │ │ ├── idempotent.output.js
│ │ │ │ │ │ │ ├── import.input.js
│ │ │ │ │ │ │ ├── import.output.js
│ │ │ │ │ │ │ ├── pagination.test.ts
│ │ │ │ │ │ │ ├── size.input.js
│ │ │ │ │ │ │ └── size.output.js
│ │ │ │ │ ├── preset
│ │ │ │ │ │ └── preset.ts
│ │ │ │ │ └── tabs
│ │ │ │ │ │ ├── tabs.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── complete.input.js
│ │ │ │ │ │ ├── complete.output.js
│ │ │ │ │ │ ├── idempotent.input.js
│ │ │ │ │ │ ├── idempotent.output.js
│ │ │ │ │ │ ├── props.input.js
│ │ │ │ │ │ ├── props.output.js
│ │ │ │ │ │ └── tabs.test.ts
│ │ │ │ ├── v2.0.0
│ │ │ │ │ ├── update-css-tokens
│ │ │ │ │ │ ├── tests
│ │ │ │ │ │ │ ├── complete.input.css
│ │ │ │ │ │ │ ├── complete.input.js
│ │ │ │ │ │ │ ├── complete.output.css
│ │ │ │ │ │ │ ├── complete.output.js
│ │ │ │ │ │ │ └── update-css-tokens.test.ts
│ │ │ │ │ │ └── update-css-tokens.ts
│ │ │ │ │ ├── update-js-tokens
│ │ │ │ │ │ ├── tests
│ │ │ │ │ │ │ ├── complete.input.js
│ │ │ │ │ │ │ ├── complete.output.js
│ │ │ │ │ │ │ └── update-js-tokens.test.ts
│ │ │ │ │ │ └── update-js-tokens.ts
│ │ │ │ │ ├── update-less-tokens
│ │ │ │ │ │ ├── tests
│ │ │ │ │ │ │ ├── complete.input.less
│ │ │ │ │ │ │ ├── complete.output.less
│ │ │ │ │ │ │ └── update-less-tokens.test.ts
│ │ │ │ │ │ └── update-less-tokens.ts
│ │ │ │ │ └── update-sass-tokens
│ │ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── complete.input.scss
│ │ │ │ │ │ ├── complete.output.scss
│ │ │ │ │ │ └── update-sass-tokens.test.ts
│ │ │ │ │ │ └── update-sass-tokens.ts
│ │ │ │ ├── v3.0.0
│ │ │ │ │ └── copybutton
│ │ │ │ │ │ ├── copybutton.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── alias.input.js
│ │ │ │ │ │ ├── alias.output.js
│ │ │ │ │ │ ├── children.input.js
│ │ │ │ │ │ ├── children.output.js
│ │ │ │ │ │ ├── cleanup.input.js
│ │ │ │ │ │ ├── cleanup.output.js
│ │ │ │ │ │ ├── complete.input.js
│ │ │ │ │ │ ├── complete.output.js
│ │ │ │ │ │ ├── copybutton.test.ts
│ │ │ │ │ │ ├── idempotent.input.js
│ │ │ │ │ │ ├── idempotent.output.js
│ │ │ │ │ │ ├── import.input.js
│ │ │ │ │ │ └── import.output.js
│ │ │ │ ├── v4.0.0
│ │ │ │ │ ├── date
│ │ │ │ │ │ ├── date.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ ├── complete.input.js
│ │ │ │ │ │ │ ├── complete.output.js
│ │ │ │ │ │ │ ├── date.test.ts
│ │ │ │ │ │ │ ├── idempotent.input.js
│ │ │ │ │ │ │ └── idempotent.output.js
│ │ │ │ │ ├── internal-css
│ │ │ │ │ │ ├── internal-css.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ ├── complete.input.css
│ │ │ │ │ │ │ ├── complete.input.js
│ │ │ │ │ │ │ ├── complete.output.css
│ │ │ │ │ │ │ ├── complete.output.js
│ │ │ │ │ │ │ └── internal-css.test.ts
│ │ │ │ │ └── internal-react
│ │ │ │ │ │ ├── internal-react.ts
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── import-add.input.js
│ │ │ │ │ │ ├── import-add.output.js
│ │ │ │ │ │ ├── import-alias.input.js
│ │ │ │ │ │ ├── import-alias.output.js
│ │ │ │ │ │ ├── import-edgecase.input.js
│ │ │ │ │ │ ├── import-edgecase.output.js
│ │ │ │ │ │ ├── import.input.js
│ │ │ │ │ │ ├── import.output.js
│ │ │ │ │ │ └── internal-react.test.ts
│ │ │ │ └── v6.0.0
│ │ │ │ │ └── chat
│ │ │ │ │ ├── chat.ts
│ │ │ │ │ └── tests
│ │ │ │ │ ├── chat.test.ts
│ │ │ │ │ ├── idempotent.input.js
│ │ │ │ │ ├── idempotent.output.js
│ │ │ │ │ ├── import-alias.input.js
│ │ │ │ │ ├── import-alias.output.js
│ │ │ │ │ ├── import.input.js
│ │ │ │ │ └── import.output.js
│ │ │ ├── utils
│ │ │ │ ├── ast.ts
│ │ │ │ ├── check.ts
│ │ │ │ ├── imports.ts
│ │ │ │ ├── lineterminator.ts
│ │ │ │ ├── packageImports.ts
│ │ │ │ ├── removeProps.ts
│ │ │ │ ├── rename-props.ts
│ │ │ │ ├── tests
│ │ │ │ │ └── translate-token.test.ts
│ │ │ │ └── translate-token.ts
│ │ │ └── validation.ts
│ │ ├── css-imports
│ │ │ ├── config.ts
│ │ │ ├── generate-output.ts
│ │ │ ├── get-directories.ts
│ │ │ ├── get-version.ts
│ │ │ ├── index.ts
│ │ │ ├── inquiry.ts
│ │ │ └── scan-code.ts
│ │ ├── darkside
│ │ │ ├── config
│ │ │ │ ├── TokenStatus.ts
│ │ │ │ ├── darkside.tokens.ts
│ │ │ │ ├── legacy-component.tokens.ts
│ │ │ │ ├── legacy.tokens.ts
│ │ │ │ ├── tests
│ │ │ │ │ ├── legacy.tokens.test.ts
│ │ │ │ │ └── token-regex.test.ts
│ │ │ │ ├── token-regex.ts
│ │ │ │ └── token.utils.ts
│ │ │ ├── index.ts
│ │ │ ├── run-tooling.ts
│ │ │ ├── tasks
│ │ │ │ ├── print-remaining.ts
│ │ │ │ └── status.ts
│ │ │ └── transforms
│ │ │ │ ├── darkside-tokens-css.ts
│ │ │ │ ├── darkside-tokens-js.ts
│ │ │ │ ├── darkside-tokens-less.ts
│ │ │ │ ├── darkside-tokens-scss.ts
│ │ │ │ ├── darkside-tokens-tailwind.ts
│ │ │ │ └── tests
│ │ │ │ ├── css-complete.input.css
│ │ │ │ ├── css-complete.input.js
│ │ │ │ ├── css-complete.output.css
│ │ │ │ ├── css-complete.output.js
│ │ │ │ ├── darkside-tokens.test.ts
│ │ │ │ ├── js-replace-all.input.js
│ │ │ │ ├── js-replace-all.output.js
│ │ │ │ ├── js-replace-some.input.js
│ │ │ │ ├── js-replace-some.output.js
│ │ │ │ ├── less-complete.input.less
│ │ │ │ ├── less-complete.output.less
│ │ │ │ ├── scss-complete.input.scss
│ │ │ │ ├── scss-complete.output.scss
│ │ │ │ ├── tw-complete.input.css
│ │ │ │ ├── tw-complete.input.js
│ │ │ │ ├── tw-complete.output.css
│ │ │ │ └── tw-complete.output.js
│ │ ├── help.ts
│ │ └── index.ts
│ └── tsconfig.json
└── core
│ ├── css
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── accordion.css
│ ├── action-menu.css
│ ├── alert.css
│ ├── baseline
│ │ ├── _inline-reset.css
│ │ ├── _utilities.css
│ │ ├── baseline.css
│ │ ├── fonts.css
│ │ ├── index.css
│ │ ├── print.css
│ │ ├── reset.css
│ │ └── tokens.css
│ ├── button.css
│ ├── chat.css
│ ├── chips.css
│ ├── config
│ │ ├── _mappings.d.ts
│ │ ├── _mappings.js
│ │ ├── bundle.darkside.ts
│ │ ├── bundle.js
│ │ ├── get-version.js
│ │ └── tests
│ │ │ └── bundle.test.ts
│ ├── copybutton.css
│ ├── darkside
│ │ ├── README.md
│ │ ├── accordion.darkside.css
│ │ ├── action-menu.darkside.css
│ │ ├── alert.darkside.css
│ │ ├── baseline
│ │ │ ├── baseline.darkside.css
│ │ │ ├── fonts.darkside.css
│ │ │ ├── print.darkside.css
│ │ │ ├── reset.darkside.css
│ │ │ └── tokens.darkside.css
│ │ ├── button.darkside.css
│ │ ├── chat.darkside.css
│ │ ├── chips.darkside.css
│ │ ├── copybutton.darkside.css
│ │ ├── date.darkside.css
│ │ ├── dropdown.darkside.css
│ │ ├── expansioncard.darkside.css
│ │ ├── form
│ │ │ ├── combobox.darkside.css
│ │ │ ├── confirmation-panel.darkside.css
│ │ │ ├── error-summary.darkside.css
│ │ │ ├── fieldset.darkside.css
│ │ │ ├── file-upload.darkside.css
│ │ │ ├── form-progress.darkside.css
│ │ │ ├── form-summary.darkside.css
│ │ │ ├── form.darkside.css
│ │ │ ├── index.css
│ │ │ ├── radio-checkbox.darkside.css
│ │ │ ├── search.darkside.css
│ │ │ ├── select.darkside.css
│ │ │ ├── switch.darkside.css
│ │ │ ├── text-field.darkside.css
│ │ │ └── textarea.darkside.css
│ │ ├── guide-panel.darkside.css
│ │ ├── help-text.darkside.css
│ │ ├── index.css
│ │ ├── internalheader.darkside.css
│ │ ├── link-panel.darkside.css
│ │ ├── link.darkside.css
│ │ ├── list.darkside.css
│ │ ├── loader.darkside.css
│ │ ├── modal.darkside.css
│ │ ├── pagination.darkside.css
│ │ ├── panel.darkside.css
│ │ ├── popover.darkside.css
│ │ ├── primitives
│ │ │ ├── base.darkside.css
│ │ │ ├── bleed.darkside.css
│ │ │ ├── box.darkside.css
│ │ │ ├── hgrid.darkside.css
│ │ │ ├── index.css
│ │ │ ├── page.darkside.css
│ │ │ ├── responsive.darkside.css
│ │ │ └── stack.darkside.css
│ │ ├── progress-bar.darkside.css
│ │ ├── read-more.darkside.css
│ │ ├── skeleton.darkside.css
│ │ ├── stepper.darkside.css
│ │ ├── table.darkside.css
│ │ ├── tabs.darkside.css
│ │ ├── tag.darkside.css
│ │ ├── theme.darkside.css
│ │ ├── timeline.darkside.css
│ │ ├── toggle-group.darkside.css
│ │ ├── tooltip.darkside.css
│ │ └── typography.darkside.css
│ ├── date.css
│ ├── dropdown.css
│ ├── expansioncard.css
│ ├── form
│ │ ├── combobox.css
│ │ ├── confirmation-panel.css
│ │ ├── error-summary.css
│ │ ├── fieldset.css
│ │ ├── file-upload.css
│ │ ├── form-progress.css
│ │ ├── form-summary.css
│ │ ├── form.css
│ │ ├── index.css
│ │ ├── radio-checkbox.css
│ │ ├── search.css
│ │ ├── select.css
│ │ ├── switch.css
│ │ ├── text-field.css
│ │ └── textarea.css
│ ├── guide-panel.css
│ ├── help-text.css
│ ├── index.css
│ ├── internalheader.css
│ ├── link-panel.css
│ ├── link.css
│ ├── list.css
│ ├── loader.css
│ ├── modal.css
│ ├── package.json
│ ├── pagination.css
│ ├── panel.css
│ ├── popover.css
│ ├── primitives
│ │ ├── base.css
│ │ ├── bleed.css
│ │ ├── box.css
│ │ ├── hgrid.css
│ │ ├── index.css
│ │ ├── page.css
│ │ ├── responsive.css
│ │ └── stack.css
│ ├── progress-bar.css
│ ├── read-more.css
│ ├── skeleton.css
│ ├── stepper.css
│ ├── table.css
│ ├── tabs.css
│ ├── tag.css
│ ├── timeline.css
│ ├── toggle-group.css
│ ├── tokens.json
│ ├── tooltip.css
│ └── typography.css
│ ├── react
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── package.json
│ ├── scripts
│ │ └── addJsdocToLocales.ts
│ ├── src
│ │ ├── accordion
│ │ │ ├── Accordion.tsx
│ │ │ ├── AccordionContent.tsx
│ │ │ ├── AccordionContext.tsx
│ │ │ ├── AccordionHeader.tsx
│ │ │ ├── AccordionItem.tsx
│ │ │ ├── accordion.stories.tsx
│ │ │ └── index.ts
│ │ ├── alert
│ │ │ ├── Alert.tsx
│ │ │ ├── alert.stories.tsx
│ │ │ └── index.ts
│ │ ├── button
│ │ │ ├── Button.tsx
│ │ │ ├── button.stories.tsx
│ │ │ └── index.ts
│ │ ├── chat
│ │ │ ├── Bubble.tsx
│ │ │ ├── Chat.tsx
│ │ │ ├── chat.stories.tsx
│ │ │ └── index.ts
│ │ ├── chips
│ │ │ ├── Chips.tsx
│ │ │ ├── Removable.tsx
│ │ │ ├── Toggle.tsx
│ │ │ ├── chips.stories.tsx
│ │ │ └── index.ts
│ │ ├── collapsible
│ │ │ ├── Collapsible.context.tsx
│ │ │ ├── Collapsible.stories.tsx
│ │ │ ├── Collapsible.tsx
│ │ │ ├── Collapsible.types.ts
│ │ │ ├── index.ts
│ │ │ └── parts
│ │ │ │ ├── Collapsible.Content.tsx
│ │ │ │ └── Collapsible.Trigger.tsx
│ │ ├── copybutton
│ │ │ ├── CopyButton.stories.tsx
│ │ │ ├── CopyButton.tsx
│ │ │ └── index.ts
│ │ ├── date
│ │ │ ├── Date.Dialog.tsx
│ │ │ ├── Date.Input.tsx
│ │ │ ├── Date.locale.ts
│ │ │ ├── Date.typeutils.ts
│ │ │ ├── date-utils
│ │ │ │ ├── calendar-range.test.ts
│ │ │ │ ├── calendar-range.ts
│ │ │ │ ├── check-dates.test.ts
│ │ │ │ ├── check-dates.ts
│ │ │ │ ├── clamp-dates.test.ts
│ │ │ │ ├── clamp-dates.ts
│ │ │ │ ├── dates-disabled.test.ts
│ │ │ │ ├── dates-disabled.ts
│ │ │ │ ├── dropdown-options.test.ts
│ │ │ │ ├── dropdown-options.ts
│ │ │ │ ├── format-date.ts
│ │ │ │ ├── format-dates.test.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── is-match.test.ts
│ │ │ │ ├── is-match.ts
│ │ │ │ ├── parse-date.ts
│ │ │ │ └── parse-dates.test.ts
│ │ │ ├── datepicker
│ │ │ │ ├── DatePicker.stories.tsx
│ │ │ │ ├── DatePicker.tests.stories.tsx
│ │ │ │ ├── DatePicker.tsx
│ │ │ │ ├── DatePicker.types.ts
│ │ │ │ ├── hooks
│ │ │ │ │ ├── useDatepicker.tsx
│ │ │ │ │ ├── useRangeDatepicker.test.tsx
│ │ │ │ │ └── useRangeDatepicker.tsx
│ │ │ │ ├── index.ts
│ │ │ │ └── parts
│ │ │ │ │ ├── DatePicker.DayButton.tsx
│ │ │ │ │ ├── DatePicker.Months.tsx
│ │ │ │ │ ├── DatePicker.RDP.tsx
│ │ │ │ │ ├── DatePicker.Standalone.tsx
│ │ │ │ │ ├── DatePicker.WeekNumber.tsx
│ │ │ │ │ └── DatePicker.WeekRow.tsx
│ │ │ └── monthpicker
│ │ │ │ ├── MonthPicker.context.tsx
│ │ │ │ ├── MonthPicker.tests.stories.tsx
│ │ │ │ ├── MonthPicker.tsx
│ │ │ │ ├── MonthPicker.types.ts
│ │ │ │ ├── MonthPicker.util.ts
│ │ │ │ ├── hooks
│ │ │ │ └── useMonthPicker.tsx
│ │ │ │ ├── index.ts
│ │ │ │ ├── monthpicker.stories.tsx
│ │ │ │ └── parts
│ │ │ │ ├── MonthPicker.Button.tsx
│ │ │ │ ├── MonthPicker.Caption.tsx
│ │ │ │ ├── MonthPicker.Standalone.tsx
│ │ │ │ └── MonthPicker.Table.tsx
│ │ ├── dropdown
│ │ │ ├── Dropdown.tsx
│ │ │ ├── Menu
│ │ │ │ ├── Divider.tsx
│ │ │ │ ├── GroupedList
│ │ │ │ │ ├── GroupedHeading.tsx
│ │ │ │ │ ├── GroupedItem.tsx
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── List
│ │ │ │ │ ├── Item.tsx
│ │ │ │ │ └── index.tsx
│ │ │ │ └── index.tsx
│ │ │ ├── Toggle.tsx
│ │ │ ├── context.ts
│ │ │ ├── dropdown.stories.tsx
│ │ │ └── index.ts
│ │ ├── expansion-card
│ │ │ ├── ExpansionCard.stories.tsx
│ │ │ ├── ExpansionCard.tsx
│ │ │ ├── ExpansionCardContent.tsx
│ │ │ ├── ExpansionCardDescription.tsx
│ │ │ ├── ExpansionCardHeader.tsx
│ │ │ ├── ExpansionCardTitle.tsx
│ │ │ ├── context.ts
│ │ │ └── index.ts
│ │ ├── form
│ │ │ ├── ReadOnlyIcon.tsx
│ │ │ ├── checkbox
│ │ │ │ ├── Checkbox.test.tsx
│ │ │ │ ├── Checkbox.tsx
│ │ │ │ ├── CheckboxGroup.tsx
│ │ │ │ ├── checkbox.stories.tsx
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.ts
│ │ │ │ └── useCheckbox.ts
│ │ │ ├── combobox
│ │ │ │ ├── Combobox.tsx
│ │ │ │ ├── ComboboxProvider.tsx
│ │ │ │ ├── ComboboxWrapper.tsx
│ │ │ │ ├── FilteredOptions
│ │ │ │ │ ├── AddNewOption.tsx
│ │ │ │ │ ├── FilteredOptions.tsx
│ │ │ │ │ ├── FilteredOptionsItem.tsx
│ │ │ │ │ ├── LoadingMessage.tsx
│ │ │ │ │ ├── MaxSelectedMessage.tsx
│ │ │ │ │ ├── NoSearchHitsMessage.tsx
│ │ │ │ │ ├── filtered-options-util.test.ts
│ │ │ │ │ ├── filtered-options-util.ts
│ │ │ │ │ ├── filteredOptionsContext.tsx
│ │ │ │ │ └── useVirtualFocus.ts
│ │ │ │ ├── Input
│ │ │ │ │ ├── Input.context.tsx
│ │ │ │ │ ├── Input.tsx
│ │ │ │ │ ├── InputController.tsx
│ │ │ │ │ └── ToggleListButton.tsx
│ │ │ │ ├── SelectedOptions
│ │ │ │ │ ├── SelectedOptions.tsx
│ │ │ │ │ └── selectedOptionsContext.tsx
│ │ │ │ ├── __tests__
│ │ │ │ │ ├── combobox-utils.test.ts
│ │ │ │ │ └── combobox.test.tsx
│ │ │ │ ├── combobox-utils.ts
│ │ │ │ ├── combobox.stories.tsx
│ │ │ │ ├── combobox.tests.stories.tsx
│ │ │ │ ├── customOptionsContext.tsx
│ │ │ │ ├── index.ts
│ │ │ │ └── types.ts
│ │ │ ├── confirmation-panel
│ │ │ │ ├── ConfirmationPanel.test.tsx
│ │ │ │ ├── ConfirmationPanel.tsx
│ │ │ │ ├── confirmation-panel.stories.tsx
│ │ │ │ └── index.ts
│ │ │ ├── error-summary
│ │ │ │ ├── ErrorSummary.tsx
│ │ │ │ ├── ErrorSummaryItem.tsx
│ │ │ │ ├── error-summary.stories.tsx
│ │ │ │ └── index.ts
│ │ │ ├── fieldset
│ │ │ │ ├── Fieldset.tsx
│ │ │ │ ├── context.ts
│ │ │ │ ├── fieldset.stories.tsx
│ │ │ │ ├── index.ts
│ │ │ │ └── useFieldset.ts
│ │ │ ├── file-upload
│ │ │ │ ├── FileUpload.context.tsx
│ │ │ │ ├── FileUpload.tsx
│ │ │ │ ├── FileUpload.types.ts
│ │ │ │ ├── file-upload-dropzone.stories.tsx
│ │ │ │ ├── file-upload-item.stories.tsx
│ │ │ │ ├── file-upload.stories.tsx
│ │ │ │ ├── index.ts
│ │ │ │ ├── parts
│ │ │ │ │ ├── Trigger.tsx
│ │ │ │ │ ├── dropzone
│ │ │ │ │ │ ├── Dropzone.tsx
│ │ │ │ │ │ ├── dropzone.types.ts
│ │ │ │ │ │ └── useDropzone.ts
│ │ │ │ │ └── item
│ │ │ │ │ │ ├── Item.tsx
│ │ │ │ │ │ ├── Item.types.ts
│ │ │ │ │ │ ├── ItemButton.tsx
│ │ │ │ │ │ ├── ItemIcon.tsx
│ │ │ │ │ │ ├── ItemName.tsx
│ │ │ │ │ │ └── utils
│ │ │ │ │ │ ├── download-file.ts
│ │ │ │ │ │ ├── file-type-checker.ts
│ │ │ │ │ │ ├── format-file-size.test.ts
│ │ │ │ │ │ └── format-file-size.ts
│ │ │ │ ├── useFileUpload.ts
│ │ │ │ └── utils
│ │ │ │ │ ├── is-accepted-file-type.test.ts
│ │ │ │ │ ├── is-accepted-file-type.ts
│ │ │ │ │ ├── is-accepted-size.test.ts
│ │ │ │ │ ├── is-accepted-size.ts
│ │ │ │ │ ├── validate-files.test.ts
│ │ │ │ │ └── validate-files.ts
│ │ │ ├── form-progress
│ │ │ │ ├── FormProgress.stories.tsx
│ │ │ │ ├── FormProgress.tsx
│ │ │ │ └── index.ts
│ │ │ ├── form-summary
│ │ │ │ ├── FormSummary.stories.tsx
│ │ │ │ ├── FormSummary.tsx
│ │ │ │ ├── FormSummaryAnswer.tsx
│ │ │ │ ├── FormSummaryAnswers.tsx
│ │ │ │ ├── FormSummaryEditLink.tsx
│ │ │ │ ├── FormSummaryHeader.tsx
│ │ │ │ ├── FormSummaryHeading.tsx
│ │ │ │ ├── FormSummaryLabel.tsx
│ │ │ │ ├── FormSummaryValue.tsx
│ │ │ │ └── index.ts
│ │ │ ├── radio
│ │ │ │ ├── Radio.test.tsx
│ │ │ │ ├── Radio.tsx
│ │ │ │ ├── RadioGroup.tsx
│ │ │ │ ├── index.ts
│ │ │ │ ├── radio.stories.tsx
│ │ │ │ ├── types.ts
│ │ │ │ └── useRadio.ts
│ │ │ ├── search
│ │ │ │ ├── Search.tsx
│ │ │ │ ├── SearchButton.tsx
│ │ │ │ ├── context.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── search.stories.tsx
│ │ │ ├── select
│ │ │ │ ├── Select.tsx
│ │ │ │ ├── index.ts
│ │ │ │ └── select.stories.tsx
│ │ │ ├── switch
│ │ │ │ ├── Switch.tsx
│ │ │ │ ├── index.ts
│ │ │ │ └── switch.stories.tsx
│ │ │ ├── textarea
│ │ │ │ ├── Textarea.tsx
│ │ │ │ ├── TextareaCounter.tsx
│ │ │ │ ├── index.ts
│ │ │ │ └── textarea.stories.tsx
│ │ │ ├── textfield
│ │ │ │ ├── TextField.stories.tsx
│ │ │ │ ├── TextField.tsx
│ │ │ │ └── index.ts
│ │ │ └── useFormField.ts
│ │ ├── guide-panel
│ │ │ ├── GuidePanel.tsx
│ │ │ ├── Illustration.darkside.tsx
│ │ │ ├── Illustration.tsx
│ │ │ ├── guidepanel.stories.tsx
│ │ │ └── index.ts
│ │ ├── help-text
│ │ │ ├── HelpText.stories.tsx
│ │ │ ├── HelpText.tsx
│ │ │ ├── HelpTextIcon.tsx
│ │ │ └── index.ts
│ │ ├── index.ts
│ │ ├── internal-header
│ │ │ ├── InternalHeader.tsx
│ │ │ ├── InternalHeaderButton.tsx
│ │ │ ├── InternalHeaderTitle.tsx
│ │ │ ├── InternalHeaderUser.tsx
│ │ │ ├── InternalHeaderUserButton.tsx
│ │ │ ├── header.stories.tsx
│ │ │ └── index.ts
│ │ ├── layout
│ │ │ ├── base
│ │ │ │ ├── BasePrimitive.stories.tsx
│ │ │ │ ├── BasePrimitive.tsx
│ │ │ │ └── PrimitiveAsChildProps.ts
│ │ │ ├── bleed
│ │ │ │ ├── Bleed.stories.tsx
│ │ │ │ ├── Bleed.tsx
│ │ │ │ └── index.ts
│ │ │ ├── box
│ │ │ │ ├── Box.darkside.tsx
│ │ │ │ ├── Box.stories.tsx
│ │ │ │ ├── Box.tsx
│ │ │ │ └── index.ts
│ │ │ ├── grid
│ │ │ │ ├── HGrid.tsx
│ │ │ │ ├── h-grid.stories.tsx
│ │ │ │ └── index.ts
│ │ │ ├── page
│ │ │ │ ├── Page.stories.tsx
│ │ │ │ ├── Page.tsx
│ │ │ │ ├── index.ts
│ │ │ │ └── parts
│ │ │ │ │ └── PageBlock.tsx
│ │ │ ├── responsive
│ │ │ │ ├── Responsive.tsx
│ │ │ │ ├── hide.stories.tsx
│ │ │ │ ├── index.ts
│ │ │ │ └── show.stories.tsx
│ │ │ ├── stack
│ │ │ │ ├── HStack.tsx
│ │ │ │ ├── Spacer.tsx
│ │ │ │ ├── Stack.tsx
│ │ │ │ ├── VStack.tsx
│ │ │ │ ├── index.ts
│ │ │ │ └── stack.stories.tsx
│ │ │ └── utilities
│ │ │ │ ├── css.ts
│ │ │ │ └── types.ts
│ │ ├── link-panel
│ │ │ ├── LinkPanel.tsx
│ │ │ ├── LinkPanelDescription.tsx
│ │ │ ├── LinkPanelTitle.tsx
│ │ │ ├── index.ts
│ │ │ └── link-panel.stories.tsx
│ │ ├── link
│ │ │ ├── Link.tsx
│ │ │ ├── index.ts
│ │ │ └── stories
│ │ │ │ ├── RandomIcon.tsx
│ │ │ │ └── link.stories.tsx
│ │ ├── list
│ │ │ ├── List.Item.tsx
│ │ │ ├── List.context.ts
│ │ │ ├── List.tsx
│ │ │ ├── List.types.ts
│ │ │ ├── index.ts
│ │ │ └── list.stories.tsx
│ │ ├── loader
│ │ │ ├── Loader.tsx
│ │ │ ├── index.ts
│ │ │ └── loader.stories.tsx
│ │ ├── modal
│ │ │ ├── Modal.context.ts
│ │ │ ├── Modal.test.tsx
│ │ │ ├── Modal.tsx
│ │ │ ├── ModalBody.tsx
│ │ │ ├── ModalFooter.tsx
│ │ │ ├── ModalHeader.tsx
│ │ │ ├── ModalUtils.ts
│ │ │ ├── dialog-polyfill.ts
│ │ │ ├── index.ts
│ │ │ ├── modal.stories.tsx
│ │ │ ├── types.test-d.ts
│ │ │ └── types.ts
│ │ ├── overlays
│ │ │ ├── action-menu
│ │ │ │ ├── ActionMenu.stories.tsx
│ │ │ │ ├── ActionMenu.tsx
│ │ │ │ └── index.ts
│ │ │ ├── dismissablelayer
│ │ │ │ ├── DismissableLayer.stories.tsx
│ │ │ │ ├── DismissableLayer.tsx
│ │ │ │ ├── README.md
│ │ │ │ └── util
│ │ │ │ │ ├── dispatchCustomEvent.ts
│ │ │ │ │ ├── useEscapeKeydown.ts
│ │ │ │ │ ├── useFocusOutside.ts
│ │ │ │ │ └── usePointerDownOutside.ts
│ │ │ ├── floating-menu
│ │ │ │ ├── Menu.stories.tsx
│ │ │ │ ├── Menu.tsx
│ │ │ │ └── parts
│ │ │ │ │ ├── FocusScope.tsx
│ │ │ │ │ ├── RovingFocus.tsx
│ │ │ │ │ └── SlottedDivElement.tsx
│ │ │ └── floating
│ │ │ │ ├── Floating.stories.tsx
│ │ │ │ ├── Floating.tsx
│ │ │ │ └── Floating.utils.ts
│ │ ├── pagination
│ │ │ ├── Pagination.tsx
│ │ │ ├── PaginationItem.tsx
│ │ │ ├── index.ts
│ │ │ ├── pagination.stories.tsx
│ │ │ └── steps.test.ts
│ │ ├── panel
│ │ │ ├── Panel.tsx
│ │ │ └── index.ts
│ │ ├── popover
│ │ │ ├── Popover.test.tsx
│ │ │ ├── Popover.tsx
│ │ │ ├── PopoverContent.tsx
│ │ │ ├── index.ts
│ │ │ └── popover.stories.tsx
│ │ ├── portal
│ │ │ ├── Portal.stories.tsx
│ │ │ ├── Portal.tsx
│ │ │ └── index.ts
│ │ ├── progress-bar
│ │ │ ├── ProgressBar.stories.tsx
│ │ │ ├── ProgressBar.tsx
│ │ │ └── index.ts
│ │ ├── provider
│ │ │ ├── Provider.tsx
│ │ │ └── index.ts
│ │ ├── react-css.d.ts
│ │ ├── read-more
│ │ │ ├── ReadMore.tsx
│ │ │ ├── index.ts
│ │ │ └── readmore.stories.tsx
│ │ ├── skeleton
│ │ │ ├── Skeleton.tsx
│ │ │ ├── index.ts
│ │ │ └── skeleton.stories.tsx
│ │ ├── slot
│ │ │ ├── Slot.tsx
│ │ │ ├── merge-props.ts
│ │ │ └── tests
│ │ │ │ ├── Slot.test.tsx
│ │ │ │ └── merge-props.test.ts
│ │ ├── stepper
│ │ │ ├── Step.tsx
│ │ │ ├── Stepper.tsx
│ │ │ ├── context.ts
│ │ │ ├── index.ts
│ │ │ └── stepper.stories.tsx
│ │ ├── table
│ │ │ ├── AnimateHeight.tsx
│ │ │ ├── Body.tsx
│ │ │ ├── ColumnHeader.tsx
│ │ │ ├── DataCell.tsx
│ │ │ ├── ExpandableRow.tsx
│ │ │ ├── Header.tsx
│ │ │ ├── HeaderCell.tsx
│ │ │ ├── Row.tsx
│ │ │ ├── Table.tsx
│ │ │ ├── context.ts
│ │ │ ├── index.ts
│ │ │ ├── stories
│ │ │ │ ├── people.json
│ │ │ │ ├── table-1.stories.tsx
│ │ │ │ ├── table-2-expandable.stories.tsx
│ │ │ │ ├── table-3-async.stories.tsx
│ │ │ │ └── tests
│ │ │ │ │ └── table.stories.tsx
│ │ │ └── types.ts
│ │ ├── tabs
│ │ │ ├── Tabs.context.ts
│ │ │ ├── Tabs.stories.tsx
│ │ │ ├── Tabs.test.tsx
│ │ │ ├── Tabs.tsx
│ │ │ ├── Tabs.types.ts
│ │ │ ├── index.ts
│ │ │ ├── parts
│ │ │ │ ├── tab
│ │ │ │ │ ├── Tab.tsx
│ │ │ │ │ └── useTab.ts
│ │ │ │ ├── tablist
│ │ │ │ │ ├── ScrollButtons.tsx
│ │ │ │ │ ├── TabList.tsx
│ │ │ │ │ ├── useScrollButtons.ts
│ │ │ │ │ └── useTabList.ts
│ │ │ │ └── tabpanel
│ │ │ │ │ ├── TabPanel.tsx
│ │ │ │ │ └── useTabPanel.ts
│ │ │ └── useTabs.ts
│ │ ├── tag
│ │ │ ├── Tag.tsx
│ │ │ ├── index.ts
│ │ │ └── tag.stories.tsx
│ │ ├── theme
│ │ │ ├── RenameCSS.test.ts
│ │ │ ├── Theme.tsx
│ │ │ └── index.ts
│ │ ├── timeline
│ │ │ ├── AxisLabels.tsx
│ │ │ ├── Pin.tsx
│ │ │ ├── Timeline.tsx
│ │ │ ├── TimelineRow.tsx
│ │ │ ├── hooks
│ │ │ │ ├── usePeriodContext.tsx
│ │ │ │ ├── useRowContext.tsx
│ │ │ │ ├── useTimelineContext.tsx
│ │ │ │ └── useTimelineRows.ts
│ │ │ ├── index.ts
│ │ │ ├── period
│ │ │ │ ├── ClickablePeriod.tsx
│ │ │ │ ├── NonClickablePeriod.tsx
│ │ │ │ ├── index.tsx
│ │ │ │ └── types.ts
│ │ │ ├── tests
│ │ │ │ └── useTimelineRows.test.ts
│ │ │ ├── timeline.stories.tsx
│ │ │ ├── utils
│ │ │ │ ├── calc.ts
│ │ │ │ ├── filter.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── period.ts
│ │ │ │ ├── sort.ts
│ │ │ │ ├── timeline.ts
│ │ │ │ ├── types.external.ts
│ │ │ │ └── types.internal.ts
│ │ │ └── zoom
│ │ │ │ ├── ZoomButton.tsx
│ │ │ │ └── index.tsx
│ │ ├── toggle-group
│ │ │ ├── ToggleGroup.context.ts
│ │ │ ├── ToggleGroup.stories.tsx
│ │ │ ├── ToggleGroup.test.tsx
│ │ │ ├── ToggleGroup.tsx
│ │ │ ├── ToggleGroup.types.ts
│ │ │ ├── index.ts
│ │ │ ├── parts
│ │ │ │ ├── ToggleItem.tsx
│ │ │ │ └── useToggleItem.ts
│ │ │ └── useToggleGroup.ts
│ │ ├── tooltip
│ │ │ ├── Tooltip.test.tsx
│ │ │ ├── Tooltip.tsx
│ │ │ ├── index.ts
│ │ │ └── tooltip.stories.tsx
│ │ ├── types
│ │ │ ├── index.ts
│ │ │ └── theme.d.ts
│ │ ├── typography
│ │ │ ├── BodyLong.tsx
│ │ │ ├── BodyShort.tsx
│ │ │ ├── Detail.tsx
│ │ │ ├── ErrorMessage.tsx
│ │ │ ├── Heading.tsx
│ │ │ ├── Ingress.tsx
│ │ │ ├── Label.tsx
│ │ │ ├── index.ts
│ │ │ ├── stories
│ │ │ │ ├── bodylong.stories.tsx
│ │ │ │ ├── bodyshort.stories.tsx
│ │ │ │ ├── detail.stories.tsx
│ │ │ │ ├── error-message.stories.tsx
│ │ │ │ ├── font.stories.tsx
│ │ │ │ ├── heading.stories.tsx
│ │ │ │ └── label.stories.tsx
│ │ │ ├── types.ts
│ │ │ └── util.ts
│ │ └── util
│ │ │ ├── TextareaAutoSize.tsx
│ │ │ ├── __tests__
│ │ │ ├── omit.test.ts
│ │ │ └── useMedia.test.tsx
│ │ │ ├── composeEventHandlers.ts
│ │ │ ├── copy.ts
│ │ │ ├── create-context.tsx
│ │ │ ├── debounce.ts
│ │ │ ├── hooks
│ │ │ ├── descendants
│ │ │ │ ├── descendant.stories.tsx
│ │ │ │ ├── descendant.ts
│ │ │ │ ├── useDescendant.tsx
│ │ │ │ └── utils.ts
│ │ │ ├── index.ts
│ │ │ ├── useCallbackRef.ts
│ │ │ ├── useClientLayoutEffect.ts
│ │ │ ├── useControllableState.ts
│ │ │ ├── useEventListener.ts
│ │ │ ├── useId.ts
│ │ │ ├── useMedia.ts
│ │ │ ├── useMergeRefs.ts
│ │ │ └── usePrevious.ts
│ │ │ ├── i18n
│ │ │ ├── get.ts
│ │ │ ├── i18n.hooks.test.tsx
│ │ │ ├── i18n.hooks.ts
│ │ │ ├── i18n.types.ts
│ │ │ ├── locales.test.tsx
│ │ │ └── locales
│ │ │ │ ├── en.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── nb.ts
│ │ │ │ └── nn.ts
│ │ │ ├── index.ts
│ │ │ ├── omit.ts
│ │ │ ├── requireReactElement.ts
│ │ │ ├── types
│ │ │ ├── AsChild.ts
│ │ │ ├── AsChildProps.ts
│ │ │ ├── OverridableComponent.ts
│ │ │ └── index.ts
│ │ │ └── virtualfocus
│ │ │ ├── Context.tsx
│ │ │ ├── SlottedDivElement.tsx
│ │ │ ├── VirtualFocus.tsx
│ │ │ ├── parts
│ │ │ ├── VirtualFocusAnchor.tsx
│ │ │ ├── VirtualFocusContent.tsx
│ │ │ └── VirtualFocusItem.tsx
│ │ │ └── virtualfocus.stories.tsx
│ ├── tests
│ │ ├── setup.ts
│ │ ├── utils.ts
│ │ └── vitest.config.ts
│ ├── tsconfig.build.json
│ ├── tsconfig.esm.json
│ └── tsconfig.json
│ ├── tailwind
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── darkside.test.ts
│ ├── darkside.ts
│ ├── package.json
│ ├── src
│ │ ├── colors.ts
│ │ ├── getBreakpoints.ts
│ │ ├── getMaxWidth.ts
│ │ ├── index.ts
│ │ ├── kebabCase.ts
│ │ ├── reducer.ts
│ │ └── tests
│ │ │ ├── colors.test.ts
│ │ │ ├── kebabCase.test.ts
│ │ │ └── reducer.test.ts
│ ├── tailwind.config.d.ts
│ └── tsconfig.json
│ └── tokens
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── config
│ ├── build.ts
│ ├── kebabCase.ts
│ ├── tests
│ │ ├── kebabCase.test.ts
│ │ └── validate-docs.test.ts
│ └── version-tag.ts
│ ├── darkside
│ ├── figma
│ │ ├── create-tokens.ts
│ │ ├── figma-config.types.ts
│ │ ├── index.ts
│ │ └── plugin
│ │ │ ├── AkselVariablesInterface.ts
│ │ │ ├── FigmaPluginInterface.ts
│ │ │ ├── manifest.json
│ │ │ └── plugin.ts
│ ├── index.ts
│ ├── style-dictionary.formats.ts
│ ├── tests
│ │ ├── create-tokens.test.ts
│ │ ├── style-dictionary.test.ts
│ │ └── validate-config.test.ts
│ ├── tokens.config.ts
│ ├── tokens.util.ts
│ └── tokens
│ │ ├── breakpoint.ts
│ │ ├── colors
│ │ ├── colors.types.ts
│ │ ├── create-alpha.ts
│ │ ├── global.tokens.ts
│ │ ├── semantic-role.tokens.ts
│ │ ├── semantic-roles
│ │ │ ├── accent.tokens.ts
│ │ │ ├── brand-beige.tokens.ts
│ │ │ ├── brand-blue.tokens.ts
│ │ │ ├── brand-magenta.tokens.ts
│ │ │ ├── danger.tokens.ts
│ │ │ ├── info.tokens.ts
│ │ │ ├── meta-lime.tokens.ts
│ │ │ ├── meta-purple.tokens.ts
│ │ │ ├── neutral.tokens.ts
│ │ │ ├── success.tokens.ts
│ │ │ └── warning.tokens.ts
│ │ ├── semantic-root.tokens.ts
│ │ └── semantic-themed-base.tokens.ts
│ │ ├── font.ts
│ │ ├── opacity.ts
│ │ ├── radius.ts
│ │ ├── shadow.ts
│ │ └── space.ts
│ ├── docs.json
│ ├── internal-types.ts
│ ├── package.json
│ ├── src
│ ├── border.json
│ ├── colors-bg.json
│ ├── colors-border-stateful.json
│ ├── colors-border.json
│ ├── colors-icon.json
│ ├── colors-surface-stateful.json
│ ├── colors-surface.json
│ ├── colors-text.json
│ ├── data-colors.json
│ ├── future-border.json
│ ├── future-space.json
│ ├── global-colors.json
│ ├── index.js
│ ├── shadow-stateful.json
│ ├── shadow.json
│ └── spacing.json
│ ├── stories
│ ├── border-radius.stories.tsx
│ ├── colors.stories.tsx
│ ├── shadows.stories.tsx
│ └── spacing.stories.tsx
│ ├── tsconfig.json
│ └── types.ts
├── CHANGELOG.md
├── CODEOWNERS
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── aksel.nav.no
├── Dockerfile
├── README.md
├── env.local
├── nais-dev.yaml
├── nais-prod.yaml
├── package.json
├── playroom
│ ├── README.md
│ ├── babel.config.js
│ ├── package.json
│ ├── playroom.config.js
│ └── src
│ │ ├── FrameComponent.tsx
│ │ ├── components.ts
│ │ ├── frameComponent.css
│ │ └── snippets.ts
└── website
│ ├── .gitignore
│ ├── .storybook
│ ├── main.ts
│ ├── preview.ts
│ └── utils.tsx
│ ├── app
│ ├── (admin)
│ │ ├── AdminStudio.tsx
│ │ ├── admin-dev
│ │ │ └── [[...index]]
│ │ │ │ └── page.tsx
│ │ └── admin
│ │ │ └── [[...index]]
│ │ │ └── page.tsx
│ ├── _auth
│ │ └── rcs.ts
│ ├── _sanity
│ │ ├── client.ts
│ │ ├── live-fetch.ts
│ │ ├── live.ts
│ │ ├── queries.ts
│ │ ├── query-types.ts
│ │ ├── token.ts
│ │ ├── types.ts
│ │ └── utils.ts
│ ├── _ui
│ │ ├── attachment
│ │ │ └── Attachment.tsx
│ │ ├── bilde
│ │ │ ├── Bilde.module.css
│ │ │ └── Bilde.tsx
│ │ ├── code-block
│ │ │ ├── CodeBlock.module.css
│ │ │ ├── CodeBlock.provider.tsx
│ │ │ ├── CodeBlock.single.tsx
│ │ │ ├── CodeBlock.tsx
│ │ │ └── CodePrismTheme.ts
│ │ ├── compare-images
│ │ │ ├── CompareImages.container.tsx
│ │ │ ├── CompareImages.handle.tsx
│ │ │ ├── CompareImages.module.css
│ │ │ ├── CompareImages.provider.tsx
│ │ │ └── CompareImages.tsx
│ │ ├── consent-banner
│ │ │ ├── ConsentBanner.module.css
│ │ │ ├── ConsentBanner.tsx
│ │ │ ├── ConsentBanner.utils.ts
│ │ │ └── ConsentBanner.view.tsx
│ │ ├── disable-draft-mode
│ │ │ ├── DisableDraftMode.module.css
│ │ │ ├── DisableDraftMode.tsx
│ │ │ └── actions.ts
│ │ ├── do-dont
│ │ │ ├── DoDont.module.css
│ │ │ └── DoDont.tsx
│ │ ├── editor-panel
│ │ │ ├── EditorPanel.module.css
│ │ │ └── EditorPanel.tsx
│ │ ├── empty-state
│ │ │ └── EmptyState.tsx
│ │ ├── example-text
│ │ │ └── ExampleText.tsx
│ │ ├── footer
│ │ │ ├── Footer.edit.tsx
│ │ │ ├── Footer.module.css
│ │ │ └── Footer.tsx
│ │ ├── global-search
│ │ │ ├── GlobalSearch.actions.ts
│ │ │ ├── GlobalSearch.button.tsx
│ │ │ ├── GlobalSearch.config.ts
│ │ │ ├── GlobalSearch.dialog.tsx
│ │ │ ├── GlobalSearch.fetch.ts
│ │ │ ├── GlobalSearch.form.tsx
│ │ │ ├── GlobalSearch.hit.tsx
│ │ │ ├── GlobalSearch.module.css
│ │ │ ├── GlobalSearch.provider.tsx
│ │ │ ├── GlobalSearch.results.tsx
│ │ │ └── GlobalSearch.tsx
│ │ ├── header
│ │ │ ├── Header.link.tsx
│ │ │ ├── Header.module.css
│ │ │ └── Header.tsx
│ │ ├── image-as-svg
│ │ │ ├── ImageAsSvg.module.css
│ │ │ └── ImageAsSvg.tsx
│ │ ├── kbd
│ │ │ ├── Kbd.module.css
│ │ │ └── Kbd.tsx
│ │ ├── kode-eksempler
│ │ │ ├── KodeEksempler.iframe.tsx
│ │ │ ├── KodeEksempler.module.css
│ │ │ ├── KodeEksempler.navigation.tsx
│ │ │ ├── KodeEksempler.provider.tsx
│ │ │ ├── KodeEksempler.toolbar.tsx
│ │ │ └── KodeEksempler.tsx
│ │ ├── legacy-token-module
│ │ │ ├── LegacyTokenModule.tsx
│ │ │ └── token-view
│ │ │ │ ├── TokenView.module.css
│ │ │ │ ├── TokenView.tsx
│ │ │ │ └── parts
│ │ │ │ ├── Grid.tsx
│ │ │ │ ├── categories
│ │ │ │ ├── Breakpoints.tsx
│ │ │ │ ├── Font.tsx
│ │ │ │ ├── Global.tsx
│ │ │ │ ├── Semantic.tsx
│ │ │ │ ├── Shadow.tsx
│ │ │ │ ├── Shapes.tsx
│ │ │ │ ├── Spacing.tsx
│ │ │ │ └── Zindex.tsx
│ │ │ │ └── utilities.ts
│ │ ├── legacy-token-table
│ │ │ ├── LegacyTokenTable.module.css
│ │ │ └── LegacyTokenTable.tsx
│ │ ├── mobile-nav
│ │ │ ├── MobileNav.button.tsx
│ │ │ ├── MobileNav.dialog.tsx
│ │ │ ├── MobileNav.menu.tsx
│ │ │ ├── MobileNav.module.css
│ │ │ ├── MobileNav.provider.tsx
│ │ │ └── MobileNav.tsx
│ │ ├── portable-text
│ │ │ ├── CustomPortableText.components.tsx
│ │ │ ├── CustomPortableText.module.css
│ │ │ └── CustomPortableText.tsx
│ │ ├── props-seksjon
│ │ │ ├── PropsSeksjon.code.tsx
│ │ │ ├── PropsSeksjon.decription.tsx
│ │ │ ├── PropsSeksjon.deprecation.tsx
│ │ │ ├── PropsSeksjon.module.css
│ │ │ └── PropsSeksjon.tsx
│ │ ├── relatert-innhold
│ │ │ ├── RelatertInnhold.link.tsx
│ │ │ └── RelatertInnhold.tsx
│ │ ├── system-panel
│ │ │ ├── SystemPanel.action.tsx
│ │ │ ├── SystemPanel.module.css
│ │ │ └── SystemPanel.tsx
│ │ ├── table-v2
│ │ │ └── TableV2.tsx
│ │ ├── theming
│ │ │ ├── Theme.button.tsx
│ │ │ ├── ThemeProvider.tsx
│ │ │ └── theme-config.ts
│ │ ├── tips
│ │ │ └── Tips.tsx
│ │ ├── toc
│ │ │ ├── TableOfContents.module.css
│ │ │ ├── TableOfContents.scroll.tsx
│ │ │ ├── TableOfContents.tsx
│ │ │ └── useTableOfContents.ts
│ │ ├── typography
│ │ │ ├── Code.tsx
│ │ │ ├── MarkdownText.tsx
│ │ │ ├── Typography.module.css
│ │ │ ├── WebsiteLink.tsx
│ │ │ └── WebsiteList.tsx
│ │ ├── umami
│ │ │ ├── Umami.log.tsx
│ │ │ ├── Umami.script.tsx
│ │ │ ├── Umami.track.ts
│ │ │ └── Umami.tsx
│ │ ├── video
│ │ │ ├── Video.module.css
│ │ │ └── Video.tsx
│ │ ├── website-accordion
│ │ │ ├── WebsiteAccordion.item.tsx
│ │ │ ├── WebsiteAccordion.provider.tsx
│ │ │ └── WebsiteAccordion.tsx
│ │ ├── website-alert
│ │ │ └── WebsiteAlert.tsx
│ │ ├── website-expansioncard
│ │ │ └── WebsiteExpansionCard.tsx
│ │ └── website-table
│ │ │ ├── WebsiteTable.module.css
│ │ │ └── WebsiteTable.tsx
│ ├── aksel-theme.d.ts
│ ├── api
│ │ └── draft-mode
│ │ │ └── enable
│ │ │ └── route.ts
│ ├── dev
│ │ ├── (designsystemet)
│ │ │ ├── _ui
│ │ │ │ ├── Designsystemet.eyebrow.tsx
│ │ │ │ ├── Designsystemet.intro.tsx
│ │ │ │ ├── Designsystemet.module.css
│ │ │ │ ├── Designsystemet.thumbnail.tsx
│ │ │ │ ├── DesignsystemetPage.parts.tsx
│ │ │ │ ├── DesignsystemetPage.tsx
│ │ │ │ ├── icon-page
│ │ │ │ │ ├── IconPage.button.tsx
│ │ │ │ │ ├── IconPage.details.tsx
│ │ │ │ │ ├── IconPage.form.tsx
│ │ │ │ │ ├── IconPage.icondetails.tsx
│ │ │ │ │ ├── IconPage.module.css
│ │ │ │ │ ├── IconPage.provider.tsx
│ │ │ │ │ ├── IconPage.sidebar.tsx
│ │ │ │ │ ├── IconPage.tsx
│ │ │ │ │ └── IconPage.utils.ts
│ │ │ │ ├── overview
│ │ │ │ │ ├── DesignsystemetOverview.module.css
│ │ │ │ │ └── DesignsystemetOverview.tsx
│ │ │ │ └── sidebar
│ │ │ │ │ ├── Sidebar.group.tsx
│ │ │ │ │ ├── Sidebar.item.tsx
│ │ │ │ │ ├── Sidebar.module.css
│ │ │ │ │ ├── Sidebar.subnav.tsx
│ │ │ │ │ ├── Sidebar.tsx
│ │ │ │ │ └── Sidebar.util.ts
│ │ │ ├── grunnleggende
│ │ │ │ ├── [category]
│ │ │ │ │ ├── [page]
│ │ │ │ │ │ └── page.tsx
│ │ │ │ │ ├── _ui
│ │ │ │ │ │ └── GrunnleggendePage.tsx
│ │ │ │ │ └── page.tsx
│ │ │ │ └── darkside
│ │ │ │ │ └── design-tokens
│ │ │ │ │ ├── _ui
│ │ │ │ │ ├── TokenCategory.tsx
│ │ │ │ │ ├── TokenRolesChips.tsx
│ │ │ │ │ ├── TokenTableOfContents.tsx
│ │ │ │ │ ├── TokensList.tsx
│ │ │ │ │ ├── TokensPage.tsx
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── token-utils.tsx
│ │ │ │ │ ├── token
│ │ │ │ │ │ └── example
│ │ │ │ │ │ │ ├── BreakpointToken.tsx
│ │ │ │ │ │ │ ├── ColorToken.tsx
│ │ │ │ │ │ │ ├── FontToken.tsx
│ │ │ │ │ │ │ ├── RadiusToken.tsx
│ │ │ │ │ │ │ ├── ShadowToken.tsx
│ │ │ │ │ │ │ ├── SpaceToken.tsx
│ │ │ │ │ │ │ ├── TokenEntry.tsx
│ │ │ │ │ │ │ └── TokenPreview.tsx
│ │ │ │ │ ├── toolbar
│ │ │ │ │ │ ├── SearchField.tsx
│ │ │ │ │ │ ├── SearchField.utils.ts
│ │ │ │ │ │ ├── TokenFormatSelector.tsx
│ │ │ │ │ │ └── Toolbar.tsx
│ │ │ │ │ └── types.ts
│ │ │ │ │ └── page.tsx
│ │ │ ├── komponenter
│ │ │ │ ├── [category]
│ │ │ │ │ ├── [page]
│ │ │ │ │ │ └── page.tsx
│ │ │ │ │ ├── _ui
│ │ │ │ │ │ └── KomponenterPage.tsx
│ │ │ │ │ └── page.tsx
│ │ │ │ └── ikoner
│ │ │ │ │ └── page.tsx
│ │ │ ├── layout.tsx
│ │ │ ├── monster-maler
│ │ │ │ └── [category]
│ │ │ │ │ ├── [page]
│ │ │ │ │ └── page.tsx
│ │ │ │ │ ├── _ui
│ │ │ │ │ └── MonsterMalerPage.tsx
│ │ │ │ │ └── page.tsx
│ │ │ └── slug.ts
│ │ ├── (god-praksis)
│ │ │ ├── _ui
│ │ │ │ ├── GodPraksisTaxonomyTag.tsx
│ │ │ │ ├── chips-navigation
│ │ │ │ │ ├── ChipsNavigation.button.tsx
│ │ │ │ │ ├── ChipsNavigation.module.css
│ │ │ │ │ └── ChipsNavigation.tsx
│ │ │ │ ├── feedback
│ │ │ │ │ ├── GodPraksisFeedback.module.css
│ │ │ │ │ ├── GodPraksisFeedback.parts.tsx
│ │ │ │ │ ├── GodPraksisFeedback.tsx
│ │ │ │ │ ├── actions.ts
│ │ │ │ │ ├── actions.utils.ts
│ │ │ │ │ └── actions.zod.ts
│ │ │ │ ├── hero
│ │ │ │ │ ├── Cube.tsx
│ │ │ │ │ ├── Hero.button.tsx
│ │ │ │ │ ├── Hero.dialog.tsx
│ │ │ │ │ ├── Hero.module.css
│ │ │ │ │ ├── Hero.provider.tsx
│ │ │ │ │ ├── Hero.tsx
│ │ │ │ │ ├── HeroCube.tsx
│ │ │ │ │ └── tema-hero
│ │ │ │ │ │ ├── TemaHero.stories.tsx
│ │ │ │ │ │ ├── TemaHero.tsx
│ │ │ │ │ │ └── parts
│ │ │ │ │ │ ├── HeroCardList.tsx
│ │ │ │ │ │ ├── HeroIntro.tsx
│ │ │ │ │ │ └── HeroSelectButton.tsx
│ │ │ │ └── link-card
│ │ │ │ │ ├── LinkCard.tsx
│ │ │ │ │ └── link-card.css
│ │ │ └── god-praksis
│ │ │ │ ├── [tema]
│ │ │ │ └── page.tsx
│ │ │ │ ├── artikler
│ │ │ │ └── [slug]
│ │ │ │ │ ├── page.module.css
│ │ │ │ │ └── page.tsx
│ │ │ │ ├── layout.tsx
│ │ │ │ └── page.tsx
│ │ ├── (prinsipper)
│ │ │ └── prinsipper
│ │ │ │ ├── [[...prinsipp]]
│ │ │ │ └── page.tsx
│ │ │ │ └── layout.tsx
│ │ ├── (root)
│ │ │ ├── _ui
│ │ │ │ ├── AnimationStopContext.tsx
│ │ │ │ ├── FrontpageHero.tsx
│ │ │ │ ├── FrontpageLatest.tsx
│ │ │ │ ├── FrontpageMasonryCard.tsx
│ │ │ │ ├── FrontpageTag.tsx
│ │ │ │ ├── GpFrontpageCard.tsx
│ │ │ │ ├── HighlightedArticle.tsx
│ │ │ │ ├── MainWrapper.tsx
│ │ │ │ ├── frontpage.module.css
│ │ │ │ ├── pictogram
│ │ │ │ │ ├── GodPraksisPictogram.module.css
│ │ │ │ │ └── GodPraksisPictogram.tsx
│ │ │ │ └── useShouldStopAnimation.tsx
│ │ │ ├── page.tsx
│ │ │ └── personvernerklaering
│ │ │ │ ├── _ui
│ │ │ │ └── ConsentForm.tsx
│ │ │ │ └── page.tsx
│ │ ├── (standalone)
│ │ │ └── side
│ │ │ │ ├── [slug]
│ │ │ │ └── page.tsx
│ │ │ │ └── layout.tsx
│ │ ├── _ui
│ │ │ ├── UmamiLink.module.css
│ │ │ ├── UmamiLink.tsx
│ │ │ └── aksel-cube
│ │ │ │ ├── AkselCube.tsx
│ │ │ │ └── aksel-cube.module.css
│ │ ├── produktbloggen
│ │ │ ├── [slug]
│ │ │ │ └── page.tsx
│ │ │ ├── _ui
│ │ │ │ ├── BloggList.tsx
│ │ │ │ ├── HighlightedBlogg.tsx
│ │ │ │ ├── Produktbloggen.module.css
│ │ │ │ └── SimpleArticle.tsx
│ │ │ ├── layout.tsx
│ │ │ └── page.tsx
│ │ └── sitemap.ts
│ ├── error.tsx
│ ├── favicon.svg
│ ├── globals.css
│ ├── layout.tsx
│ ├── not-found.tsx
│ ├── routing-config.ts
│ └── theme.d.ts
│ ├── components
│ ├── assets
│ │ ├── Icons.tsx
│ │ └── Logo.tsx
│ ├── auth
│ │ ├── auth.types.ts
│ │ ├── authProtectedApi.ts
│ │ ├── getAuthUser.ts
│ │ ├── getUserState.ts
│ │ ├── useAuth.ts
│ │ └── validateWonderwall.ts
│ ├── hooks
│ │ ├── useEscapeKeydown.ts
│ │ ├── useFormatedDate.ts
│ │ ├── useHashScroll.ts
│ │ └── useMedia.ts
│ ├── layout
│ │ ├── footer
│ │ │ ├── Footer.tsx
│ │ │ └── parts
│ │ │ │ ├── FooterLink.tsx
│ │ │ │ └── LinkBlock.tsx
│ │ ├── god-praksis-page
│ │ │ ├── ArticleSections.tsx
│ │ │ ├── FallbackPictogram.tsx
│ │ │ ├── cards
│ │ │ │ ├── GpArticleCard.stories.tsx
│ │ │ │ ├── GpArticleCard.tsx
│ │ │ │ ├── GpFrontpageCard.stories.tsx
│ │ │ │ ├── GpFrontpageCard.tsx
│ │ │ │ ├── GpHeroCard.stories.tsx
│ │ │ │ └── GpHeroCard.tsx
│ │ │ ├── chipnavigation
│ │ │ │ ├── Chips.module.css
│ │ │ │ ├── GpChip.tsx
│ │ │ │ ├── GpChipNavigation.tsx
│ │ │ │ ├── GpChipRow.tsx
│ │ │ │ ├── GpTemaLink.stories.tsx
│ │ │ │ └── GpTemaLink.tsx
│ │ │ ├── count-articles.test.ts
│ │ │ ├── count-articles.ts
│ │ │ ├── hero
│ │ │ │ ├── Hero.module.css
│ │ │ │ ├── HeroCube.tsx
│ │ │ │ ├── intro-hero
│ │ │ │ │ ├── IntroHero.stories.tsx
│ │ │ │ │ └── IntroHero.tsx
│ │ │ │ └── tema-hero
│ │ │ │ │ ├── TemaHero.stories.tsx
│ │ │ │ │ ├── TemaHero.tsx
│ │ │ │ │ └── parts
│ │ │ │ │ ├── HeroCardList.tsx
│ │ │ │ │ ├── HeroIntro.tsx
│ │ │ │ │ └── HeroSelectButton.tsx
│ │ │ ├── interface.ts
│ │ │ └── useGpViews.ts
│ │ ├── header
│ │ │ ├── Header.tsx
│ │ │ ├── header.module.css
│ │ │ └── parts
│ │ │ │ ├── Hamburger.tsx
│ │ │ │ ├── HamburgerLink.tsx
│ │ │ │ └── HeaderLink.tsx
│ │ ├── sidebar
│ │ │ ├── Sidebar.module.css
│ │ │ └── Sidebar.tsx
│ │ └── templates
│ │ │ ├── WithSidebar.stories.tsx
│ │ │ └── WithSidebar.tsx
│ ├── react-css.d.ts
│ ├── sanity-modules
│ │ ├── accordion
│ │ │ └── Accordion.tsx
│ │ ├── alert
│ │ │ └── Alert.tsx
│ │ ├── attachment
│ │ │ ├── Attachment.stories.tsx
│ │ │ └── Attachment.tsx
│ │ ├── bilde
│ │ │ └── Bilde.tsx
│ │ ├── code-examples
│ │ │ ├── CodeExamples.stories.tsx
│ │ │ ├── CodeExamples.tsx
│ │ │ └── parts
│ │ │ │ ├── CodeSandbox.tsx
│ │ │ │ └── Sandbox.tsx
│ │ ├── code-snippet
│ │ │ ├── Snippet.stories.tsx
│ │ │ ├── Snippet.tsx
│ │ │ ├── SnippetLazy.tsx
│ │ │ └── theme.ts
│ │ ├── compare-images
│ │ │ ├── CompareHandle.tsx
│ │ │ ├── CompareImages.tsx
│ │ │ └── CompareItem.tsx
│ │ ├── component-overview
│ │ │ └── ComponentOverview.tsx
│ │ ├── do-dont
│ │ │ └── DoDont.tsx
│ │ ├── exampletext-block
│ │ │ ├── ExampletextBlock.stories.tsx
│ │ │ └── ExampletextBlock.tsx
│ │ ├── expansioncard
│ │ │ └── ExpansionCard.tsx
│ │ ├── frontpage-blocks
│ │ │ ├── FrontpageBlocks.tsx
│ │ │ └── latest-articles
│ │ │ │ ├── Card.tsx
│ │ │ │ ├── Highlight.tsx
│ │ │ │ ├── Latest.tsx
│ │ │ │ └── Tag.tsx
│ │ ├── intro-seksjon
│ │ │ └── IntroSeksjon.tsx
│ │ ├── props
│ │ │ ├── PropsSeksjon.tsx
│ │ │ └── parts
│ │ │ │ ├── Code.tsx
│ │ │ │ ├── DtList.tsx
│ │ │ │ ├── DtListDescription.tsx
│ │ │ │ ├── DtListExample.tsx
│ │ │ │ ├── Highlight.tsx
│ │ │ │ └── PropTabell.tsx
│ │ ├── relatert-innhold
│ │ │ ├── RelatertInnhold.stories.tsx
│ │ │ └── RelatertInnhold.tsx
│ │ ├── side-modul
│ │ │ └── SideModul.tsx
│ │ ├── tabell
│ │ │ ├── Tabell.stories.tsx
│ │ │ └── Tabell.tsx
│ │ ├── tips
│ │ │ ├── Tips.stories.tsx
│ │ │ └── Tips.tsx
│ │ ├── token-tabell
│ │ │ ├── TokenTable.stories.tsx
│ │ │ └── TokenTable.tsx
│ │ ├── token-view
│ │ │ ├── TokenView.stories.tsx
│ │ │ ├── TokenView.tsx
│ │ │ └── parts
│ │ │ │ ├── Grid.tsx
│ │ │ │ ├── categories
│ │ │ │ ├── Breakpoints.tsx
│ │ │ │ ├── Font.tsx
│ │ │ │ ├── Global.tsx
│ │ │ │ ├── Semantic.tsx
│ │ │ │ ├── Shadow.tsx
│ │ │ │ ├── Shapes.tsx
│ │ │ │ ├── Spacing.tsx
│ │ │ │ └── Zindex.tsx
│ │ │ │ └── utilities.ts
│ │ └── video
│ │ │ ├── Video.stories.tsx
│ │ │ └── Video.tsx
│ ├── styles
│ │ ├── alpha
│ │ │ └── show-more.css
│ │ ├── animations.css
│ │ ├── global.css
│ │ ├── index.css
│ │ ├── sanity.css
│ │ └── utilities.css
│ ├── types
│ │ ├── index.ts
│ │ ├── next.ts
│ │ ├── sanity-schema.ts
│ │ ├── search.ts
│ │ └── toc.ts
│ ├── utils
│ │ ├── __tests__
│ │ │ ├── generate-sidebar.test.ts
│ │ │ ├── generate-tableofcontents.test.ts
│ │ │ ├── mockdata.ts
│ │ │ └── utils.test.ts
│ │ ├── date-string.ts
│ │ ├── format-text.ts
│ │ ├── generate-sidebar.ts
│ │ ├── generate-tableofcontents.ts
│ │ ├── get-authors.ts
│ │ ├── get-image.ts
│ │ ├── index.ts
│ │ ├── is-new.ts
│ │ ├── prefers-reduced-motion.ts
│ │ ├── remove-emojies.ts
│ │ └── slack
│ │ │ ├── __tests__
│ │ │ └── find-user.test.ts
│ │ │ ├── fetch-members.ts
│ │ │ ├── find-user.ts
│ │ │ ├── index.ts
│ │ │ └── slack.types.ts
│ └── website-modules
│ │ ├── AkselLink.tsx
│ │ ├── AnimatedChevron.tsx
│ │ ├── ConsentBanner.tsx
│ │ ├── CookieProvider.tsx
│ │ ├── EditButton.tsx
│ │ ├── ErrorBoundary.tsx
│ │ ├── Feedback
│ │ ├── Feedback.module.css
│ │ ├── Feedback.stories.tsx
│ │ └── Feedback.tsx
│ │ ├── InlineCode.tsx
│ │ ├── IntroCards.tsx
│ │ ├── KBD.tsx
│ │ ├── List.tsx
│ │ ├── OutdatedAlert.tsx
│ │ ├── PreviewBanner.tsx
│ │ ├── SanityBlockContent.tsx
│ │ ├── SanityDataProvider.tsx
│ │ ├── ShowMore.tsx
│ │ ├── StatusTag.tsx
│ │ ├── Table.tsx
│ │ ├── TextWithMarkdown.tsx
│ │ ├── Umami.tsx
│ │ ├── Uxtweaks.tsx
│ │ ├── aksel-cube
│ │ ├── AkselCube.tsx
│ │ └── aksel-cube.module.css
│ │ ├── blogg-page
│ │ ├── BloggPage.tsx
│ │ └── parts
│ │ │ ├── BloggList.tsx
│ │ │ └── HighlightedBlogg.tsx
│ │ ├── examples
│ │ ├── __parts-inline
│ │ │ └── FormNavigation.tsx
│ │ ├── __parts
│ │ │ ├── ApplicationPictogram.tsx
│ │ │ ├── Dekorator.tsx
│ │ │ ├── PageDemoContent.tsx
│ │ │ ├── ShowHidePlaceholder.tsx
│ │ │ └── StackPlaceholder.tsx
│ │ ├── examples.module.css
│ │ ├── withDsExample.theme.tsx
│ │ └── withDsExample.tsx
│ │ ├── icon-page
│ │ ├── Page.tsx
│ │ ├── Sidebar.tsx
│ │ ├── TitleLinks.tsx
│ │ └── utils.ts
│ │ ├── menu
│ │ ├── Menu.module.css
│ │ ├── Menu.stories.tsx
│ │ └── Menu.tsx
│ │ ├── preview
│ │ ├── LiveQuery.tsx
│ │ ├── LiveQueryProvider.tsx
│ │ ├── PagePreview.tsx
│ │ └── Preview.types.ts
│ │ ├── search
│ │ ├── Search.tsx
│ │ ├── __tests__
│ │ │ └── group-results.test.ts
│ │ ├── hooks
│ │ │ ├── index.ts
│ │ │ ├── useSearch.ts
│ │ │ └── useShortcut.ts
│ │ ├── parts
│ │ │ ├── Form.tsx
│ │ │ ├── Hit.tsx
│ │ │ ├── HitCollection.tsx
│ │ │ ├── Results.tsx
│ │ │ ├── SearchButton.tsx
│ │ │ ├── SearchToggle.tsx
│ │ │ └── Skeleton.tsx
│ │ ├── providers
│ │ │ ├── SearchNavigationProvider.tsx
│ │ │ ├── SearchProvider.tsx
│ │ │ ├── SearchResultProvider.tsx
│ │ │ └── index.ts
│ │ └── utils
│ │ │ ├── format-result.ts
│ │ │ ├── fuse-search.ts
│ │ │ ├── group-results.ts
│ │ │ ├── highlighter.tsx
│ │ │ └── index.ts
│ │ ├── seo
│ │ ├── BaseSEO.tsx
│ │ └── SEO.tsx
│ │ ├── suggestionblock
│ │ ├── SuggestionBlock.GhPages.tsx
│ │ ├── SuggestionBlock.stories.tsx
│ │ └── SuggestionBlock.tsx
│ │ └── toc
│ │ ├── TableOfContents.module.css
│ │ ├── TableOfContents.tsx
│ │ ├── parts
│ │ ├── ScrollFade.tsx
│ │ ├── UlList.tsx
│ │ └── useScrollRange.ts
│ │ └── useToc.ts
│ ├── config
│ └── vitest.config.ts
│ ├── e2e
│ ├── sandbox.e2e.ts
│ ├── search.e2e.ts
│ ├── test-urls.json
│ └── verify-all.e2e.ts
│ ├── middleware.ts
│ ├── next-logger.config.js
│ ├── next.config.ts
│ ├── package.json
│ ├── pages
│ ├── 404.tsx
│ ├── 500.tsx
│ ├── _app.tsx
│ ├── _document.tsx
│ ├── _error.js
│ ├── api
│ │ ├── cookie-click-accept.ts
│ │ ├── cookie-click-decline.ts
│ │ ├── exit-preview.ts
│ │ ├── isAlive.ts
│ │ ├── logger.ts
│ │ ├── preview.ts
│ │ ├── preview
│ │ │ ├── disable-draft.ts
│ │ │ └── draft.ts
│ │ └── slack
│ │ │ └── feedback
│ │ │ └── v1
│ │ │ └── index.ts
│ ├── eksempler
│ │ ├── README.md
│ │ ├── accordion
│ │ │ ├── controlled-state.tsx
│ │ │ ├── default-open.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── size.tsx
│ │ │ └── variant-neutral.tsx
│ │ ├── actionmenu
│ │ │ ├── danger.tsx
│ │ │ ├── filter.tsx
│ │ │ ├── groups.tsx
│ │ │ ├── header.tsx
│ │ │ ├── items.tsx
│ │ │ ├── links.tsx
│ │ │ ├── shortcuts.tsx
│ │ │ └── sub-menu.tsx
│ │ ├── alert-with-buttons
│ │ │ └── alert-with-buttons.tsx
│ │ ├── alert
│ │ │ ├── fullwidth.tsx
│ │ │ ├── inline.tsx
│ │ │ ├── med-aria-role.tsx
│ │ │ ├── med-heading.tsx
│ │ │ ├── med-lukkeknapp.tsx
│ │ │ ├── sizes.tsx
│ │ │ └── variants.tsx
│ │ ├── bodylong
│ │ │ ├── colors.tsx
│ │ │ ├── font-weight.tsx
│ │ │ ├── override-tag.tsx
│ │ │ ├── sizes.tsx
│ │ │ ├── spacing.tsx
│ │ │ ├── text-align.tsx
│ │ │ └── truncate.tsx
│ │ ├── bodyshort
│ │ │ ├── colors.tsx
│ │ │ ├── font-weight.tsx
│ │ │ ├── override-tag.tsx
│ │ │ ├── sizes.tsx
│ │ │ ├── spacing.tsx
│ │ │ ├── text-align.tsx
│ │ │ └── truncate.tsx
│ │ ├── button
│ │ │ ├── action.tsx
│ │ │ ├── button-as-link.tsx
│ │ │ ├── danger.tsx
│ │ │ ├── disabled.tsx
│ │ │ ├── icon.tsx
│ │ │ ├── loading.tsx
│ │ │ └── neutral.tsx
│ │ ├── chat
│ │ │ ├── avatar.tsx
│ │ │ ├── colors.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── small.tsx
│ │ │ └── toptextPosition.tsx
│ │ ├── checkbox
│ │ │ ├── checkbox-description.tsx
│ │ │ ├── controlled.tsx
│ │ │ ├── description.tsx
│ │ │ ├── disabled.tsx
│ │ │ ├── group-error.tsx
│ │ │ ├── hide-labels.tsx
│ │ │ ├── hide-legend.tsx
│ │ │ ├── indeterminate.tsx
│ │ │ ├── medium.tsx
│ │ │ ├── readonly.tsx
│ │ │ └── small.tsx
│ │ ├── chips
│ │ │ ├── removable.tsx
│ │ │ ├── size.tsx
│ │ │ ├── toggle-no-checkmark.tsx
│ │ │ └── toggle.tsx
│ │ ├── combobox
│ │ │ ├── multi-select-controlled.tsx
│ │ │ ├── multi-select-with-new-options.tsx
│ │ │ ├── multi-select.tsx
│ │ │ ├── react-hook-form.tsx
│ │ │ ├── read-only.tsx
│ │ │ ├── single-select-with-autocomplete.tsx
│ │ │ ├── single-select.tsx
│ │ │ ├── with-complex-options.tsx
│ │ │ ├── with-error.tsx
│ │ │ └── with-max-selected-limit.tsx
│ │ ├── confirmationpanel
│ │ │ ├── demo.tsx
│ │ │ ├── error.tsx
│ │ │ └── small.tsx
│ │ ├── copybutton
│ │ │ ├── active-icon.tsx
│ │ │ ├── active-text.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── icon.tsx
│ │ │ ├── tooltip.tsx
│ │ │ ├── used-in-info.tsx
│ │ │ └── variants.tsx
│ │ ├── datepicker
│ │ │ ├── anchor.tsx
│ │ │ ├── disable-weekends.tsx
│ │ │ ├── disabled-days.tsx
│ │ │ ├── dropdown.tsx
│ │ │ ├── input-range.tsx
│ │ │ ├── input-single.tsx
│ │ │ ├── multiple.tsx
│ │ │ ├── range.tsx
│ │ │ ├── readonly.tsx
│ │ │ ├── standalone.tsx
│ │ │ ├── two-digit-year.tsx
│ │ │ └── validation.tsx
│ │ ├── detail
│ │ │ ├── colors.tsx
│ │ │ ├── font-weight.tsx
│ │ │ ├── override-tag.tsx
│ │ │ ├── spacing.tsx
│ │ │ ├── text-align.tsx
│ │ │ ├── truncate.tsx
│ │ │ └── uppercase.tsx
│ │ ├── dropdown
│ │ │ └── demo.tsx
│ │ ├── errormessage
│ │ │ ├── show-icon.tsx
│ │ │ └── sizes.tsx
│ │ ├── errorsummary
│ │ │ ├── demo.tsx
│ │ │ ├── heading-tag.tsx
│ │ │ ├── setting-focus.tsx
│ │ │ └── small.tsx
│ │ ├── expansioncard
│ │ │ ├── custom.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── description.tsx
│ │ │ ├── heading-sizes.tsx
│ │ │ ├── icon.tsx
│ │ │ └── small.tsx
│ │ ├── file-upload
│ │ │ ├── default.tsx
│ │ │ ├── dropzone-disabled.tsx
│ │ │ ├── error.tsx
│ │ │ ├── item-actions.tsx
│ │ │ ├── single.tsx
│ │ │ ├── translation.tsx
│ │ │ └── trigger.tsx
│ │ ├── formprogress
│ │ │ ├── links.tsx
│ │ │ └── state.tsx
│ │ ├── formsummary
│ │ │ ├── custom-editlink.tsx
│ │ │ ├── demo.tsx
│ │ │ └── grouped-answers.tsx
│ │ ├── guidepanel
│ │ │ ├── demo.tsx
│ │ │ └── poster.tsx
│ │ ├── h-grid
│ │ │ ├── align.tsx
│ │ │ ├── columns-variants.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── responsive-columns.tsx
│ │ │ └── responsive-gap.tsx
│ │ ├── h-stack
│ │ │ ├── align.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── justify.tsx
│ │ │ ├── responsive-direction.tsx
│ │ │ ├── responsive-gap.tsx
│ │ │ ├── spacer.tsx
│ │ │ └── wrap.tsx
│ │ ├── header
│ │ │ ├── app-switcher.tsx
│ │ │ ├── brukermeny.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── description.tsx
│ │ │ ├── home.tsx
│ │ │ └── search.tsx
│ │ ├── heading
│ │ │ ├── align.tsx
│ │ │ ├── colors.tsx
│ │ │ ├── level.tsx
│ │ │ ├── override-tag.tsx
│ │ │ ├── sizes.tsx
│ │ │ └── spacing.tsx
│ │ ├── helptext
│ │ │ ├── demo.tsx
│ │ │ └── placement.tsx
│ │ ├── label
│ │ │ ├── colors.tsx
│ │ │ ├── override-tag.tsx
│ │ │ ├── sizes.tsx
│ │ │ └── spacing.tsx
│ │ ├── link
│ │ │ ├── demo.tsx
│ │ │ ├── frameworks.tsx
│ │ │ ├── icon.tsx
│ │ │ ├── inline.tsx
│ │ │ └── variants.tsx
│ │ ├── linkpanel
│ │ │ ├── demo.tsx
│ │ │ ├── description.tsx
│ │ │ ├── nextjs-link.tsx
│ │ │ └── no-border.tsx
│ │ ├── list
│ │ │ ├── icons.tsx
│ │ │ ├── item-title.tsx
│ │ │ ├── large.tsx
│ │ │ ├── ordered.tsx
│ │ │ ├── small.tsx
│ │ │ └── unordered.tsx
│ │ ├── loader
│ │ │ ├── button.tsx
│ │ │ ├── interaction.tsx
│ │ │ ├── inverted.tsx
│ │ │ ├── neutral.tsx
│ │ │ ├── size.tsx
│ │ │ └── transparent.tsx
│ │ ├── modal
│ │ │ ├── close-on-backdrop-click.tsx
│ │ │ ├── custom-header.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── form.tsx
│ │ │ ├── no-closebutton.tsx
│ │ │ ├── placement-top.tsx
│ │ │ └── with-label-and-icon.tsx
│ │ ├── monthpicker
│ │ │ ├── anchor.tsx
│ │ │ ├── disabled-months.tsx
│ │ │ ├── dropdown.tsx
│ │ │ ├── input.tsx
│ │ │ ├── readonly.tsx
│ │ │ ├── standalone.tsx
│ │ │ └── validation.tsx
│ │ ├── pagination
│ │ │ ├── labeling.tsx
│ │ │ ├── prev-next-texts.tsx
│ │ │ └── sizes.tsx
│ │ ├── panel
│ │ │ ├── demo.tsx
│ │ │ └── no-border.tsx
│ │ ├── popover
│ │ │ ├── demo.tsx
│ │ │ ├── no-arrow.tsx
│ │ │ ├── no-offset.tsx
│ │ │ ├── no-padding.tsx
│ │ │ └── placement.tsx
│ │ ├── primitive-bleed
│ │ │ ├── as-child.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── directions.tsx
│ │ │ ├── full.tsx
│ │ │ ├── optical-alignment.tsx
│ │ │ ├── reflective-padding.tsx
│ │ │ └── responsive.tsx
│ │ ├── primitive-box
│ │ │ ├── background.tsx
│ │ │ ├── border-color.tsx
│ │ │ ├── border-radius.tsx
│ │ │ ├── border-width.tsx
│ │ │ ├── header.tsx
│ │ │ ├── padding-block.tsx
│ │ │ ├── padding-inline.tsx
│ │ │ ├── padding.tsx
│ │ │ ├── panel.tsx
│ │ │ └── shadow.tsx
│ │ ├── primitive-hide
│ │ │ ├── hide.tsx
│ │ │ └── mix.tsx
│ │ ├── primitive-page
│ │ │ ├── background.tsx
│ │ │ ├── below-fold.tsx
│ │ │ ├── content-block-padding.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── gutters.tsx
│ │ │ └── width.tsx
│ │ ├── primitive-show
│ │ │ ├── mix.tsx
│ │ │ └── show.tsx
│ │ ├── progress-bar
│ │ │ ├── indeterminate.tsx
│ │ │ ├── interactive.tsx
│ │ │ ├── loading.tsx
│ │ │ └── sizes.tsx
│ │ ├── radio-horizontal
│ │ │ └── horizontal.tsx
│ │ ├── radio
│ │ │ ├── controlled.tsx
│ │ │ ├── description.tsx
│ │ │ ├── disabled.tsx
│ │ │ ├── error.tsx
│ │ │ ├── hide-legend.tsx
│ │ │ ├── medium.tsx
│ │ │ ├── radio-description.tsx
│ │ │ ├── readonly.tsx
│ │ │ └── small.tsx
│ │ ├── readmore
│ │ │ ├── demo.tsx
│ │ │ ├── form.tsx
│ │ │ └── small.tsx
│ │ ├── search
│ │ │ ├── custom-button.tsx
│ │ │ ├── darkmode.tsx
│ │ │ ├── error.tsx
│ │ │ ├── input-size.tsx
│ │ │ ├── primary.tsx
│ │ │ ├── secondary.tsx
│ │ │ ├── simple.tsx
│ │ │ ├── small.tsx
│ │ │ └── vis-label.tsx
│ │ ├── select
│ │ │ ├── description.tsx
│ │ │ ├── disabled.tsx
│ │ │ ├── error.tsx
│ │ │ ├── hide-label.tsx
│ │ │ ├── medium.tsx
│ │ │ ├── readonly.tsx
│ │ │ └── small.tsx
│ │ ├── skeleton
│ │ │ ├── card.tsx
│ │ │ ├── children.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── text-size.tsx
│ │ │ └── variants.tsx
│ │ ├── stepper
│ │ │ ├── demo.tsx
│ │ │ ├── display-only.tsx
│ │ │ ├── horizontal.tsx
│ │ │ └── wizard.tsx
│ │ ├── switch
│ │ │ ├── controlled-boolean.tsx
│ │ │ ├── controlled-value.tsx
│ │ │ ├── description.tsx
│ │ │ ├── disabled.tsx
│ │ │ ├── hide-label.tsx
│ │ │ ├── loading.tsx
│ │ │ ├── medium.tsx
│ │ │ ├── readonly.tsx
│ │ │ ├── right.tsx
│ │ │ └── small.tsx
│ │ ├── table-menu
│ │ │ └── demo.tsx
│ │ ├── table-numbers
│ │ │ └── demo.tsx
│ │ ├── table
│ │ │ ├── expandable.tsx
│ │ │ ├── medium.tsx
│ │ │ ├── pagination.tsx
│ │ │ ├── selectable.tsx
│ │ │ ├── small.tsx
│ │ │ ├── sortable.tsx
│ │ │ ├── with-input.tsx
│ │ │ └── zebraStripes.tsx
│ │ ├── tabs
│ │ │ ├── controlled.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── fill.tsx
│ │ │ ├── follow-focus.tsx
│ │ │ ├── icon-top.tsx
│ │ │ └── small.tsx
│ │ ├── tag
│ │ │ ├── ikon.tsx
│ │ │ ├── sizes.tsx
│ │ │ └── variants.tsx
│ │ ├── textarea
│ │ │ ├── auto-scrollbar.tsx
│ │ │ ├── description.tsx
│ │ │ ├── disabled.tsx
│ │ │ ├── error.tsx
│ │ │ ├── hide-label.tsx
│ │ │ ├── max-length.tsx
│ │ │ ├── medium.tsx
│ │ │ ├── readonly.tsx
│ │ │ ├── resizable.tsx
│ │ │ └── small.tsx
│ │ ├── textfield
│ │ │ ├── description.tsx
│ │ │ ├── disabled.tsx
│ │ │ ├── error.tsx
│ │ │ ├── hide-label.tsx
│ │ │ ├── medium.tsx
│ │ │ ├── readonly.tsx
│ │ │ └── small.tsx
│ │ ├── timeline-intern
│ │ │ ├── active-periods.tsx
│ │ │ ├── aria-controls.tsx
│ │ │ ├── dynamic.tsx
│ │ │ ├── pins.tsx
│ │ │ └── timeline.tsx
│ │ ├── togglegroup
│ │ │ ├── demo.tsx
│ │ │ ├── fill.tsx
│ │ │ ├── group-label.tsx
│ │ │ ├── ikon.tsx
│ │ │ ├── item-label.tsx
│ │ │ ├── small.tsx
│ │ │ └── with-tooltip.tsx
│ │ ├── tooltip
│ │ │ ├── demo.tsx
│ │ │ ├── labeling.tsx
│ │ │ ├── no-arrow.tsx
│ │ │ ├── placement.tsx
│ │ │ └── with-shortcuts.tsx
│ │ └── v-stack
│ │ │ ├── align.tsx
│ │ │ ├── demo.tsx
│ │ │ ├── justify.tsx
│ │ │ └── responsive-gap.tsx
│ ├── god-praksis
│ │ ├── [slug].tsx
│ │ ├── artikler
│ │ │ └── [slug].tsx
│ │ └── index.tsx
│ ├── grunnleggende
│ │ ├── [...slug].tsx
│ │ └── index.tsx
│ ├── ikoner
│ │ └── [[...name]].tsx
│ ├── index.tsx
│ ├── komponenter
│ │ ├── [...slug].tsx
│ │ └── index.tsx
│ ├── monster-maler
│ │ ├── [...slug].tsx
│ │ └── index.tsx
│ ├── personvernerklaering.tsx
│ ├── prinsipper
│ │ └── [...prinsipp].tsx
│ ├── produktbloggen
│ │ ├── [slug].tsx
│ │ └── index.tsx
│ ├── side
│ │ └── [slug].tsx
│ ├── sitemap.xml.js
│ └── templates
│ │ ├── 404
│ │ ├── enkel.tsx
│ │ ├── komplett.tsx
│ │ ├── med-cta.tsx
│ │ ├── med-feedback.tsx
│ │ ├── med-lang-en.tsx
│ │ ├── meta.json
│ │ └── uten-dekorator.tsx
│ │ ├── 500
│ │ ├── enkel.tsx
│ │ ├── komplett.tsx
│ │ ├── med-cta.tsx
│ │ ├── med-feil-id.tsx
│ │ ├── med-lang-en.tsx
│ │ ├── meta.json
│ │ └── uten-dekorator.tsx
│ │ ├── skjemavalidering
│ │ ├── demo.tsx
│ │ └── react-hook-form.tsx
│ │ ├── soknad-introside-real-examples
│ │ ├── soknad-introside-aap.tsx
│ │ ├── soknad-introside-alderspensjon.tsx
│ │ ├── soknad-introside-foreldrepenger.tsx
│ │ └── soknad-introside-pass-av-barn.tsx
│ │ ├── soknad-introside
│ │ ├── intro-med-alert.tsx
│ │ ├── intro-med-alternativ-soknad.tsx
│ │ ├── intro.tsx
│ │ └── meta.json
│ │ ├── soknad-oppsummeringsside-real-examples
│ │ ├── aap.tsx
│ │ └── dagpenger.tsx
│ │ └── soknad-oppsummeringsside
│ │ ├── meta.json
│ │ └── standard.tsx
│ ├── playwright.config.ts
│ ├── postcss.config.js
│ ├── public
│ ├── favicon.svg
│ ├── googleea35344781fedaa4.html
│ ├── images
│ │ ├── og
│ │ │ ├── blogg
│ │ │ │ ├── image-1.png
│ │ │ │ ├── image-2.png
│ │ │ │ ├── image-3.png
│ │ │ │ ├── image-4.png
│ │ │ │ ├── image-5.png
│ │ │ │ ├── image-6.png
│ │ │ │ ├── image-7.png
│ │ │ │ ├── image-8.png
│ │ │ │ └── image-9.png
│ │ │ ├── forside
│ │ │ │ └── image-1.png
│ │ │ ├── ikoner
│ │ │ │ └── og-ikoner.png
│ │ │ └── video-poster.png
│ │ └── thumbnail
│ │ │ ├── blogg
│ │ │ ├── image-1.svg
│ │ │ ├── image-2.svg
│ │ │ ├── image-3.svg
│ │ │ ├── image-4.svg
│ │ │ ├── image-5.svg
│ │ │ ├── image-6.svg
│ │ │ ├── image-7.svg
│ │ │ ├── image-8.svg
│ │ │ └── image-9.svg
│ │ │ └── ikoner
│ │ │ └── thumbnail.svg
│ └── robots.txt
│ ├── sanity.cli.ts
│ ├── sanity
│ ├── config.ts
│ ├── interface
│ │ ├── client.server.ts
│ │ ├── interface.ts
│ │ └── queries.js
│ ├── logo.tsx
│ ├── plugins
│ │ ├── presentation
│ │ │ └── resolve.ts
│ │ ├── publication-flow
│ │ │ ├── actions
│ │ │ │ ├── forcedPublish.ts
│ │ │ │ ├── lastVerified.tsx
│ │ │ │ └── publishedAt.ts
│ │ │ └── index.ts
│ │ └── structure
│ │ │ ├── admin.ts
│ │ │ ├── god-praksis.ts
│ │ │ ├── grunnleggende.ts
│ │ │ ├── index.tsx
│ │ │ ├── komponenter.ts
│ │ │ ├── monster.ts
│ │ │ ├── panes.ts
│ │ │ ├── produktbloggen.ts
│ │ │ └── structure.util.ts
│ ├── sanity-schema.json
│ ├── sanity-typegen.json
│ ├── sanity.config.ts
│ ├── schema
│ │ ├── __tests__
│ │ │ └── sanitize-slug.test.ts
│ │ ├── custom-components
│ │ │ ├── LinkRenderer.tsx
│ │ │ ├── WriteHelp.tsx
│ │ │ ├── gp
│ │ │ │ ├── InnholdstypeHighlight.tsx
│ │ │ │ ├── TemaContacts.tsx
│ │ │ │ └── UndertemaHighlight.tsx
│ │ │ ├── index.ts
│ │ │ └── updateInfo.tsx
│ │ ├── documents
│ │ │ ├── admin
│ │ │ │ ├── articleViews.tsx
│ │ │ │ ├── cookies.ts
│ │ │ │ ├── editors.tsx
│ │ │ │ └── redirects.ts
│ │ │ ├── blogg
│ │ │ │ ├── artikkel.tsx
│ │ │ │ └── landingsside.tsx
│ │ │ ├── forside.tsx
│ │ │ ├── god-praksis
│ │ │ │ ├── artikkel.tsx
│ │ │ │ ├── innholdstype.ts
│ │ │ │ ├── landingsside.tsx
│ │ │ │ ├── tema.ts
│ │ │ │ └── undertema.ts
│ │ │ ├── grunnleggende
│ │ │ │ ├── artikkel.tsx
│ │ │ │ ├── endringsloggartikkel.tsx
│ │ │ │ └── landingsside.tsx
│ │ │ ├── index.ts
│ │ │ ├── komponenter
│ │ │ │ ├── artikkel.tsx
│ │ │ │ ├── kode-eksempler.tsx
│ │ │ │ ├── landingsside.tsx
│ │ │ │ ├── props.tsx
│ │ │ │ └── tokens.tsx
│ │ │ ├── presets
│ │ │ │ ├── artikkel-preview.tsx
│ │ │ │ ├── editors.ts
│ │ │ │ ├── groups.ts
│ │ │ │ ├── hidden-fields.ts
│ │ │ │ ├── ingress.ts
│ │ │ │ ├── oppdateringsvarsel.ts
│ │ │ │ ├── relevante-artikler.ts
│ │ │ │ ├── seo.ts
│ │ │ │ ├── skrivehjelp.ts
│ │ │ │ ├── slug.ts
│ │ │ │ └── title-field.ts
│ │ │ ├── prinsipper
│ │ │ │ ├── artikkel.tsx
│ │ │ │ └── landingsside.tsx
│ │ │ ├── publiseringsflyt.ts
│ │ │ ├── skrivehjelp.ts
│ │ │ ├── standalone-artikkel.tsx
│ │ │ └── templates
│ │ │ │ ├── artikkel.tsx
│ │ │ │ └── landingsside.tsx
│ │ ├── index.ts
│ │ └── objects
│ │ │ ├── index.ts
│ │ │ ├── komponent
│ │ │ ├── intro.tsx
│ │ │ ├── kode-eksempler.tsx
│ │ │ ├── props.tsx
│ │ │ └── token-tabell.tsx
│ │ │ ├── shared
│ │ │ ├── accordion.tsx
│ │ │ ├── alert.tsx
│ │ │ ├── attachment.tsx
│ │ │ ├── bilde.tsx
│ │ │ ├── compare-images.tsx
│ │ │ ├── dodont.tsx
│ │ │ ├── expansion-card.tsx
│ │ │ ├── kode.tsx
│ │ │ ├── language.tsx
│ │ │ ├── relatert-innhold.tsx
│ │ │ ├── riktekst.tsx
│ │ │ ├── tabell.tsx
│ │ │ ├── tips.tsx
│ │ │ ├── unik-sidemodul.tsx
│ │ │ └── video.tsx
│ │ │ └── templates
│ │ │ └── ExampletextBlock.tsx
│ └── util.ts
│ ├── scripts
│ ├── backup.ts
│ ├── changelog.ts
│ ├── changelog_old.ts
│ ├── create-index.ts
│ ├── generate-rss-feed.tsx
│ ├── generate-testpaths.ts
│ ├── update-examples
│ │ ├── __tests__
│ │ │ ├── extract-args.test.ts
│ │ │ ├── extract-metadata.ts
│ │ │ ├── filter-code.test.ts
│ │ │ ├── get-directories.test.ts
│ │ │ ├── mockdata.ts
│ │ │ └── parse-dirs.test.ts
│ │ ├── parts
│ │ │ ├── extract-args.ts
│ │ │ ├── extract-metadata.ts
│ │ │ ├── filter-code.ts
│ │ │ ├── get-directories.ts
│ │ │ ├── get-files.ts
│ │ │ ├── parse-code-files.ts
│ │ │ ├── sandbox-process-base64.ts
│ │ │ ├── sort.ts
│ │ │ └── validate-examples.ts
│ │ ├── types.ts
│ │ ├── update-sanity.ts
│ │ └── validate.ts
│ ├── update-props.tsx
│ └── update-tokens.tsx
│ ├── tailwind.config.js
│ └── tsconfig.json
├── biome.json
├── examples
├── astro
│ ├── .gitignore
│ ├── README.md
│ ├── astro.config.mjs
│ ├── package.json
│ ├── public
│ │ └── favicon.svg
│ ├── src
│ │ ├── components
│ │ │ ├── Card.astro
│ │ │ └── ReactTest.tsx
│ │ ├── layouts
│ │ │ └── Layout.astro
│ │ └── pages
│ │ │ └── index.astro
│ ├── tsconfig.json
│ └── yarn.lock
├── next-appdir
│ ├── .gitignore
│ ├── README.md
│ ├── next.config.js
│ ├── package.json
│ ├── public
│ │ ├── next.svg
│ │ └── vercel.svg
│ ├── src
│ │ └── app
│ │ │ ├── client.tsx
│ │ │ ├── favicon.ico
│ │ │ ├── globals.css
│ │ │ ├── layout.tsx
│ │ │ ├── page.module.css
│ │ │ └── page.tsx
│ ├── tsconfig.json
│ └── yarn.lock
├── referansesider
│ ├── .gitignore
│ ├── README.md
│ ├── eslint.config.js
│ ├── index.html
│ ├── package.json
│ ├── postcss.config.js
│ ├── public
│ │ └── favicon.svg
│ ├── src
│ │ ├── assets
│ │ │ ├── NavLogo.tsx
│ │ │ └── SykepengerIcon.tsx
│ │ ├── components
│ │ │ ├── Button.tsx
│ │ │ ├── MiniTag.tsx
│ │ │ ├── Page.tsx
│ │ │ ├── PlainText.tsx
│ │ │ ├── RouteMapper.tsx
│ │ │ └── aktivitetsplan
│ │ │ │ ├── ActivityCard.tsx
│ │ │ │ ├── ActivityColumn.tsx
│ │ │ │ ├── MainCard.tsx
│ │ │ │ └── modal
│ │ │ │ ├── ActivityDetails.tsx
│ │ │ │ ├── DatePickerWrapper.tsx
│ │ │ │ └── JobInterestBox.tsx
│ │ ├── data
│ │ │ └── activities.ts
│ │ ├── index.css
│ │ ├── main.tsx
│ │ ├── routes
│ │ │ ├── __root.tsx
│ │ │ ├── aktivitetsplan.$activityId.tsx
│ │ │ ├── aktivitetsplan.ny.tsx
│ │ │ ├── aktivitetsplan.tsx
│ │ │ ├── index.tsx
│ │ │ ├── komponenter.tsx
│ │ │ └── sykepenger.tsx
│ │ └── theme
│ │ │ ├── ThemeContext.ts
│ │ │ ├── ThemeProvider.tsx
│ │ │ └── ThemeSwitch.tsx
│ ├── tailwind.config.js
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ ├── vite.config.ts
│ └── yarn.lock
└── shadow-dom
│ ├── .gitignore
│ ├── index.html
│ ├── main.tsx
│ ├── open.tsx
│ ├── package.json
│ ├── public
│ └── vite.svg
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ ├── vite.config.ts
│ └── yarn.lock
├── fonts
├── LICENSE
├── README.md
├── SourceSans3-italic-cyrillic.woff2
├── SourceSans3-italic-cyrillic_ext.woff2
├── SourceSans3-italic-latin-semibold.woff2
├── SourceSans3-italic-latin.woff2
├── SourceSans3-italic-latin_ext.woff2
├── SourceSans3-italic.woff2
├── SourceSans3-normal-cyrillic.woff2
├── SourceSans3-normal-cyrillic_ext.woff2
├── SourceSans3-normal-latin.woff2
├── SourceSans3-normal-latin_ext.woff2
└── SourceSans3-normal.woff2
├── package.json
├── scripts
├── article-views
│ ├── Dockerfile.update-article-views
│ ├── Dockerfile.update-article-views.dockerignore
│ ├── delete-article-views
│ │ └── main.ts
│ ├── deno.json
│ ├── deno.lock
│ ├── deps.ts
│ ├── nais-update-views-job.yml
│ ├── queries.ts
│ └── update-article-views
│ │ ├── main.ts
│ │ └── utils.ts
├── changelog
│ ├── createMainChangelog.ts
│ ├── deno.json
│ ├── deno.lock
│ └── utils.ts
├── clean.mjs
├── docgen.ts
├── eslint
│ ├── comment-check.js
│ ├── import-check.js
│ ├── index.js
│ └── package.json
└── in-sync-versions.ts
├── tsconfig.build.json
├── tsconfig.json
└── yarn.lock
/.changeset/clear-melons-greet.md:
--------------------------------------------------------------------------------
1 | ---
2 | "@navikt/ds-react": minor
3 | ---
4 |
5 | Datepicker: Upgraded 'react-day-picker' dependency to v9.7.0 from v9.6.1.
6 |
--------------------------------------------------------------------------------
/.changeset/cold-trams-send.md:
--------------------------------------------------------------------------------
1 | ---
2 | "@navikt/ds-react": patch
3 | ---
4 |
5 | Timeline: Reverted regression that lead to 'aria-controls' being ignored when passed to Pin or Period.
6 |
--------------------------------------------------------------------------------
/.changeset/darkside-0.md:
--------------------------------------------------------------------------------
1 | ---
2 | "@navikt/ds-react": minor
3 | "@navikt/ds-css": minor
4 | "@navikt/ds-tokens": minor
5 | ---
6 |
7 | Darkside: Renamed 'data-color-role' dynamic theme attribute to 'data-color'.
8 |
--------------------------------------------------------------------------------
/.changeset/darkside-1.md:
--------------------------------------------------------------------------------
1 | ---
2 | "@navikt/ds-tokens": minor
3 | ---
4 |
5 | Darkside: 'Accent' is now set as the default color palette in components when no other options are set.
6 |
--------------------------------------------------------------------------------
/.changeset/darkside-4.md:
--------------------------------------------------------------------------------
1 | ---
2 | "@navikt/ds-react": minor
3 | "@navikt/ds-css": minor
4 | ---
5 |
6 | Darkside: All components has been updated to use 'data-color' attribute for coloring. As a side-effect, most component CSS is either updated or refactored.
7 |
--------------------------------------------------------------------------------
/.changeset/floppy-mugs-kneel.md:
--------------------------------------------------------------------------------
1 | ---
2 | "@navikt/aksel-icons": minor
3 | ---
4 |
5 | Icons: :tada: Added new icons 'SquareGrid' and 'SquareGridFill'.
6 |
--------------------------------------------------------------------------------
/.changeset/fuzzy-taxes-try.md:
--------------------------------------------------------------------------------
1 | ---
2 | "@navikt/ds-react": patch
3 | ---
4 |
5 | Timeline: Removed 'aria-haspopup' from pins and periods.
6 |
--------------------------------------------------------------------------------
/.changeset/grumpy-melons-grab.md:
--------------------------------------------------------------------------------
1 | ---
2 | "@navikt/ds-react": patch
3 | ---
4 |
5 | ErrorSummary: Heading size is now 'xsmall' for non-medium sizes and remains 'small' when size='medium'.
6 |
--------------------------------------------------------------------------------
/.changeset/poor-brooms-tickle.md:
--------------------------------------------------------------------------------
1 | ---
2 | "@navikt/ds-css": patch
3 | ---
4 |
5 | Darkside: Fix icon size in small Tabs
6 |
--------------------------------------------------------------------------------
/.changeset/tiny-regions-hope.md:
--------------------------------------------------------------------------------
1 | ---
2 | "@navikt/ds-css": patch
3 | ---
4 |
5 | List: Fix issue with incorrect padding in Safari
6 |
--------------------------------------------------------------------------------
/.git-blame-ignore-revs:
--------------------------------------------------------------------------------
1 | 509e1f2ded31a7d804422d05025454fac5a4c988
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/token-missing.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug Report
3 | about: Meld inn bugs eller feil
4 | title: "[BUG]"
5 | labels: "bug \U0001F41B"
6 | assignees: ""
7 | ---
8 |
9 | ## Hva forventet du å finne for dette søket?
10 |
--------------------------------------------------------------------------------
/.husky/.gitignore:
--------------------------------------------------------------------------------
1 | _
2 |
--------------------------------------------------------------------------------
/.husky/post-checkout:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 | . "$(dirname -- "$0")/_/husky.sh"
3 |
4 | CHANGED=`git diff $1 $2 --stat -- yarn.lock | wc -l`
5 | if [ $CHANGED -gt 0 ];
6 | then
7 | echo
8 | echo "*** 🟡 yarn.lock has changed 🟡 ***"
9 | fi
--------------------------------------------------------------------------------
/.husky/post-merge:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 | . "$(dirname -- "$0")/_/husky.sh"
3 |
4 | CHANGED=`git diff HEAD@{1} --stat -- yarn.lock | wc -l`
5 | if [ $CHANGED -gt 0 ];
6 | then
7 | echo
8 | echo "*** 🟡 yarn.lock has changed 🟡 ***"
9 | fi
--------------------------------------------------------------------------------
/.husky/pre-commit:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | . "$(dirname $0)/_/husky.sh"
3 |
4 | yarn lint-staged && yarn tsx ./scripts/in-sync-versions.ts
5 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | **/nais*.yaml
2 | **/nais*.yml
3 | **/codemod/**/tests/**/*.js
4 | **/@navikt/aksel/**/*.input.*
5 | **/@navikt/aksel/**/*.output.*
6 | node_modules
7 | .next
8 | dist
9 | public
10 | static
11 | cjs
12 | esm
13 | aksel-icons/template
14 | aksel-icons/icons/*.svg
15 |
16 |
--------------------------------------------------------------------------------
/.storybook/docs/assets/aksel-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/navikt/aksel/8730d7a7dbb1c529f3c256c81dcdef26bece21a7/.storybook/docs/assets/aksel-thumbnail.png
--------------------------------------------------------------------------------
/.storybook/docs/assets/components.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/navikt/aksel/8730d7a7dbb1c529f3c256c81dcdef26bece21a7/.storybook/docs/assets/components.png
--------------------------------------------------------------------------------
/.storybook/docs/assets/setup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/navikt/aksel/8730d7a7dbb1c529f3c256c81dcdef26bece21a7/.storybook/docs/assets/setup.png
--------------------------------------------------------------------------------
/.storybook/manager.ts:
--------------------------------------------------------------------------------
1 | import { addons } from "@storybook/manager-api";
2 | import AkselTheme from "./theme.js";
3 |
4 | addons.setConfig({
5 | theme: AkselTheme,
6 | });
7 |
--------------------------------------------------------------------------------
/.storybook/theme.js:
--------------------------------------------------------------------------------
1 | import { create } from "@storybook/theming";
2 | import logoUrl from "./public/logo.svg";
3 |
4 | export default create({
5 | brandImage: logoUrl,
6 | base: "light",
7 | brandTitle: "Aksel",
8 | });
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/.gitignore:
--------------------------------------------------------------------------------
1 | dist
2 | src
3 | svgtest
4 | core-icons
5 | *.zip
--------------------------------------------------------------------------------
/@navikt/aksel-icons/figma-plugin/src/assets/cover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/navikt/aksel/8730d7a7dbb1c529f3c256c81dcdef26bece21a7/@navikt/aksel-icons/figma-plugin/src/assets/cover.png
--------------------------------------------------------------------------------
/@navikt/aksel-icons/figma-plugin/src/assets/gh-cover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/navikt/aksel/8730d7a7dbb1c529f3c256c81dcdef26bece21a7/@navikt/aksel-icons/figma-plugin/src/assets/gh-cover.png
--------------------------------------------------------------------------------
/@navikt/aksel-icons/figma-plugin/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/navikt/aksel/8730d7a7dbb1c529f3c256c81dcdef26bece21a7/@navikt/aksel-icons/figma-plugin/src/assets/logo.png
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Airplane.yml:
--------------------------------------------------------------------------------
1 | name: Airplane
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - fly
6 | - reise
7 | - travel
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/AirplaneFill.yml:
--------------------------------------------------------------------------------
1 | name: AirplaneFill
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - fly
6 | - reise
7 | - travel
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Archive.yml:
--------------------------------------------------------------------------------
1 | name: Archive
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - arkiv
6 | - box
7 | - boks
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 22.02.2024
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ArchiveFill.yml:
--------------------------------------------------------------------------------
1 | name: ArchiveFill
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - arkiv
6 | - box
7 | - boks
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 22.02.2024
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ArrowDown.yml:
--------------------------------------------------------------------------------
1 | name: ArrowDown
2 | category: Arrows
3 | sub_category: Arrow
4 | keywords:
5 | - arrow
6 | - pil
7 | - down
8 | - ned
9 | - open
10 | - åpne
11 | - åpnet
12 | - opened
13 | variant: Stroke
14 | updated_at: 14.05.2025
15 | created_at: 07.03.2023
16 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ArrowDownRight.yml:
--------------------------------------------------------------------------------
1 | name: ArrowDownRight
2 | category: Arrows
3 | sub_category: Arrow
4 | keywords:
5 | - arrow
6 | - pil
7 | - indent
8 | - level
9 | - nivå
10 | - innrykk
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 04.12.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ArrowLeft.yml:
--------------------------------------------------------------------------------
1 | name: ArrowLeft
2 | category: Arrows
3 | sub_category: Arrow
4 | keywords:
5 | - pil
6 | - left
7 | - venstre
8 | - back
9 | - tilbake
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ArrowRight.yml:
--------------------------------------------------------------------------------
1 | name: ArrowRight
2 | category: Arrows
3 | sub_category: Arrow
4 | keywords:
5 | - pil
6 | - høyre
7 | - right
8 | - forward
9 | - frem
10 | - fram
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ArrowUp.yml:
--------------------------------------------------------------------------------
1 | name: ArrowUp
2 | category: Arrows
3 | sub_category: Arrow
4 | keywords:
5 | - pil
6 | - up
7 | - opp
8 | - top
9 | - topp
10 | - close
11 | - lukke
12 | variant: Stroke
13 | updated_at: 14.05.2025
14 | created_at: 07.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ArrowsUpDown.yml:
--------------------------------------------------------------------------------
1 | name: ArrowsUpDown
2 | category: Arrows
3 | sub_category: Arrow
4 | keywords:
5 | - arrows
6 | - piler
7 | - sort
8 | - sortere
9 | - sortering
10 | - sorting
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Backpack.yml:
--------------------------------------------------------------------------------
1 | name: Backpack
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - sekk
6 | - reise
7 | - travel
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BackpackFill.yml:
--------------------------------------------------------------------------------
1 | name: BackpackFill
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - sekk
6 | - reise
7 | - travel
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Backward.yml:
--------------------------------------------------------------------------------
1 | name: Backward
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Bakover
6 | - spole bakover
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BackwardFill.yml:
--------------------------------------------------------------------------------
1 | name: BackwardFill
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Bakover
6 | - spole bakover
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Bacteria.yml:
--------------------------------------------------------------------------------
1 | name: Bacteria
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - sickness
6 | - bakterie
7 | - syk
8 | - sykdom
9 | - illness
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BacteriaFill.yml:
--------------------------------------------------------------------------------
1 | name: BacteriaFill
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - sickness
6 | - bakterie
7 | - syk
8 | - sykdom
9 | - illness
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Baggage.yml:
--------------------------------------------------------------------------------
1 | name: Baggage
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - bagasje
6 | - reise
7 | - travel
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BaggageFill.yml:
--------------------------------------------------------------------------------
1 | name: BaggageFill
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - bagasje
6 | - reise
7 | - travel
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Bandage.yml:
--------------------------------------------------------------------------------
1 | name: Bandage
2 | category: Wellness
3 | sub_category: Equipment
4 | keywords:
5 | - Band-Aid
6 | - plaster
7 | - sår
8 | - hurt
9 | - injury
10 | - skade
11 | - meld skade
12 | variant: Stroke
13 | updated_at: 14.05.2025
14 | created_at: 07.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BankNote.yml:
--------------------------------------------------------------------------------
1 | name: BankNote
2 | category: Money
3 | sub_category: Payment
4 | keywords:
5 | - penger
6 | - kroner
7 | - norske kroner
8 | - norwegian krone
9 | - seddel
10 | - kontanter
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Bed.yml:
--------------------------------------------------------------------------------
1 | name: Bed
2 | category: Home
3 | sub_category: Furniture
4 | keywords:
5 | - sleep
6 | - søvn
7 | - seng
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BedFill.yml:
--------------------------------------------------------------------------------
1 | name: BedFill
2 | category: Home
3 | sub_category: Furniture
4 | keywords:
5 | - sleep
6 | - søvn
7 | - seng
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Bicycle.yml:
--------------------------------------------------------------------------------
1 | name: Bicycle
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - sykkel
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Boat.yml:
--------------------------------------------------------------------------------
1 | name: Boat
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - båt
6 | - ferge
7 | - ferry
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BoatFill.yml:
--------------------------------------------------------------------------------
1 | name: BoatFill
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - båt
6 | - ferge
7 | - ferry
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Bookmark.yml:
--------------------------------------------------------------------------------
1 | name: Bookmark
2 | category: Interface
3 | sub_category: Filtering and sorting
4 | keywords:
5 | - save
6 | - bokmerke
7 | - collection
8 | - collect
9 | - legg til
10 | - add
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Bowl.yml:
--------------------------------------------------------------------------------
1 | name: Bowl
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - bolle
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BowlFill.yml:
--------------------------------------------------------------------------------
1 | name: BowlFill
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - bolle
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Braille.yml:
--------------------------------------------------------------------------------
1 | name: Braille
2 | category: Accessibility
3 | sub_category: Sight
4 | keywords:
5 | - blindeskrift
6 | - punktskrift
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BrailleFill.yml:
--------------------------------------------------------------------------------
1 | name: BrailleFill
2 | category: Accessibility
3 | sub_category: Sight
4 | keywords:
5 | - blindeskrift
6 | - punktskrift
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Bucket.yml:
--------------------------------------------------------------------------------
1 | name: Bucket
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - bøtte
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BucketFill.yml:
--------------------------------------------------------------------------------
1 | name: BucketFill
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - bøtte
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BucketMop.yml:
--------------------------------------------------------------------------------
1 | name: BucketMop
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - vaks
6 | - vaske
7 | - cleaning
8 | - bøtte
9 | - mopp
10 | - bucket
11 | - mop
12 | variant: Stroke
13 | updated_at: 14.05.2025
14 | created_at: 07.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BucketMopFill.yml:
--------------------------------------------------------------------------------
1 | name: BucketMopFill
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - vaks
6 | - vaske
7 | - cleaning
8 | - bøtte
9 | - mopp
10 | - bucket
11 | - mop
12 | variant: Fill
13 | updated_at: 14.05.2025
14 | created_at: 07.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Bug.yml:
--------------------------------------------------------------------------------
1 | name: Bug
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - Bug
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 27.02.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BugFill.yml:
--------------------------------------------------------------------------------
1 | name: BugFill
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - BugFill
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 27.02.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/BulletList.yml:
--------------------------------------------------------------------------------
1 | name: BulletList
2 | category: Statistics and math
3 | sub_category: Tabular
4 | keywords:
5 | - liste
6 | - rekkefølge
7 | - order
8 | - punktliste
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CameraTriangle.yml:
--------------------------------------------------------------------------------
1 | name: CameraTriangle
2 | category: Status
3 | sub_category: Device status
4 | keywords:
5 | - kamera
6 | - camera error
7 | - kamerafeil
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CameraTriangleFill.yml:
--------------------------------------------------------------------------------
1 | name: CameraTriangleFill
2 | category: Status
3 | sub_category: Device status
4 | keywords:
5 | - kamera
6 | - camera error
7 | - kamerafeil
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Candle.yml:
--------------------------------------------------------------------------------
1 | name: Candle
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - lys
6 | - stearinlys
7 | - død
8 | - dødsfall
9 | - death
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CandleFill.yml:
--------------------------------------------------------------------------------
1 | name: CandleFill
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - lys
6 | - stearinlys
7 | - død
8 | - dødsfall
9 | - death
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Car.yml:
--------------------------------------------------------------------------------
1 | name: Car
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - bil
6 | - avstand
7 | - distance
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CarFill.yml:
--------------------------------------------------------------------------------
1 | name: CarFill
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - bil
6 | - avstand
7 | - distance
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Card.yml:
--------------------------------------------------------------------------------
1 | name: Card
2 | category: Money
3 | sub_category: Payment
4 | keywords:
5 | - kort
6 | - penger
7 | - money
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CardFill.yml:
--------------------------------------------------------------------------------
1 | name: CardFill
2 | category: Money
3 | sub_category: Payment
4 | keywords:
5 | - kort
6 | - penger
7 | - money
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretDown.yml:
--------------------------------------------------------------------------------
1 | name: CaretDown
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - down
6 | - ned
7 | - expand
8 | - expanding
9 | - åpne
10 | - åpner
11 | - mer
12 | variant: Stroke
13 | updated_at: 14.05.2025
14 | created_at: 07.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretDownCircle.yml:
--------------------------------------------------------------------------------
1 | name: CaretDownCircle
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - down
6 | - ned
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretDownCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: CaretDownCircleFill
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - down
6 | - ned
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretDownFill.yml:
--------------------------------------------------------------------------------
1 | name: CaretDownFill
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - down
6 | - ned
7 | - expand
8 | - expanding
9 | - åpne
10 | - åpner
11 | - mer
12 | variant: Fill
13 | updated_at: 14.05.2025
14 | created_at: 10.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretLeft.yml:
--------------------------------------------------------------------------------
1 | name: CaretLeft
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - down
6 | - ned
7 | - expand
8 | - expanding
9 | - åpne
10 | - åpner
11 | - mer
12 | variant: Stroke
13 | updated_at: 14.05.2025
14 | created_at: 10.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretLeftCircle.yml:
--------------------------------------------------------------------------------
1 | name: CaretLeftCircle
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - left
6 | - venstre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretLeftCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: CaretLeftCircleFill
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - left
6 | - venstre
7 | - side
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretLeftFill.yml:
--------------------------------------------------------------------------------
1 | name: CaretLeftFill
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - down
6 | - ned
7 | - expand
8 | - expanding
9 | - åpne
10 | - åpner
11 | - mer
12 | variant: Fill
13 | updated_at: 14.05.2025
14 | created_at: 10.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretLeftRight.yml:
--------------------------------------------------------------------------------
1 | name: CaretLeftRight
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - widen
6 | - bredde
7 | - åpne
8 | - expand
9 | - utvide
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 10.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretLeftRightFill.yml:
--------------------------------------------------------------------------------
1 | name: CaretLeftRightFill
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - widen
6 | - bredde
7 | - åpne
8 | - expand
9 | - utvide
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 10.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretRight.yml:
--------------------------------------------------------------------------------
1 | name: CaretRight
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - down
6 | - ned
7 | - expand
8 | - expanding
9 | - åpne
10 | - åpner
11 | - mer
12 | variant: Stroke
13 | updated_at: 14.05.2025
14 | created_at: 10.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretRightCircle.yml:
--------------------------------------------------------------------------------
1 | name: CaretRightCircle
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretRightCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: CaretRightCircleFill
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretRightFill.yml:
--------------------------------------------------------------------------------
1 | name: CaretRightFill
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - down
6 | - ned
7 | - expand
8 | - expanding
9 | - åpne
10 | - åpner
11 | - mer
12 | variant: Fill
13 | updated_at: 14.05.2025
14 | created_at: 10.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretUp.yml:
--------------------------------------------------------------------------------
1 | name: CaretUp
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - up
6 | - opp
7 | - collapse
8 | - collapsing
9 | - kollaps
10 | - lukk
11 | - lukke
12 | variant: Stroke
13 | updated_at: 14.05.2025
14 | created_at: 07.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretUpCircle.yml:
--------------------------------------------------------------------------------
1 | name: CaretUpCircle
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - up
6 | - opp
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretUpCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: CaretUpCircleFill
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - up
6 | - opp
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CaretUpFill.yml:
--------------------------------------------------------------------------------
1 | name: CaretUpFill
2 | category: Arrows
3 | sub_category: Caret
4 | keywords:
5 | - up
6 | - opp
7 | - collapse
8 | - collapsing
9 | - kollaps
10 | - lukk
11 | - lukke
12 | variant: Fill
13 | updated_at: 14.05.2025
14 | created_at: 10.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChangingRoom.yml:
--------------------------------------------------------------------------------
1 | name: ChangingRoom
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - Stellerom
6 | - Skifterom
7 | - Rom
8 | - Room
9 | - Baby
10 | - Spedbarn
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChangingRoomFill.yml:
--------------------------------------------------------------------------------
1 | name: ChangingRoomFill
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - Stellerom
6 | - Skifterom
7 | - Rom
8 | - Room
9 | - Baby
10 | - Spedbarn
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronDown.yml:
--------------------------------------------------------------------------------
1 | name: ChevronDown
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - down
6 | - ned
7 | - expand
8 | - expanding
9 | - åpne
10 | - åpner
11 | - mer
12 | variant: Stroke
13 | updated_at: 14.05.2025
14 | created_at: 07.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronDownCircle.yml:
--------------------------------------------------------------------------------
1 | name: ChevronDownCircle
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - down
6 | - ned
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronDownCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: ChevronDownCircleFill
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - down
6 | - ned
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronDownDouble.yml:
--------------------------------------------------------------------------------
1 | name: ChevronDownDouble
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - ned
6 | - down
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronDownDoubleCircle.yml:
--------------------------------------------------------------------------------
1 | name: ChevronDownDoubleCircle
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - down
6 | - ned
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronDownDoubleCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: ChevronDownDoubleCircleFill
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - down
6 | - ned
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronDownUp.yml:
--------------------------------------------------------------------------------
1 | name: ChevronDownUp
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - Expand/collapse
6 | - show/hide
7 | - toggle
8 | - Utvide/skjule
9 | - vise/skjule
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 04.12.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronLeft.yml:
--------------------------------------------------------------------------------
1 | name: ChevronLeft
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - left
6 | - venstre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronLeftCircle.yml:
--------------------------------------------------------------------------------
1 | name: ChevronLeftCircle
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - left
6 | - venstre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronLeftCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: ChevronLeftCircleFill
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - left
6 | - venstre
7 | - side
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronLeftDouble.yml:
--------------------------------------------------------------------------------
1 | name: ChevronLeftDouble
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - left
6 | - venstre
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronLeftDoubleCircle.yml:
--------------------------------------------------------------------------------
1 | name: ChevronLeftDoubleCircle
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - left
6 | - venstre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronLeftDoubleCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: ChevronLeftDoubleCircleFill
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - left
6 | - venstre
7 | - side
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronLeftFirst.yml:
--------------------------------------------------------------------------------
1 | name: ChevronLeftFirst
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - left
6 | - venstre
7 | - side
8 | - first
9 | - først
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 15.06.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronLeftFirstCircle.yml:
--------------------------------------------------------------------------------
1 | name: ChevronLeftFirstCircle
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 11.10.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronLeftFirstCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: ChevronLeftFirstCircleFill
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 11.10.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronRight.yml:
--------------------------------------------------------------------------------
1 | name: ChevronRight
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronRightCircle.yml:
--------------------------------------------------------------------------------
1 | name: ChevronRightCircle
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronRightCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: ChevronRightCircleFill
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronRightDouble.yml:
--------------------------------------------------------------------------------
1 | name: ChevronRightDouble
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronRightDoubleCircle.yml:
--------------------------------------------------------------------------------
1 | name: ChevronRightDoubleCircle
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronRightDoubleCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: ChevronRightDoubleCircleFill
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronRightLast.yml:
--------------------------------------------------------------------------------
1 | name: ChevronRightLast
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 15.06.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronRightLastCircle.yml:
--------------------------------------------------------------------------------
1 | name: ChevronRightLastCircle
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 11.10.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronRightLastCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: ChevronRightLastCircleFill
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - right
6 | - høyre
7 | - side
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 11.10.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronUp.yml:
--------------------------------------------------------------------------------
1 | name: ChevronUp
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - up
6 | - opp
7 | - collapse
8 | - collapsing
9 | - kollaps
10 | - lukk
11 | - lukke
12 | variant: Stroke
13 | updated_at: 14.05.2025
14 | created_at: 07.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronUpCircle.yml:
--------------------------------------------------------------------------------
1 | name: ChevronUpCircle
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - up
6 | - opp
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronUpCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: ChevronUpCircleFill
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - up
6 | - opp
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronUpDouble.yml:
--------------------------------------------------------------------------------
1 | name: ChevronUpDouble
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - opp
6 | - up
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronUpDoubleCircle.yml:
--------------------------------------------------------------------------------
1 | name: ChevronUpDoubleCircle
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - up
6 | - opp
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronUpDoubleCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: ChevronUpDoubleCircleFill
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - up
6 | - opp
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChevronUpDown.yml:
--------------------------------------------------------------------------------
1 | name: ChevronUpDown
2 | category: Arrows
3 | sub_category: Chevron
4 | keywords:
5 | - Expand/collapse
6 | - show/hide
7 | - toggle
8 | - Utvide/skjule
9 | - vise/skjule
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChildEyes.yml:
--------------------------------------------------------------------------------
1 | name: ChildEyes
2 | category: People
3 | sub_category: Children
4 | keywords:
5 | - human
6 | - menneske
7 | - øyne
8 | - barn
9 | - baby
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChildEyesFill.yml:
--------------------------------------------------------------------------------
1 | name: ChildEyesFill
2 | category: People
3 | sub_category: Children
4 | keywords:
5 | - human
6 | - menneske
7 | - øyne
8 | - barn
9 | - baby
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChildHairEyes.yml:
--------------------------------------------------------------------------------
1 | name: ChildHairEyes
2 | category: People
3 | sub_category: Children
4 | keywords:
5 | - human
6 | - menneske
7 | - øyne
8 | - barn
9 | - baby
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 20.06.2024
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ChildHairEyesFill.yml:
--------------------------------------------------------------------------------
1 | name: ChildHairEyesFill
2 | category: People
3 | sub_category: Children
4 | keywords:
5 | - human
6 | - menneske
7 | - øyne
8 | - barn
9 | - baby
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 20.06.2024
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Cigarette.yml:
--------------------------------------------------------------------------------
1 | name: Cigarette
2 | category: Wellness
3 | sub_category: Illness and injury
4 | keywords:
5 | - røyke
6 | - røyk
7 | - røyking
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CigaretteFill.yml:
--------------------------------------------------------------------------------
1 | name: CigaretteFill
2 | category: Wellness
3 | sub_category: Illness and injury
4 | keywords:
5 | - røyke
6 | - røyk
7 | - røyking
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Circle.yml:
--------------------------------------------------------------------------------
1 | name: Circle
2 | category: Status
3 | sub_category: Shapes
4 | keywords:
5 | - Sirkel
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 15.05.2024
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CircleFill.yml:
--------------------------------------------------------------------------------
1 | name: CircleFill
2 | category: Status
3 | sub_category: Shapes
4 | keywords:
5 | - Sirkel
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 15.05.2024
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ClockDashed.yml:
--------------------------------------------------------------------------------
1 | name: ClockDashed
2 | category: Files and application
3 | sub_category: Time
4 | keywords:
5 | - Archive
6 | - arkiv
7 | - history
8 | - historikk
9 | - visited
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CloudDown.yml:
--------------------------------------------------------------------------------
1 | name: CloudDown
2 | category: Files and application
3 | sub_category: Data transfer
4 | keywords:
5 | - Sky
6 | - download
7 | - nedlasting
8 | - last ned
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 13.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CloudDownFill.yml:
--------------------------------------------------------------------------------
1 | name: CloudDownFill
2 | category: Files and application
3 | sub_category: Data transfer
4 | keywords:
5 | - Sky
6 | - download
7 | - nedlasting
8 | - last ned
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 13.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CloudUp.yml:
--------------------------------------------------------------------------------
1 | name: CloudUp
2 | category: Files and application
3 | sub_category: Data transfer
4 | keywords:
5 | - sky
6 | - upload
7 | - opplasting
8 | - last opp
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 13.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CloudUpFill.yml:
--------------------------------------------------------------------------------
1 | name: CloudUpFill
2 | category: Files and application
3 | sub_category: Data transfer
4 | keywords:
5 | - sky
6 | - upload
7 | - opplasting
8 | - last opp
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 13.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Coffee.yml:
--------------------------------------------------------------------------------
1 | name: Coffee
2 | category: Wellness
3 | sub_category: Food and drinks
4 | keywords:
5 | - kaffe
6 | - pause
7 | - kafe
8 | - cafe
9 | - break
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CoffeeFill.yml:
--------------------------------------------------------------------------------
1 | name: CoffeeFill
2 | category: Wellness
3 | sub_category: Food and drinks
4 | keywords:
5 | - kaffe
6 | - pause
7 | - kafe
8 | - cafe
9 | - break
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Cog.yml:
--------------------------------------------------------------------------------
1 | name: Cog
2 | category: Interface
3 | sub_category: Menu
4 | keywords:
5 | - tannhjul
6 | - menu
7 | - meny
8 | - settings
9 | - innstillinger
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CogFill.yml:
--------------------------------------------------------------------------------
1 | name: CogFill
2 | category: Interface
3 | sub_category: Menu
4 | keywords:
5 | - tannhjul
6 | - menu
7 | - meny
8 | - settings
9 | - innstillinger
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Cpu.yml:
--------------------------------------------------------------------------------
1 | name: Cpu
2 | category: Interface
3 | sub_category: Devices
4 | keywords:
5 | - Prosessor
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 19.02.2025
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/CpuFill.yml:
--------------------------------------------------------------------------------
1 | name: CpuFill
2 | category: Interface
3 | sub_category: Devices
4 | keywords:
5 | - Prosessor
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 19.02.2025
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Database.yml:
--------------------------------------------------------------------------------
1 | name: Database
2 | category: Development
3 | sub_category: Distribution
4 | keywords:
5 | - data
6 | - samling
7 | - excel
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/DatabaseFill.yml:
--------------------------------------------------------------------------------
1 | name: DatabaseFill
2 | category: Development
3 | sub_category: Distribution
4 | keywords:
5 | - data
6 | - samling
7 | - excel
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Diamond.yml:
--------------------------------------------------------------------------------
1 | name: Diamond
2 | category: Status
3 | sub_category: Shapes
4 | keywords:
5 | - diamant
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 15.05.2024
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/DiamondFill.yml:
--------------------------------------------------------------------------------
1 | name: DiamondFill
2 | category: Status
3 | sub_category: Shapes
4 | keywords:
5 | - diamant
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 15.05.2024
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Dishwasher.yml:
--------------------------------------------------------------------------------
1 | name: Dishwasher
2 | category: Home
3 | sub_category: Furniture
4 | keywords:
5 | - oppvaskmaskin
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/DishwasherFill.yml:
--------------------------------------------------------------------------------
1 | name: DishwasherFill
2 | category: Home
3 | sub_category: Furniture
4 | keywords:
5 | - oppvaskmaskin
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Divide.yml:
--------------------------------------------------------------------------------
1 | name: Divide
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - dele
6 | - division
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Dog.yml:
--------------------------------------------------------------------------------
1 | name: Dog
2 | category: Nature and animals
3 | sub_category: Animals
4 | keywords:
5 | - hund
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/DogFill.yml:
--------------------------------------------------------------------------------
1 | name: DogFill
2 | category: Nature and animals
3 | sub_category: Animals
4 | keywords:
5 | - hund
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Donuts.yml:
--------------------------------------------------------------------------------
1 | name: Donuts
2 | category: Wellness
3 | sub_category: Food and drinks
4 | keywords:
5 | - donut
6 | - doughnut
7 | - smultring
8 | - pause
9 | - break
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/DonutsFill.yml:
--------------------------------------------------------------------------------
1 | name: DonutsFill
2 | category: Wellness
3 | sub_category: Food and drinks
4 | keywords:
5 | - donut
6 | - doughnut
7 | - smultring
8 | - pause
9 | - break
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Download.yml:
--------------------------------------------------------------------------------
1 | name: Download
2 | category: Files and application
3 | sub_category: Data transfer
4 | keywords:
5 | - nedlasting
6 | - nedlastbart
7 | - downloading
8 | - last ned
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Ear.yml:
--------------------------------------------------------------------------------
1 | name: Ear
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - hearing
6 | - hørsel
7 | - øre
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/EarFill.yml:
--------------------------------------------------------------------------------
1 | name: EarFill
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - hearing
6 | - hørsel
7 | - øre
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/EarSlash.yml:
--------------------------------------------------------------------------------
1 | name: EarSlash
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - døv
6 | - deaf
7 | - hearing
8 | - hørsel
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/EarSlashFill.yml:
--------------------------------------------------------------------------------
1 | name: EarSlashFill
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - døv
6 | - deaf
7 | - hearing
8 | - hørsel
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/EarSoundwaves.yml:
--------------------------------------------------------------------------------
1 | name: EarSoundwaves
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - hearing
6 | - hørsel
7 | - øre
8 | - lydbølger
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/EarSoundwavesFill.yml:
--------------------------------------------------------------------------------
1 | name: EarSoundwavesFill
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - hearing
6 | - hørsel
7 | - øre
8 | - lydbølger
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Elevator.yml:
--------------------------------------------------------------------------------
1 | name: Elevator
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - heis
6 | - floor
7 | - etasje
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ElevatorFill.yml:
--------------------------------------------------------------------------------
1 | name: ElevatorFill
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - heis
6 | - floor
7 | - etasje
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Equals.yml:
--------------------------------------------------------------------------------
1 | name: Equals
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - erlik
6 | - sann
7 | - resultat
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Escalator.yml:
--------------------------------------------------------------------------------
1 | name: Escalator
2 | category: Accessibility
3 | sub_category: Mobility
4 | keywords:
5 | - trapp
6 | - rulletrapp
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Ethernet.yml:
--------------------------------------------------------------------------------
1 | name: Ethernet
2 | category: Development
3 | sub_category: Networking
4 | keywords:
5 | - connectivity
6 | - connected
7 | - nettverk
8 | - koblet til
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Expand.yml:
--------------------------------------------------------------------------------
1 | name: Expand
2 | category: Arrows
3 | sub_category: Arrow
4 | keywords:
5 | - arrows
6 | - piler
7 | - fullscreen
8 | - fullskjerm
9 | - open
10 | - åpne
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ExpandVertical.yml:
--------------------------------------------------------------------------------
1 | name: ExpandVertical
2 | category: Arrows
3 | sub_category: Arrow
4 | keywords:
5 | - arrows
6 | - piler
7 | - fullscreen
8 | - fullskjerm
9 | - open
10 | - åpne
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 29.01.2025
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ExternalLink.yml:
--------------------------------------------------------------------------------
1 | name: ExternalLink
2 | category: Interface
3 | sub_category: Navigation
4 | keywords:
5 | - lenke
6 | - kobling
7 | - videresending
8 | - ekstern side
9 | - eksternt
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ExternalLinkFill.yml:
--------------------------------------------------------------------------------
1 | name: ExternalLinkFill
2 | category: Interface
3 | sub_category: Navigation
4 | keywords:
5 | - lenke
6 | - kobling
7 | - videresending
8 | - ekstern side
9 | - eksternt
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Eye.yml:
--------------------------------------------------------------------------------
1 | name: Eye
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - sight
6 | - privacy
7 | - look
8 | - øye
9 | - syn
10 | - public
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/EyeClosed.yml:
--------------------------------------------------------------------------------
1 | name: EyeClosed
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - skjult
6 | - øye
7 | - lukket
8 | - hidden
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/EyeFill.yml:
--------------------------------------------------------------------------------
1 | name: EyeFill
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - sight
6 | - privacy
7 | - look
8 | - øye
9 | - syn
10 | - public
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/EyeWithPupil.yml:
--------------------------------------------------------------------------------
1 | name: EyeWithPupil
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - sight
6 | - privacy
7 | - look
8 | - øye
9 | - syn
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/EyeWithPupilFill.yml:
--------------------------------------------------------------------------------
1 | name: EyeWithPupilFill
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - sight
6 | - privacy
7 | - look
8 | - øye
9 | - syn
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FigureChild.yml:
--------------------------------------------------------------------------------
1 | name: FigureChild
2 | category: People
3 | sub_category: Figure
4 | keywords:
5 | - girl
6 | - boy
7 | - jente
8 | - gutt
9 | - barn
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 16.01.2024
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FigureChildFill.yml:
--------------------------------------------------------------------------------
1 | name: FigureChildFill
2 | category: People
3 | sub_category: Figure
4 | keywords:
5 | - girl
6 | - boy
7 | - jente
8 | - gutt
9 | - barn
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 16.01.2024
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FigureCombination.yml:
--------------------------------------------------------------------------------
1 | name: FigureCombination
2 | category: People
3 | sub_category: Figure
4 | keywords:
5 | - toilet
6 | - toalett
7 | - trans
8 | - intetkjønn
9 | - hen
10 | - person
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FigureInward.yml:
--------------------------------------------------------------------------------
1 | name: FigureInward
2 | category: People
3 | sub_category: Figure
4 | keywords:
5 | - toilet
6 | - toalett
7 | - mann
8 | - male
9 | - herre
10 | - han
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FigureInwardFill.yml:
--------------------------------------------------------------------------------
1 | name: FigureInwardFill
2 | category: People
3 | sub_category: Figure
4 | keywords:
5 | - toilet
6 | - toalett
7 | - mann
8 | - male
9 | - herre
10 | - han
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FigureOutward.yml:
--------------------------------------------------------------------------------
1 | name: FigureOutward
2 | category: People
3 | sub_category: Figure
4 | keywords:
5 | - toilet
6 | - toalett
7 | - dame
8 | - female
9 | - hun
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FigureOutwardFill.yml:
--------------------------------------------------------------------------------
1 | name: FigureOutwardFill
2 | category: People
3 | sub_category: Figure
4 | keywords:
5 | - toilet
6 | - toalett
7 | - dame
8 | - female
9 | - hun
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/File.yml:
--------------------------------------------------------------------------------
1 | name: File
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileCsv.yml:
--------------------------------------------------------------------------------
1 | name: FileCsv
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - csv
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileCsvFill.yml:
--------------------------------------------------------------------------------
1 | name: FileCsvFill
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - csv
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileExport.yml:
--------------------------------------------------------------------------------
1 | name: FileExport
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - export
10 | - eksporter
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileFill.yml:
--------------------------------------------------------------------------------
1 | name: FileFill
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileImport.yml:
--------------------------------------------------------------------------------
1 | name: FileImport
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - import
10 | - importer
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileJpeg.yml:
--------------------------------------------------------------------------------
1 | name: FileJpeg
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - jpg
10 | - jpeg
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 06.11.2024
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileJpegFill.yml:
--------------------------------------------------------------------------------
1 | name: FileJpegFill
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - jpg
10 | - jpeg
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 06.11.2024
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileJson.yml:
--------------------------------------------------------------------------------
1 | name: FileJson
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - json
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileJsonFill.yml:
--------------------------------------------------------------------------------
1 | name: FileJsonFill
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - json
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileLoading.yml:
--------------------------------------------------------------------------------
1 | name: FileLoading
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - laster
10 | - loading
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FilePdf.yml:
--------------------------------------------------------------------------------
1 | name: FilePdf
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - pdf
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FilePdfFill.yml:
--------------------------------------------------------------------------------
1 | name: FilePdfFill
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - pdf
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FilePng.yml:
--------------------------------------------------------------------------------
1 | name: FilePng
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - png
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 06.11.2024
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FilePngFill.yml:
--------------------------------------------------------------------------------
1 | name: FilePngFill
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - png
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 06.11.2024
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FileReset.yml:
--------------------------------------------------------------------------------
1 | name: FileReset
2 | category: Files and application
3 | sub_category: Files
4 | keywords:
5 | - document
6 | - dokument
7 | - fil
8 | - file
9 | - nullstill
10 | - gjøre om
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Filter.yml:
--------------------------------------------------------------------------------
1 | name: Filter
2 | category: Interface
3 | sub_category: Filtering and sorting
4 | keywords:
5 | - filtrering
6 | - søkeresultater
7 | - data
8 | - tabell
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FlagCross.yml:
--------------------------------------------------------------------------------
1 | name: FlagCross
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - Norway
6 | - norgwegian
7 | - norsk
8 | - norge
9 | - flagg
10 | - språk
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FlagCrossFill.yml:
--------------------------------------------------------------------------------
1 | name: FlagCrossFill
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - Norway
6 | - norgwegian
7 | - norsk
8 | - norge
9 | - flagg
10 | - språk
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Fork.yml:
--------------------------------------------------------------------------------
1 | name: Fork
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - gaffel
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ForkFill.yml:
--------------------------------------------------------------------------------
1 | name: ForkFill
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - gaffel
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Forward.yml:
--------------------------------------------------------------------------------
1 | name: Forward
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Fremover
6 | - spole fremover
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ForwardFill.yml:
--------------------------------------------------------------------------------
1 | name: ForwardFill
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Fremover
6 | - spole fremover
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Freezer.yml:
--------------------------------------------------------------------------------
1 | name: Freezer
2 | category: Home
3 | sub_category: Furniture
4 | keywords:
5 | - fryser
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FreezerFill.yml:
--------------------------------------------------------------------------------
1 | name: FreezerFill
2 | category: Home
3 | sub_category: Furniture
4 | keywords:
5 | - fryser
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Funnel.yml:
--------------------------------------------------------------------------------
1 | name: Funnel
2 | category: Interface
3 | sub_category: Filtering and sorting
4 | keywords:
5 | - filtrering
6 | - søkeresultater
7 | - tabell
8 | - trakt
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/FunnelFill.yml:
--------------------------------------------------------------------------------
1 | name: FunnelFill
2 | category: Interface
3 | sub_category: Filtering and sorting
4 | keywords:
5 | - filtrering
6 | - søkeresultater
7 | - tabell
8 | - trakt
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Glasses.yml:
--------------------------------------------------------------------------------
1 | name: Glasses
2 | category: Accessibility
3 | sub_category: Sight
4 | keywords:
5 | - eyesight
6 | - syn
7 | - hjelpemiddel
8 | - sight
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/GlassesFill.yml:
--------------------------------------------------------------------------------
1 | name: GlassesFill
2 | category: Accessibility
3 | sub_category: Sight
4 | keywords:
5 | - eyesight
6 | - syn
7 | - hjelpemiddel
8 | - sight
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HandKnot.yml:
--------------------------------------------------------------------------------
1 | name: HandKnot
2 | category: People
3 | sub_category: Hands
4 | keywords:
5 | - hånd
6 | - påminnelse
7 | - note
8 | - notat
9 | - reminder
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 21.04.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HandKnotFilled.yml:
--------------------------------------------------------------------------------
1 | name: HandKnotFilled
2 | category: People
3 | sub_category: Hands
4 | keywords:
5 | - hånd
6 | - påminnelse
7 | - note
8 | - notat
9 | - reminder
10 | variant: Filled
11 | updated_at: 14.05.2025
12 | created_at: 21.04.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HddDown.yml:
--------------------------------------------------------------------------------
1 | name: HddDown
2 | category: Files and application
3 | sub_category: Data transfer
4 | keywords:
5 | - lagring
6 | - hardisk
7 | - download
8 | - nedlasting
9 | - last ned
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 13.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HddDownFill.yml:
--------------------------------------------------------------------------------
1 | name: HddDownFill
2 | category: Files and application
3 | sub_category: Data transfer
4 | keywords:
5 | - lagring
6 | - hardisk
7 | - download
8 | - nedlasting
9 | - last ned
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 13.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HddUp.yml:
--------------------------------------------------------------------------------
1 | name: HddUp
2 | category: Files and application
3 | sub_category: Data transfer
4 | keywords:
5 | - lagring
6 | - hardisk
7 | - upload
8 | - opplasting
9 | - last opp
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 13.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HddUpFill.yml:
--------------------------------------------------------------------------------
1 | name: HddUpFill
2 | category: Files and application
3 | sub_category: Data transfer
4 | keywords:
5 | - lagring
6 | - hardisk
7 | - upload
8 | - opplasting
9 | - last opp
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 13.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Head.yml:
--------------------------------------------------------------------------------
1 | name: Head
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - hode
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HeadCloud.yml:
--------------------------------------------------------------------------------
1 | name: HeadCloud
2 | category: Accessibility
3 | sub_category: Situation
4 | keywords:
5 | - cognition
6 | - kognitiv nedsettelse
7 | - distracted
8 | - distrahert
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HeadCloudFill.yml:
--------------------------------------------------------------------------------
1 | name: HeadCloudFill
2 | category: Accessibility
3 | sub_category: Situation
4 | keywords:
5 | - cognition
6 | - kognitiv nedsettelse
7 | - distracted
8 | - distrahert
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HeadFill.yml:
--------------------------------------------------------------------------------
1 | name: HeadFill
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - hode
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HeadHeart.yml:
--------------------------------------------------------------------------------
1 | name: HeadHeart
2 | category: Wellness
3 | sub_category: Illness and injury
4 | keywords:
5 | - Mental
6 | - psykisk
7 | - helse
8 | - health
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HeadHeartFill.yml:
--------------------------------------------------------------------------------
1 | name: HeadHeartFill
2 | category: Wellness
3 | sub_category: Illness and injury
4 | keywords:
5 | - Mental
6 | - psykisk
7 | - helse
8 | - health
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HearingLoop.yml:
--------------------------------------------------------------------------------
1 | name: HearingLoop
2 | category: Accessibility
3 | sub_category: Hearing
4 | keywords:
5 | - hearing
6 | - hearing aid
7 | - hørsel
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HearingLoopFill.yml:
--------------------------------------------------------------------------------
1 | name: HearingLoopFill
2 | category: Accessibility
3 | sub_category: Hearing
4 | keywords:
5 | - hearing
6 | - hearing aid
7 | - hørsel
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HearingLoopRadio.yml:
--------------------------------------------------------------------------------
1 | name: HearingLoopRadio
2 | category: Accessibility
3 | sub_category: Hearing
4 | keywords:
5 | - hearing
6 | - hearing aid
7 | - hørsel
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HearingLoopRadioFill.yml:
--------------------------------------------------------------------------------
1 | name: HearingLoopRadioFill
2 | category: Accessibility
3 | sub_category: Hearing
4 | keywords:
5 | - hearing
6 | - hearing aid
7 | - hørsel
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/House.yml:
--------------------------------------------------------------------------------
1 | name: House
2 | category: Home
3 | sub_category: Buildings
4 | keywords:
5 | - hus
6 | - hjem
7 | - back home
8 | - home
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HouseFill.yml:
--------------------------------------------------------------------------------
1 | name: HouseFill
2 | category: Home
3 | sub_category: Buildings
4 | keywords:
5 | - hus
6 | - hjem
7 | - back home
8 | - home
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HouseHeart.yml:
--------------------------------------------------------------------------------
1 | name: HouseHeart
2 | category: Home
3 | sub_category: Buildings
4 | keywords:
5 | - hjerterom
6 | - hus
7 | - hjerte
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/HouseHeartFill.yml:
--------------------------------------------------------------------------------
1 | name: HouseHeartFill
2 | category: Home
3 | sub_category: Buildings
4 | keywords:
5 | - hjerterom
6 | - hus
7 | - hjerte
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Inbox.yml:
--------------------------------------------------------------------------------
1 | name: Inbox
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - innboks
6 | - email
7 | - e-post
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 13.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/InboxDown.yml:
--------------------------------------------------------------------------------
1 | name: InboxDown
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - innboks
6 | - email
7 | - e-post
8 | - motta
9 | - receive
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 13.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/InboxDownFill.yml:
--------------------------------------------------------------------------------
1 | name: InboxDownFill
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - innboks
6 | - email
7 | - e-post
8 | - motta
9 | - receive
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 13.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/InboxFill.yml:
--------------------------------------------------------------------------------
1 | name: InboxFill
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - innboks
6 | - email
7 | - e-post
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 13.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/InboxUp.yml:
--------------------------------------------------------------------------------
1 | name: InboxUp
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - innboks
6 | - email
7 | - e-post
8 | - send
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 13.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/InboxUpFill.yml:
--------------------------------------------------------------------------------
1 | name: InboxUpFill
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - innboks
6 | - email
7 | - e-post
8 | - send
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 13.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Knife.yml:
--------------------------------------------------------------------------------
1 | name: Knife
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - kniv
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/KnifeFill.yml:
--------------------------------------------------------------------------------
1 | name: KnifeFill
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - kniv
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Kroner.yml:
--------------------------------------------------------------------------------
1 | name: Kroner
2 | category: Money
3 | sub_category: Currency
4 | keywords:
5 | - norwegian krone
6 | - money
7 | - penger
8 | - norske kroner
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Laptop.yml:
--------------------------------------------------------------------------------
1 | name: Laptop
2 | category: Interface
3 | sub_category: Devices
4 | keywords:
5 | - laptop
6 | - pc
7 | - work
8 | - jobb
9 | - brekkpunkt lg
10 | - breakpoint lg
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/LaptopFill.yml:
--------------------------------------------------------------------------------
1 | name: LaptopFill
2 | category: Interface
3 | sub_category: Devices
4 | keywords:
5 | - laptop
6 | - pc
7 | - work
8 | - jobb
9 | - brekkpunkt lg
10 | - breakpoint lg
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/LineHeight.yml:
--------------------------------------------------------------------------------
1 | name: LineHeight
2 | category: Interface
3 | sub_category: Design
4 | keywords:
5 | - linjehøyde
6 | - linjeavstand
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 14.02.2025
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Link.yml:
--------------------------------------------------------------------------------
1 | name: Link
2 | category: Interface
3 | sub_category: Navigation
4 | keywords:
5 | - lenke
6 | - chain
7 | - kobling
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/LinkBroken.yml:
--------------------------------------------------------------------------------
1 | name: LinkBroken
2 | category: Interface
3 | sub_category: Navigation
4 | keywords:
5 | - lenke
6 | - chain
7 | - kobling
8 | - brutt
9 | - ødelagt
10 | - broken
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/LocationPin.yml:
--------------------------------------------------------------------------------
1 | name: LocationPin
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - kart
6 | - pin
7 | - sted
8 | - map
9 | - location
10 | - lokasjon
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/LocationPinFill.yml:
--------------------------------------------------------------------------------
1 | name: LocationPinFill
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - kart
6 | - pin
7 | - sted
8 | - map
9 | - location
10 | - lokasjon
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MagnifyingGlass.yml:
--------------------------------------------------------------------------------
1 | name: MagnifyingGlass
2 | category: Interface
3 | sub_category: Filtering and sorting
4 | keywords:
5 | - search
6 | - søk
7 | - forstørrelsesglass
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MagnifyingGlassFill.yml:
--------------------------------------------------------------------------------
1 | name: MagnifyingGlassFill
2 | category: Interface
3 | sub_category: Filtering and sorting
4 | keywords:
5 | - search
6 | - søk
7 | - forstørrelsesglass
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MeasuringTape.yml:
--------------------------------------------------------------------------------
1 | name: MeasuringTape
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - måle
6 | - målebånd
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MeasuringTapeFill.yml:
--------------------------------------------------------------------------------
1 | name: MeasuringTapeFill
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - måle
6 | - målebånd
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MenuGrid.yml:
--------------------------------------------------------------------------------
1 | name: MenuGrid
2 | category: Interface
3 | sub_category: Menu
4 | keywords:
5 | - Menu
6 | - meny
7 | - grid
8 | - rutenett
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MenuHamburger.yml:
--------------------------------------------------------------------------------
1 | name: MenuHamburger
2 | category: Interface
3 | sub_category: Menu
4 | keywords:
5 | - Menu
6 | - meny
7 | - hamburger
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Migration.yml:
--------------------------------------------------------------------------------
1 | name: Migration
2 | category: Development
3 | sub_category: Development
4 | keywords:
5 | - migrering
6 | - ny versjon
7 | - erstatte
8 | - replace
9 | - new version
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Minus.yml:
--------------------------------------------------------------------------------
1 | name: Minus
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - fjern
6 | - remove
7 | - delete
8 | - slett
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MinusCircle.yml:
--------------------------------------------------------------------------------
1 | name: MinusCircle
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - minus sirkel
6 | - remove
7 | - ta bort
8 | - mindre
9 | - minus
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MinusCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: MinusCircleFill
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - minus sirkel
6 | - remove
7 | - ta bort
8 | - mindre
9 | - minus
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MobileTriangle.yml:
--------------------------------------------------------------------------------
1 | name: MobileTriangle
2 | category: Status
3 | sub_category: Device status
4 | keywords:
5 | - device
6 | - enhet
7 | - advarsel
8 | - warning
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MobileTriangleFill.yml:
--------------------------------------------------------------------------------
1 | name: MobileTriangleFill
2 | category: Status
3 | sub_category: Device status
4 | keywords:
5 | - device
6 | - enhet
7 | - advarsel
8 | - warning
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Monitor.yml:
--------------------------------------------------------------------------------
1 | name: Monitor
2 | category: Interface
3 | sub_category: Devices
4 | keywords:
5 | - desktop
6 | - skrivebord
7 | - system
8 | - brekkpunkt xl
9 | - breakpoint xl
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MonitorFill.yml:
--------------------------------------------------------------------------------
1 | name: MonitorFill
2 | category: Interface
3 | sub_category: Devices
4 | keywords:
5 | - desktop
6 | - skrivebord
7 | - system
8 | - brekkpunkt xl
9 | - breakpoint xl
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Moon.yml:
--------------------------------------------------------------------------------
1 | name: Moon
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - Måne
6 | - night
7 | - natt
8 | - dark
9 | - mørk
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 09.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MoonFill.yml:
--------------------------------------------------------------------------------
1 | name: MoonFill
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - Måne
6 | - night
7 | - natt
8 | - dark
9 | - mørk
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 09.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Motorcycle.yml:
--------------------------------------------------------------------------------
1 | name: Motorcycle
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - motorsykkel
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MotorcycleFill.yml:
--------------------------------------------------------------------------------
1 | name: MotorcycleFill
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - motorsykkel
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Mountain.yml:
--------------------------------------------------------------------------------
1 | name: Mountain
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - fjell
6 | - høyt
7 | - milepæl
8 | - milestone
9 | - high
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MountainFill.yml:
--------------------------------------------------------------------------------
1 | name: MountainFill
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - fjell
6 | - høyt
7 | - milepæl
8 | - milestone
9 | - high
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Mug.yml:
--------------------------------------------------------------------------------
1 | name: Mug
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - Coffee mug
6 | - tea mug
7 | - kaffe
8 | - te
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/MugFill.yml:
--------------------------------------------------------------------------------
1 | name: MugFill
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - Coffee mug
6 | - tea mug
7 | - kaffe
8 | - te
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Multiply.yml:
--------------------------------------------------------------------------------
1 | name: Multiply
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - gange
6 | - multiplisere
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Newspaper.yml:
--------------------------------------------------------------------------------
1 | name: Newspaper
2 | category: Media
3 | sub_category: Media
4 | keywords:
5 | - news
6 | - nyheter
7 | - tidsskrift
8 | - presse
9 | - avis
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/NewspaperFill.yml:
--------------------------------------------------------------------------------
1 | name: NewspaperFill
2 | category: Media
3 | sub_category: Media
4 | keywords:
5 | - news
6 | - nyheter
7 | - tidsskrift
8 | - presse
9 | - avis
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/NoSmoking.yml:
--------------------------------------------------------------------------------
1 | name: NoSmoking
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - røykefri sone
6 | - no smoking
7 | - ingen røyking
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/NoSmokingFill.yml:
--------------------------------------------------------------------------------
1 | name: NoSmokingFill
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - røykefri sone
6 | - no smoking
7 | - ingen røyking
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Nok.yml:
--------------------------------------------------------------------------------
1 | name: Nok
2 | category: Money
3 | sub_category: Currency
4 | keywords:
5 | - norwegian krone
6 | - money
7 | - penger
8 | - norske kroner
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/NotePencil.yml:
--------------------------------------------------------------------------------
1 | name: NotePencil
2 | category: Interface
3 | sub_category: Editing
4 | keywords:
5 | - note
6 | - notat
7 | - edit
8 | - editing
9 | - manage file
10 | - redigere
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 15.05.2024
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/NotePencilFill.yml:
--------------------------------------------------------------------------------
1 | name: NotePencilFill
2 | category: Interface
3 | sub_category: Editing
4 | keywords:
5 | - note
6 | - notat
7 | - edit
8 | - editing
9 | - manage file
10 | - redigere
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 15.05.2024
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/NumberList.yml:
--------------------------------------------------------------------------------
1 | name: NumberList
2 | category: Statistics and math
3 | sub_category: Tabular
4 | keywords:
5 | - liste
6 | - rekkefølge
7 | - order
8 | - nummerliste
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 28.04.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Over18.yml:
--------------------------------------------------------------------------------
1 | name: Over18
2 | category: Law and security
3 | sub_category: Access Control
4 | keywords:
5 | - adult
6 | - over 18
7 | - ID
8 | - voksen
9 | - over 18
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Over18Fill.yml:
--------------------------------------------------------------------------------
1 | name: Over18Fill
2 | category: Law and security
3 | sub_category: Access Control
4 | keywords:
5 | - adult
6 | - over 18
7 | - ID
8 | - voksen
9 | - over 18
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Palette.yml:
--------------------------------------------------------------------------------
1 | name: Palette
2 | category: Interface
3 | sub_category: Design
4 | keywords:
5 | - farger
6 | - palett
7 | - colors
8 | - colours
9 | - design
10 | - designer
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PaletteFill.yml:
--------------------------------------------------------------------------------
1 | name: PaletteFill
2 | category: Interface
3 | sub_category: Design
4 | keywords:
5 | - farger
6 | - palett
7 | - colors
8 | - colours
9 | - design
10 | - designer
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Paperplane.yml:
--------------------------------------------------------------------------------
1 | name: Paperplane
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - send
6 | - sending
7 | - sent
8 | - sendt
9 | - papirfly
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PaperplaneFill.yml:
--------------------------------------------------------------------------------
1 | name: PaperplaneFill
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - send
6 | - sending
7 | - sent
8 | - sendt
9 | - papirfly
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Parking.yml:
--------------------------------------------------------------------------------
1 | name: Parking
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - parkering
6 | - car park
7 | - bilparkering
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ParkingFill.yml:
--------------------------------------------------------------------------------
1 | name: ParkingFill
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - parkering
6 | - car park
7 | - bilparkering
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Pause.yml:
--------------------------------------------------------------------------------
1 | name: Pause
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Pause
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PauseFill.yml:
--------------------------------------------------------------------------------
1 | name: PauseFill
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - PauseFill
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Pencil.yml:
--------------------------------------------------------------------------------
1 | name: Pencil
2 | category: Interface
3 | sub_category: Editing
4 | keywords:
5 | - edit
6 | - rediger
7 | - pen
8 | - penn
9 | - blyant
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PencilFill.yml:
--------------------------------------------------------------------------------
1 | name: PencilFill
2 | category: Interface
3 | sub_category: Editing
4 | keywords:
5 | - edit
6 | - rediger
7 | - pen
8 | - penn
9 | - blyant
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Pentagon.yml:
--------------------------------------------------------------------------------
1 | name: Pentagon
2 | category: Status
3 | sub_category: Shapes
4 | keywords:
5 | - femkant
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 15.05.2024
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PentagonFill.yml:
--------------------------------------------------------------------------------
1 | name: PentagonFill
2 | category: Status
3 | sub_category: Shapes
4 | keywords:
5 | - femkant
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 15.05.2024
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Percent.yml:
--------------------------------------------------------------------------------
1 | name: Percent
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - "%"
6 | - prosent
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Person.yml:
--------------------------------------------------------------------------------
1 | name: Person
2 | category: People
3 | sub_category: Person
4 | keywords:
5 | - person
6 | - folk
7 | - bruker
8 | - user
9 | - profile
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PersonChat.yml:
--------------------------------------------------------------------------------
1 | name: PersonChat
2 | category: Interface
3 | sub_category: Communication
4 | keywords:
5 | - chatting
6 | - NKS
7 | - veileder
8 | - veiledning
9 | - help
10 | - hjelp
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PersonFill.yml:
--------------------------------------------------------------------------------
1 | name: PersonFill
2 | category: People
3 | sub_category: Person
4 | keywords:
5 | - person
6 | - folk
7 | - bruker
8 | - user
9 | - profile
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PersonRectangle.yml:
--------------------------------------------------------------------------------
1 | name: PersonRectangle
2 | category: People
3 | sub_category: Profile
4 | keywords:
5 | - person
6 | - folk
7 | - bruker
8 | - user
9 | - profile
10 | - firkant
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PersonTallShort.yml:
--------------------------------------------------------------------------------
1 | name: PersonTallShort
2 | category: People
3 | sub_category: Group
4 | keywords:
5 | - parent
6 | - forelder
7 | - familie
8 | - family
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PersonTallShortFill.yml:
--------------------------------------------------------------------------------
1 | name: PersonTallShortFill
2 | category: People
3 | sub_category: Group
4 | keywords:
5 | - parent
6 | - forelder
7 | - familie
8 | - family
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Plate.yml:
--------------------------------------------------------------------------------
1 | name: Plate
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - talerken
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PlateFill.yml:
--------------------------------------------------------------------------------
1 | name: PlateFill
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - talerken
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Play.yml:
--------------------------------------------------------------------------------
1 | name: Play
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Start
6 | - Avspilling
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PlayFill.yml:
--------------------------------------------------------------------------------
1 | name: PlayFill
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Start
6 | - Avspilling
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Plus.yml:
--------------------------------------------------------------------------------
1 | name: Plus
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - add
6 | - legg til
7 | - more
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PlusCircle.yml:
--------------------------------------------------------------------------------
1 | name: PlusCircle
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - add
6 | - legg til
7 | - more
8 | - pluss
9 | - pluss sirkel
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PlusCircleFill.yml:
--------------------------------------------------------------------------------
1 | name: PlusCircleFill
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - add
6 | - legg til
7 | - more
8 | - pluss
9 | - pluss sirkel
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PlusMinusSlash.yml:
--------------------------------------------------------------------------------
1 | name: PlusMinusSlash
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - matematikk
6 | - math
7 | - plus minus
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Portal.yml:
--------------------------------------------------------------------------------
1 | name: Portal
2 | category: Development
3 | sub_category: Networking
4 | keywords:
5 | - gateway
6 | - app
7 | - løsning
8 | - applikasjon
9 | - application
10 | - through
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Presentation.yml:
--------------------------------------------------------------------------------
1 | name: Presentation
2 | category: Media
3 | sub_category: Media
4 | keywords:
5 | - presentasjon
6 | - presentere
7 | - present
8 | - whiteboard
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PresentationFill.yml:
--------------------------------------------------------------------------------
1 | name: PresentationFill
2 | category: Media
3 | sub_category: Media
4 | keywords:
5 | - presentasjon
6 | - presentere
7 | - present
8 | - whiteboard
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PrinterLarge.yml:
--------------------------------------------------------------------------------
1 | name: PrinterLarge
2 | category: Interface
3 | sub_category: Devices
4 | keywords:
5 | - print
6 | - skrive ut
7 | - skriver
8 | - printing room
9 | - skriverom
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/PrinterLargeFill.yml:
--------------------------------------------------------------------------------
1 | name: PrinterLargeFill
2 | category: Interface
3 | sub_category: Devices
4 | keywords:
5 | - print
6 | - skrive ut
7 | - skriver
8 | - printing room
9 | - skriverom
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/QrCode.yml:
--------------------------------------------------------------------------------
1 | name: QrCode
2 | category: Development
3 | sub_category: Development
4 | keywords:
5 | - QR kode
6 | - scanning
7 | - URL
8 | - link
9 | - lenke
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/QrCodeFill.yml:
--------------------------------------------------------------------------------
1 | name: QrCodeFill
2 | category: Development
3 | sub_category: Development
4 | keywords:
5 | - QR kode
6 | - scanning
7 | - URL
8 | - link
9 | - lenke
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/QuietZone.yml:
--------------------------------------------------------------------------------
1 | name: QuietZone
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - stillesone
6 | - rolig
7 | - quiet focus
8 | - fokus
9 | - stille
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/QuietZoneFill.yml:
--------------------------------------------------------------------------------
1 | name: QuietZoneFill
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - stillesone
6 | - rolig
7 | - quiet focus
8 | - fokus
9 | - stille
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Raindrop.yml:
--------------------------------------------------------------------------------
1 | name: Raindrop
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - regndråpe
6 | - regn
7 | - dråpe
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RaindropFill.yml:
--------------------------------------------------------------------------------
1 | name: RaindropFill
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - regndråpe
6 | - regn
7 | - dråpe
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Record.yml:
--------------------------------------------------------------------------------
1 | name: Record
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Opptak
6 | - ta opp
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RecordFill.yml:
--------------------------------------------------------------------------------
1 | name: RecordFill
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Opptak
6 | - ta opp
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Recycle.yml:
--------------------------------------------------------------------------------
1 | name: Recycle
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - resirkulering
6 | - recycling
7 | - environment
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RecycleFill.yml:
--------------------------------------------------------------------------------
1 | name: RecycleFill
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - resirkulering
6 | - recycling
7 | - environment
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Refrigerator.yml:
--------------------------------------------------------------------------------
1 | name: Refrigerator
2 | category: Home
3 | sub_category: Furniture
4 | keywords:
5 | - kjøleskap
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RefrigeratorFill.yml:
--------------------------------------------------------------------------------
1 | name: RefrigeratorFill
2 | category: Home
3 | sub_category: Furniture
4 | keywords:
5 | - kjøleskap
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Robot.yml:
--------------------------------------------------------------------------------
1 | name: Robot
2 | category: Status
3 | sub_category: Automated system
4 | keywords:
5 | - system response
6 | - system feedback
7 | - tilbakemelding
8 | - maskin
9 | - machine
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Rocket.yml:
--------------------------------------------------------------------------------
1 | name: Rocket
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - rakett
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RocketFill.yml:
--------------------------------------------------------------------------------
1 | name: RocketFill
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - rakett
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RockingHorse.yml:
--------------------------------------------------------------------------------
1 | name: RockingHorse
2 | category: Home
3 | sub_category: Toys
4 | keywords:
5 | - gyngestol
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RockingHorseFill.yml:
--------------------------------------------------------------------------------
1 | name: RockingHorseFill
2 | category: Home
3 | sub_category: Toys
4 | keywords:
5 | - gyngestol
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RotateLeft.yml:
--------------------------------------------------------------------------------
1 | name: RotateLeft
2 | category: Interface
3 | sub_category: Design
4 | keywords:
5 | - rotér
6 | - roter
7 | - rotate
8 | - rotation
9 | - left
10 | - venstre
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 19.08.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RotateLeftFill.yml:
--------------------------------------------------------------------------------
1 | name: RotateLeftFill
2 | category: Interface
3 | sub_category: Design
4 | keywords:
5 | - rotér
6 | - roter
7 | - rotate
8 | - rotation
9 | - left
10 | - venstre
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 19.08.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RotateRight.yml:
--------------------------------------------------------------------------------
1 | name: RotateRight
2 | category: Interface
3 | sub_category: Design
4 | keywords:
5 | - rotér
6 | - roter
7 | - rotate
8 | - rotation
9 | - right
10 | - høyre
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 19.08.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RotateRightFill.yml:
--------------------------------------------------------------------------------
1 | name: RotateRightFill
2 | category: Interface
3 | sub_category: Design
4 | keywords:
5 | - rotér
6 | - roter
7 | - rotate
8 | - rotation
9 | - right
10 | - høyre
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 19.08.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Ruler.yml:
--------------------------------------------------------------------------------
1 | name: Ruler
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - linjal
6 | - måle
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RulerFill.yml:
--------------------------------------------------------------------------------
1 | name: RulerFill
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - linjal
6 | - måle
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 07.03.2023
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Rulers.yml:
--------------------------------------------------------------------------------
1 | name: Rulers
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - måle
6 | - vinkel
7 | - angle
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/RulersFill.yml:
--------------------------------------------------------------------------------
1 | name: RulersFill
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - måle
6 | - vinkel
7 | - angle
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Sack.yml:
--------------------------------------------------------------------------------
1 | name: Sack
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - pengesekk
6 | - penger
7 | - money
8 | - bag
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SackFill.yml:
--------------------------------------------------------------------------------
1 | name: SackFill
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - pengesekk
6 | - penger
7 | - money
8 | - bag
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Scissors.yml:
--------------------------------------------------------------------------------
1 | name: Scissors
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - saks
6 | - cut
7 | - kutte
8 | - fjerne
9 | - dele
10 | - cutting
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ScissorsFill.yml:
--------------------------------------------------------------------------------
1 | name: ScissorsFill
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - saks
6 | - cut
7 | - kutte
8 | - fjerne
9 | - dele
10 | - cutting
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Seal.yml:
--------------------------------------------------------------------------------
1 | name: Seal
2 | category: Law and security
3 | sub_category: Security
4 | keywords:
5 | - sikkerhet
6 | - security
7 | - verification
8 | - verfisering
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SealFill.yml:
--------------------------------------------------------------------------------
1 | name: SealFill
2 | category: Law and security
3 | sub_category: Security
4 | keywords:
5 | - sikkerhet
6 | - security
7 | - verification
8 | - verfisering
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ShoppingBasket.yml:
--------------------------------------------------------------------------------
1 | name: ShoppingBasket
2 | category: Money
3 | sub_category: Payment
4 | keywords:
5 | - handlekurv
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 13.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ShoppingBasketFill.yml:
--------------------------------------------------------------------------------
1 | name: ShoppingBasketFill
2 | category: Money
3 | sub_category: Payment
4 | keywords:
5 | - handlekurv
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 13.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Shower.yml:
--------------------------------------------------------------------------------
1 | name: Shower
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - dusj
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ShowerFill.yml:
--------------------------------------------------------------------------------
1 | name: ShowerFill
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - dusj
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Shrink.yml:
--------------------------------------------------------------------------------
1 | name: Shrink
2 | category: Arrows
3 | sub_category: Arrow
4 | keywords:
5 | - arrows
6 | - piler
7 | - fullscreen
8 | - fullskjerm
9 | - lukk
10 | - close
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Silhouette.yml:
--------------------------------------------------------------------------------
1 | name: Silhouette
2 | category: People
3 | sub_category: Figure
4 | keywords:
5 | - silhuett
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SilhouetteFill.yml:
--------------------------------------------------------------------------------
1 | name: SilhouetteFill
2 | category: People
3 | sub_category: Figure
4 | keywords:
5 | - silhuett
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SkipBackward.yml:
--------------------------------------------------------------------------------
1 | name: SkipBackward
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Hopp bakover
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SkipBackwardFill.yml:
--------------------------------------------------------------------------------
1 | name: SkipBackwardFill
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Hopp bakover
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SkipForward.yml:
--------------------------------------------------------------------------------
1 | name: SkipForward
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Hopp fremover
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SkipForwardFill.yml:
--------------------------------------------------------------------------------
1 | name: SkipForwardFill
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Hopp fremover
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Snow.yml:
--------------------------------------------------------------------------------
1 | name: Snow
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - snøfnugg
6 | - crystal
7 | - snø
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SortDown.yml:
--------------------------------------------------------------------------------
1 | name: SortDown
2 | category: Interface
3 | sub_category: Filtering and sorting
4 | keywords:
5 | - sort
6 | - sortering
7 | - synkende
8 | - descending
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 27.01.2025
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SortUp.yml:
--------------------------------------------------------------------------------
1 | name: SortUp
2 | category: Interface
3 | sub_category: Filtering and sorting
4 | keywords:
5 | - sort
6 | - sortering
7 | - stigende
8 | - ascending
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 27.01.2025
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SpaceHorizontal.yml:
--------------------------------------------------------------------------------
1 | name: SpaceHorizontal
2 | category: Interface
3 | sub_category: Design
4 | keywords:
5 | - avstand
6 | - padding
7 | - margin
8 | - horisontal
9 | - luft
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 14.02.2025
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SpaceVertical.yml:
--------------------------------------------------------------------------------
1 | name: SpaceVertical
2 | category: Interface
3 | sub_category: Design
4 | keywords:
5 | - avstand
6 | - padding
7 | - margin
8 | - vertikal
9 | - luft
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 14.02.2025
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SparkLarge.yml:
--------------------------------------------------------------------------------
1 | name: SparkLarge
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - nytt
6 | - new
7 | - gnist
8 | - loading
9 | - laster
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SparkSmall.yml:
--------------------------------------------------------------------------------
1 | name: SparkSmall
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - nytt
6 | - new
7 | - gnist
8 | - loading
9 | - laster
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Sparkles.yml:
--------------------------------------------------------------------------------
1 | name: Sparkles
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - nytt
6 | - new
7 | - stjerner
8 | - stars
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SparklesFill.yml:
--------------------------------------------------------------------------------
1 | name: SparklesFill
2 | category: Nature and animals
3 | sub_category: Nature
4 | keywords:
5 | - nytt
6 | - new
7 | - stjerner
8 | - stars
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Spoon.yml:
--------------------------------------------------------------------------------
1 | name: Spoon
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - skje
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SpoonFill.yml:
--------------------------------------------------------------------------------
1 | name: SpoonFill
2 | category: Home
3 | sub_category: Dishes
4 | keywords:
5 | - skje
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Square.yml:
--------------------------------------------------------------------------------
1 | name: Square
2 | category: Status
3 | sub_category: Shapes
4 | keywords:
5 | - firkant
6 | - kvadrat
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 15.05.2024
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SquareFill.yml:
--------------------------------------------------------------------------------
1 | name: SquareFill
2 | category: Status
3 | sub_category: Shapes
4 | keywords:
5 | - firkant
6 | - kvadrat
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 15.05.2024
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SquareGrid.yml:
--------------------------------------------------------------------------------
1 | name: SquareGrid
2 | category: Interface
3 | sub_category: View
4 | keywords:
5 | - grid
6 | - firkant
7 | - kvadrat
8 | - rute
9 | - cards
10 | - kort
11 | variant: Stroke
12 | updated_at: 05.06.2025
13 | created_at: 05.06.2025
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/SquareGridFill.yml:
--------------------------------------------------------------------------------
1 | name: SquareGridFill
2 | category: Interface
3 | sub_category: View
4 | keywords:
5 | - grid
6 | - firkant
7 | - kvadrat
8 | - rute
9 | - cards
10 | - kort
11 | variant: Fill
12 | updated_at: 05.06.2025
13 | created_at: 05.06.2025
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Squareroot.yml:
--------------------------------------------------------------------------------
1 | name: Squareroot
2 | category: Statistics and math
3 | sub_category: Math
4 | keywords:
5 | - rot
6 | - matte
7 | - matematikk
8 | - root
9 | - math
10 | - mathematics
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Staircase.yml:
--------------------------------------------------------------------------------
1 | name: Staircase
2 | category: Accessibility
3 | sub_category: Mobility
4 | keywords:
5 | - etasjer
6 | - trapper
7 | - stairs
8 | - floors
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/StarsEu.yml:
--------------------------------------------------------------------------------
1 | name: StarsEu
2 | category: Law and security
3 | sub_category: Law
4 | keywords:
5 | - EU
6 | - europa
7 | - europe
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Stop.yml:
--------------------------------------------------------------------------------
1 | name: Stop
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Stopp
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/StopFill.yml:
--------------------------------------------------------------------------------
1 | name: StopFill
2 | category: Media
3 | sub_category: Control
4 | keywords:
5 | - Stopp
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Stroller.yml:
--------------------------------------------------------------------------------
1 | name: Stroller
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - parenting
6 | - parenthood
7 | - family
8 | - foreldreskap
9 | - familie
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/StrollerFill.yml:
--------------------------------------------------------------------------------
1 | name: StrollerFill
2 | category: Transportation
3 | sub_category: Travel
4 | keywords:
5 | - parenting
6 | - parenthood
7 | - family
8 | - foreldreskap
9 | - familie
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Table.yml:
--------------------------------------------------------------------------------
1 | name: Table
2 | category: Statistics and math
3 | sub_category: Tabular
4 | keywords:
5 | - liste
6 | - list
7 | - tabell
8 | - data
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TableFill.yml:
--------------------------------------------------------------------------------
1 | name: TableFill
2 | category: Statistics and math
3 | sub_category: Tabular
4 | keywords:
5 | - liste
6 | - list
7 | - tabell
8 | - data
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Tablet.yml:
--------------------------------------------------------------------------------
1 | name: Tablet
2 | category: Interface
3 | sub_category: Devices
4 | keywords:
5 | - tablet
6 | - ipad
7 | - tab
8 | - brekkpunkt md
9 | - breakpoint md
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TabletFill.yml:
--------------------------------------------------------------------------------
1 | name: TabletFill
2 | category: Interface
3 | sub_category: Devices
4 | keywords:
5 | - tablet
6 | - ipad
7 | - tab
8 | - brekkpunkt md
9 | - breakpoint md
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TabsAdd.yml:
--------------------------------------------------------------------------------
1 | name: TabsAdd
2 | category: Interface
3 | sub_category: Navigation
4 | keywords:
5 | - legg til
6 | - tabs
7 | - tab
8 | - new tab
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TabsAddFill.yml:
--------------------------------------------------------------------------------
1 | name: TabsAddFill
2 | category: Interface
3 | sub_category: Navigation
4 | keywords:
5 | - legg til
6 | - tabs
7 | - tab
8 | - new tab
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TabsRemove.yml:
--------------------------------------------------------------------------------
1 | name: TabsRemove
2 | category: Interface
3 | sub_category: Navigation
4 | keywords:
5 | - fjern
6 | - tabs
7 | - tab
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TabsRemoveFill.yml:
--------------------------------------------------------------------------------
1 | name: TabsRemoveFill
2 | category: Interface
3 | sub_category: Navigation
4 | keywords:
5 | - fjern
6 | - tabs
7 | - tab
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TapWater.yml:
--------------------------------------------------------------------------------
1 | name: TapWater
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - water
6 | - tap
7 | - spring
8 | - vann
9 | - friskt vann
10 | - fresh
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TapWaterFill.yml:
--------------------------------------------------------------------------------
1 | name: TapWaterFill
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - water
6 | - tap
7 | - spring
8 | - vann
9 | - friskt vann
10 | - fresh
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Tasklist.yml:
--------------------------------------------------------------------------------
1 | name: Tasklist
2 | category: Files and application
3 | sub_category: Application
4 | keywords:
5 | - application
6 | - søknad
7 | - gjøremål
8 | - reminders
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TasklistFill.yml:
--------------------------------------------------------------------------------
1 | name: TasklistFill
2 | category: Files and application
3 | sub_category: Application
4 | keywords:
5 | - application
6 | - søknad
7 | - gjøremål
8 | - reminders
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TasklistSave.yml:
--------------------------------------------------------------------------------
1 | name: TasklistSave
2 | category: Files and application
3 | sub_category: Application
4 | keywords:
5 | - søknad
6 | - lagre søknad
7 | - application
8 | - save form
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TasklistSaveFill.yml:
--------------------------------------------------------------------------------
1 | name: TasklistSaveFill
2 | category: Files and application
3 | sub_category: Application
4 | keywords:
5 | - søknad
6 | - lagre søknad
7 | - application
8 | - save form
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TasklistSend.yml:
--------------------------------------------------------------------------------
1 | name: TasklistSend
2 | category: Files and application
3 | sub_category: Application
4 | keywords:
5 | - søknad
6 | - send søknad
7 | - application
8 | - send form
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TasklistSendFill.yml:
--------------------------------------------------------------------------------
1 | name: TasklistSendFill
2 | category: Files and application
3 | sub_category: Application
4 | keywords:
5 | - søknad
6 | - send søknad
7 | - application
8 | - send form
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TasklistStart.yml:
--------------------------------------------------------------------------------
1 | name: TasklistStart
2 | category: Files and application
3 | sub_category: Application
4 | keywords:
5 | - søknad
6 | - fyll ut søknad
7 | - application
8 | - fill form
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Timer.yml:
--------------------------------------------------------------------------------
1 | name: Timer
2 | category: Files and application
3 | sub_category: Time
4 | keywords:
5 | - stoppeklokke
6 | - tidtaking
7 | - time keeping
8 | - clock
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TimerFill.yml:
--------------------------------------------------------------------------------
1 | name: TimerFill
2 | category: Files and application
3 | sub_category: Time
4 | keywords:
5 | - stoppeklokke
6 | - tidtaking
7 | - time keeping
8 | - clock
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TimerStart.yml:
--------------------------------------------------------------------------------
1 | name: TimerStart
2 | category: Files and application
3 | sub_category: Time
4 | keywords:
5 | - stoppeklokke
6 | - tidtaking
7 | - time keeping
8 | - clock
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TimerStartFill.yml:
--------------------------------------------------------------------------------
1 | name: TimerStartFill
2 | category: Files and application
3 | sub_category: Time
4 | keywords:
5 | - stoppeklokke
6 | - tidtaking
7 | - time keeping
8 | - clock
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Tooth.yml:
--------------------------------------------------------------------------------
1 | name: Tooth
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - tann
6 | - tannpleie
7 | - tannlege
8 | - dentist
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/ToothFill.yml:
--------------------------------------------------------------------------------
1 | name: ToothFill
2 | category: People
3 | sub_category: Body parts
4 | keywords:
5 | - tann
6 | - tannpleie
7 | - tannlege
8 | - dentist
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Trash.yml:
--------------------------------------------------------------------------------
1 | name: Trash
2 | category: Interface
3 | sub_category: Editing
4 | keywords:
5 | - delete
6 | - slett
7 | - fjern
8 | - remove
9 | - can
10 | - bin
11 | - søppel
12 | variant: Stroke
13 | updated_at: 14.05.2025
14 | created_at: 07.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TrashFill.yml:
--------------------------------------------------------------------------------
1 | name: TrashFill
2 | category: Interface
3 | sub_category: Editing
4 | keywords:
5 | - delete
6 | - slett
7 | - fjern
8 | - remove
9 | - can
10 | - bin
11 | - søppel
12 | variant: Fill
13 | updated_at: 14.05.2025
14 | created_at: 07.03.2023
15 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TrayFood.yml:
--------------------------------------------------------------------------------
1 | name: TrayFood
2 | category: Wellness
3 | sub_category: Food and drinks
4 | keywords:
5 | - cantine
6 | - kantine
7 | - matbrett
8 | - brett
9 | variant: Stroke
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TrayFoodFill.yml:
--------------------------------------------------------------------------------
1 | name: TrayFoodFill
2 | category: Wellness
3 | sub_category: Food and drinks
4 | keywords:
5 | - cantine
6 | - kantine
7 | - matbrett
8 | - brett
9 | variant: Fill
10 | updated_at: 14.05.2025
11 | created_at: 07.03.2023
12 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Triangle.yml:
--------------------------------------------------------------------------------
1 | name: Triangle
2 | category: Status
3 | sub_category: Shapes
4 | keywords:
5 | - triangel
6 | - trekant
7 | variant: Stroke
8 | updated_at: 14.05.2025
9 | created_at: 15.05.2024
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TriangleFill.yml:
--------------------------------------------------------------------------------
1 | name: TriangleFill
2 | category: Status
3 | sub_category: Shapes
4 | keywords:
5 | - triangel
6 | - trekant
7 | variant: Fill
8 | updated_at: 14.05.2025
9 | created_at: 15.05.2024
10 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Truck.yml:
--------------------------------------------------------------------------------
1 | name: Truck
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - lastebil
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/TruckFill.yml:
--------------------------------------------------------------------------------
1 | name: TruckFill
2 | category: Transportation
3 | sub_category: Vehicles
4 | keywords:
5 | - lastebil
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Umbrella.yml:
--------------------------------------------------------------------------------
1 | name: Umbrella
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - paraply
6 | - rain
7 | - regn
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/UmbrellaFill.yml:
--------------------------------------------------------------------------------
1 | name: UmbrellaFill
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - paraply
6 | - rain
7 | - regn
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Upload.yml:
--------------------------------------------------------------------------------
1 | name: Upload
2 | category: Files and application
3 | sub_category: Data transfer
4 | keywords:
5 | - last opp
6 | - uploading
7 | - send
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Videoplayer.yml:
--------------------------------------------------------------------------------
1 | name: Videoplayer
2 | category: Media
3 | sub_category: Media
4 | keywords:
5 | - videospiller
6 | - video player
7 | - playing
8 | - video
9 | - media
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/VideoplayerFill.yml:
--------------------------------------------------------------------------------
1 | name: VideoplayerFill
2 | category: Media
3 | sub_category: Media
4 | keywords:
5 | - videospiller
6 | - video player
7 | - playing
8 | - video
9 | - media
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Virus.yml:
--------------------------------------------------------------------------------
1 | name: Virus
2 | category: Wellness
3 | sub_category: Illness and injury
4 | keywords:
5 | - covid
6 | - COVID-19
7 | - korona
8 | - corona
9 | - sick
10 | - illness
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/VirusFill.yml:
--------------------------------------------------------------------------------
1 | name: VirusFill
2 | category: Wellness
3 | sub_category: Illness and injury
4 | keywords:
5 | - covid
6 | - COVID-19
7 | - korona
8 | - corona
9 | - sick
10 | - illness
11 | variant: Fill
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/WaitingRoom.yml:
--------------------------------------------------------------------------------
1 | name: WaitingRoom
2 | category: Workplace
3 | sub_category: Workplace
4 | keywords:
5 | - waiting room
6 | - venterom
7 | - vente
8 | - venting
9 | - tid
10 | - pause
11 | variant: Stroke
12 | updated_at: 14.05.2025
13 | created_at: 07.03.2023
14 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/WateringCan.yml:
--------------------------------------------------------------------------------
1 | name: WateringCan
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - vannkanne
6 | variant: Stroke
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/WateringCanFill.yml:
--------------------------------------------------------------------------------
1 | name: WateringCanFill
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - vannkanne
6 | variant: Fill
7 | updated_at: 14.05.2025
8 | created_at: 07.03.2023
9 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Weight.yml:
--------------------------------------------------------------------------------
1 | name: Weight
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - vekt
6 | - vektløfting
7 | - tungt
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Wheelchair.yml:
--------------------------------------------------------------------------------
1 | name: Wheelchair
2 | category: Accessibility
3 | sub_category: Mobility
4 | keywords:
5 | - nedsatt motorikk
6 | - rullestol
7 | - motor function
8 | variant: Stroke
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/WheelchairFill.yml:
--------------------------------------------------------------------------------
1 | name: WheelchairFill
2 | category: Accessibility
3 | sub_category: Mobility
4 | keywords:
5 | - nedsatt motorikk
6 | - rullestol
7 | - motor function
8 | variant: Fill
9 | updated_at: 14.05.2025
10 | created_at: 07.03.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/Wrench.yml:
--------------------------------------------------------------------------------
1 | name: Wrench
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - skiftnøkkel
6 | - settings
7 | - verktøy
8 | - tool
9 | - tools
10 | variant: Stroke
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/icons/WrenchFill.yml:
--------------------------------------------------------------------------------
1 | name: WrenchFill
2 | category: Home
3 | sub_category: Hosehold items
4 | keywords:
5 | - skiftnøkkel
6 | - settings
7 | - verktøy
8 | - tool
9 | - tools
10 | variant: Fill
11 | updated_at: 14.05.2025
12 | created_at: 07.03.2023
13 |
--------------------------------------------------------------------------------
/@navikt/aksel-icons/template/Template.yml:
--------------------------------------------------------------------------------
1 | name: Template
2 | category: Template category
3 | sub_category: Sub category
4 | keywords:
5 | - template1
6 | - template2
7 | - template3
8 | variant: Stroke
9 | updated_at: 02.01.2023
10 | created_at: 01.01.2023
11 |
--------------------------------------------------------------------------------
/@navikt/aksel-stylelint/.gitignore:
--------------------------------------------------------------------------------
1 | /dist
--------------------------------------------------------------------------------
/@navikt/aksel-stylelint/src/index.ts:
--------------------------------------------------------------------------------
1 | import { createPlugin } from "stylelint";
2 | import { rules } from "./rules";
3 |
4 | const rulesPlugins = Object.keys(rules).map((ruleName) => {
5 | return createPlugin(`${ruleName}`, rules[ruleName]);
6 | });
7 |
8 | module.exports = rulesPlugins;
9 |
--------------------------------------------------------------------------------
/@navikt/aksel/.gitignore:
--------------------------------------------------------------------------------
1 | dist
--------------------------------------------------------------------------------
/@navikt/aksel/src/codemod/transforms/darkside/box-to-boxnew/tests/box-simple.input.js:
--------------------------------------------------------------------------------
1 | import { Box } from "@navikt/ds-react";
2 |
3 | export const MyComponent = () => {
4 | return (
5 |