{
  "schemaVersion": "1.0.0",
  "readme": "",
  "modules": [
    {
      "kind": "javascript-module",
      "path": "src/components/fhi-button/fhi-button.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Button\n\nhttps://designsystem.fhi.no/?path=/docs/komponenter-button--docs\n\nThe `<fhi-button>` component is used to create interactive buttons in accordance with the FHI Design System guidelines.\nUse this component instead of the standard HTML `<button>` element to ensure consistent styling and behavior across your application.",
          "name": "FhiButton",
          "slots": [
            {
              "description": "The content of the button. This should be pure text, an icon or both.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "method",
              "name": "_dispatchClickEvent",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "_getIconSize",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string"
                }
              }
            },
            {
              "kind": "method",
              "name": "_handleClick",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "optional": true,
                  "type": {
                    "text": "MouseEvent | KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleKeydown",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleKeyup",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleSelectStart",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              }
            },
            {
              "kind": "method",
              "name": "_handleSlotChange",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "_internals",
              "type": {
                "text": "ElementInternals"
              },
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "click",
              "privacy": "public",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "description": "Programmatically clicks the button."
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "'accent' | 'neutral' | 'danger'"
              },
              "default": "'accent'",
              "description": "Sets the color of the button.\n\nSee: https://designsystem.fhi.no/?path=/docs/komponenter-button--docs#color-farge",
              "reflects": true,
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the button. This changes its appearance and makes it non-interactive.",
              "reflects": true,
              "attribute": "disabled"
            },
            {
              "kind": "field",
              "name": "formAssociated",
              "type": {
                "text": "boolean"
              },
              "static": true,
              "readonly": true,
              "default": "true"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the size of the button to one of the predefined options.\n\nSee: https://designsystem.fhi.no/?path=/docs/komponenter-button--docs#size-st%C3%B8rrelse",
              "reflects": true,
              "attribute": "size"
            },
            {
              "kind": "field",
              "name": "type",
              "type": {
                "text": "'button' | 'submit' | 'reset'"
              },
              "default": "'submit'",
              "description": "Sets the button's type. This determines the button's behavior when used within a form.\nThe predefined types conform to standard HTML button types.\n\nFor more information about button types, see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#attr-type",
              "attribute": "type"
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'strong' | 'subtle' | 'outlined' | 'text'"
              },
              "default": "'strong'",
              "description": "Sets the button variant. The variant determines the button's visual style and emphasis.\n\nSee: https://designsystem.fhi.no/?path=/docs/komponenter-button--docs#variant",
              "reflects": true,
              "attribute": "variant"
            },
            {
              "kind": "field",
              "name": "iconOnly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Styles the button for icon-only content.\n\nIf you only have an icon as the child of the button, then you should set this property to `true`.",
              "deprecated": "This property is deprecated and will be removed in a future release. The button will automatically detect if it only contains an icon and apply the appropriate styling.",
              "attribute": "icon-only"
            }
          ],
          "events": [
            {
              "name": "click",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `click`.\nThis event is dispatched when the button is clicked, either via mouse or keyboard interaction."
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "'accent' | 'neutral' | 'danger'"
              },
              "default": "'accent'",
              "description": "Sets the color of the button.\n\nSee: https://designsystem.fhi.no/?path=/docs/komponenter-button--docs#color-farge",
              "fieldName": "color"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the button. This changes its appearance and makes it non-interactive.",
              "fieldName": "disabled"
            },
            {
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the size of the button to one of the predefined options.\n\nSee: https://designsystem.fhi.no/?path=/docs/komponenter-button--docs#size-st%C3%B8rrelse",
              "fieldName": "size"
            },
            {
              "name": "type",
              "type": {
                "text": "'button' | 'submit' | 'reset'"
              },
              "default": "'submit'",
              "description": "Sets the button's type. This determines the button's behavior when used within a form.\nThe predefined types conform to standard HTML button types.\n\nFor more information about button types, see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#attr-type",
              "fieldName": "type"
            },
            {
              "name": "variant",
              "type": {
                "text": "'strong' | 'subtle' | 'outlined' | 'text'"
              },
              "default": "'strong'",
              "description": "Sets the button variant. The variant determines the button's visual style and emphasis.\n\nSee: https://designsystem.fhi.no/?path=/docs/komponenter-button--docs#variant",
              "fieldName": "variant"
            },
            {
              "name": "icon-only",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Styles the button for icon-only content.\n\nIf you only have an icon as the child of the button, then you should set this property to `true`.",
              "deprecated": "This property is deprecated and will be removed in a future release. The button will automatically detect if it only contains an icon and apply the appropriate styling.",
              "fieldName": "iconOnly"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-button",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiButtonSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-button'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiButton",
            "module": "src/components/fhi-button/fhi-button.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiButton",
          "declaration": {
            "name": "FhiButton",
            "module": "src/components/fhi-button/fhi-button.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiButtonSelector",
          "declaration": {
            "name": "FhiButtonSelector",
            "module": "src/components/fhi-button/fhi-button.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/fhi-checkbox/fhi-checkbox.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Checkbox\n\nhttps://designsystem.fhi.no/?path=/docs/komponenter-checkbox--docs\n\nThe `<fhi-checkbox>` component represents a checkbox input element styled and implemented according to the FHI Design System guidelines.\nIt allows users to make binary choices, such as selecting or deselecting an option.",
          "name": "FhiCheckbox",
          "members": [
            {
              "kind": "method",
              "name": "_dispatchChangeEvent",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "_dispatchInputEvent",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "_handleChange",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleInput",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "_internals",
              "type": {
                "text": "ElementInternals"
              },
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_updateFormValue",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the checkbox is checked or not.",
              "attribute": "checked"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the checkbox. This changes its appearance and makes it non-interactive.",
              "reflects": true,
              "attribute": "disabled"
            },
            {
              "kind": "method",
              "name": "formResetCallback",
              "privacy": "public"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The text label assigned to and displayed next to the checkbox.\nYou should always provide a label.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The name of the checkbox. This is submitted with the form data as a `key` when the checkbox is checked.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "status",
              "type": {
                "text": "'error' | undefined"
              },
              "description": "Sets the visual status of the checkbox. There is currently only one status available: `error`.\nThe `error` status is used to indicate that there is an issue with the checkbox, such as a required checkbox not being checked.",
              "reflects": true,
              "attribute": "status"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "'on'",
              "description": "The value of the checkbox. This is submitted with the form data as a `value` when the checkbox is checked.",
              "attribute": "value"
            }
          ],
          "events": [
            {
              "name": "change",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `change`.\nThis event is dispatched when the checkbox is checked or unchecked."
            },
            {
              "name": "input",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `input`.\nThis event is dispatched when the checkbox is checked or unchecked."
            }
          ],
          "attributes": [
            {
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the checkbox is checked or not.",
              "fieldName": "checked"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the checkbox. This changes its appearance and makes it non-interactive.",
              "fieldName": "disabled"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The text label assigned to and displayed next to the checkbox.\nYou should always provide a label.",
              "fieldName": "label"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The name of the checkbox. This is submitted with the form data as a `key` when the checkbox is checked.",
              "fieldName": "name"
            },
            {
              "name": "status",
              "type": {
                "text": "'error' | undefined"
              },
              "description": "Sets the visual status of the checkbox. There is currently only one status available: `error`.\nThe `error` status is used to indicate that there is an issue with the checkbox, such as a required checkbox not being checked.",
              "fieldName": "status"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "'on'",
              "description": "The value of the checkbox. This is submitted with the form data as a `value` when the checkbox is checked.",
              "fieldName": "value"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-checkbox",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiCheckboxSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-checkbox'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiCheckbox",
            "module": "src/components/fhi-checkbox/fhi-checkbox.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiCheckbox",
          "declaration": {
            "name": "FhiCheckbox",
            "module": "src/components/fhi-checkbox/fhi-checkbox.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiCheckboxSelector",
          "declaration": {
            "name": "FhiCheckboxSelector",
            "module": "src/components/fhi-checkbox/fhi-checkbox.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/fhi-date-input/fhi-date-input.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Date input\n\nhttps://designsystemet.dhi.no/?path=/docs/komponenter-date-input--docs\n\nThe `<fhi-date-input>` component represents a date input field styled and implemented according to the FHI Design System guidelines.\nIt allows users to select or input a date.",
          "name": "FhiDateInput",
          "members": [
            {
              "kind": "method",
              "name": "_dispatchChangeEvent",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "_dispatchInputEvent",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "_handleChange",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "_handleInput",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleKeyDown",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "_input",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_internals",
              "type": {
                "text": "ElementInternals"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_name",
              "type": {
                "text": "string | undefined | undefined"
              },
              "privacy": "private",
              "default": "undefined"
            },
            {
              "kind": "method",
              "name": "_showDate",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "optional": true,
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "_value",
              "type": {
                "text": "string | undefined"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the input.  This changes its appearance and makes it non-interactive.",
              "reflects": true,
              "attribute": "disabled"
            },
            {
              "kind": "method",
              "name": "formResetCallback",
              "privacy": "public",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The help-text shown above the input field.\nThis is often used to provide additional information to the user.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The text that labels the input field.\nAn input field should always have a label to ensure accessibility.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "max",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "Sets maximum date available for selection in the input field. Format `YYYY-MM-DD`.",
              "attribute": "max"
            },
            {
              "kind": "field",
              "name": "message",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The message shown beneath the input field.\nThis is often used to provide additional information or feedback to the user.",
              "attribute": "message"
            },
            {
              "kind": "field",
              "name": "min",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "Sets minium date available for selection in the input field. Format `YYYY-MM-DD`.",
              "attribute": "min"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "description": "The name of the input. This is submitted with the form data as a `key`.\n\nThis attribute conforms with the standard HTML `name` attribute for input fields.\nSee: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name",
              "reflects": true,
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Sets the input to read-only. A read-only field cannot be modified by the user but may be submitted with the form.",
              "reflects": true,
              "attribute": "readonly"
            },
            {
              "kind": "field",
              "name": "status",
              "type": {
                "text": "'error'"
              },
              "default": "undefined",
              "description": "Sets the visual status of the input. There is currently only one status available: `error`.\n\nThe `error` status is used to indicate that there is an issue with the input, such as invalid or missing data.",
              "reflects": true,
              "attribute": "status"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The default value of the input field, formatted as `YYYY-MM-DD`.\n\nYou can fetch the current value of the date input by accessing this property directly on the component instance, or by listening for the `change` or `input` events which are dispatched whenever the value changes.\n\nThis attribute conforms with the standard HTML `value` attribute for input fields.\nSee: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#value",
              "attribute": "value"
            }
          ],
          "events": [
            {
              "name": "change",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `change`.\nThis event is dispatched when the value of the input changes."
            },
            {
              "name": "input",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `input`.\nThis event is dispatched when the value of the input changes."
            }
          ],
          "attributes": [
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the input.  This changes its appearance and makes it non-interactive.",
              "fieldName": "disabled"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The help-text shown above the input field.\nThis is often used to provide additional information to the user.",
              "fieldName": "helpText"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The text that labels the input field.\nAn input field should always have a label to ensure accessibility.",
              "fieldName": "label"
            },
            {
              "name": "max",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "Sets maximum date available for selection in the input field. Format `YYYY-MM-DD`.",
              "fieldName": "max"
            },
            {
              "name": "message",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The message shown beneath the input field.\nThis is often used to provide additional information or feedback to the user.",
              "fieldName": "message"
            },
            {
              "name": "min",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "Sets minium date available for selection in the input field. Format `YYYY-MM-DD`.",
              "fieldName": "min"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "description": "The name of the input. This is submitted with the form data as a `key`.\n\nThis attribute conforms with the standard HTML `name` attribute for input fields.\nSee: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name",
              "fieldName": "name"
            },
            {
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Sets the input to read-only. A read-only field cannot be modified by the user but may be submitted with the form.",
              "fieldName": "readonly"
            },
            {
              "name": "status",
              "type": {
                "text": "'error'"
              },
              "default": "undefined",
              "description": "Sets the visual status of the input. There is currently only one status available: `error`.\n\nThe `error` status is used to indicate that there is an issue with the input, such as invalid or missing data.",
              "fieldName": "status"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The default value of the input field, formatted as `YYYY-MM-DD`.\n\nYou can fetch the current value of the date input by accessing this property directly on the component instance, or by listening for the `change` or `input` events which are dispatched whenever the value changes.\n\nThis attribute conforms with the standard HTML `value` attribute for input fields.\nSee: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#value",
              "fieldName": "value"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-date-input",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiDateInputSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-date-input'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiDateInput",
            "module": "src/components/fhi-date-input/fhi-date-input.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiDateInput",
          "declaration": {
            "name": "FhiDateInput",
            "module": "src/components/fhi-date-input/fhi-date-input.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiDateInputSelector",
          "declaration": {
            "name": "FhiDateInputSelector",
            "module": "src/components/fhi-date-input/fhi-date-input.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/fhi-flex/fhi-flex.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Flex\n\nhttps://designsystem.fhi.no/?path=/docs/komponenter-flex--docs\n\nThe `<fhi-flex>` component is a flexible container that utilizes CSS Flexbox to arrange its child elements in a responsive layout.\nIt allows for easy alignment, spacing, and direction control of its items.",
          "name": "FhiFlex",
          "slots": [
            {
              "description": "The content of the flex container. This can include any elements or text.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "align",
              "type": {
                "text": "'stretch' | 'start' | 'center' | 'end' | 'baseline'"
              },
              "default": "'stretch'",
              "description": "Aligns flex items along the cross axis.",
              "attribute": "align"
            },
            {
              "kind": "field",
              "name": "direction",
              "type": {
                "text": "'row' | 'column'"
              },
              "default": "'row'",
              "description": "Sets the flex direction to either row or column.\nThis determines the main axis along which the flex items are laid out.",
              "reflects": true,
              "attribute": "direction"
            },
            {
              "kind": "field",
              "name": "gap",
              "type": {
                "text": "'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the gap between items within the flex container.\nIt can be one of the preset values, a rem or px value, or a number.\nIf you give a number, it will be treated as pixels.",
              "reflects": true,
              "attribute": "gap"
            },
            {
              "kind": "field",
              "name": "justify",
              "type": {
                "text": "'start' | 'center' | 'end'"
              },
              "default": "'start'",
              "description": "Justifies flex items along the main axis.",
              "attribute": "justify"
            },
            {
              "kind": "field",
              "name": "wrap",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enables wrapping of flex items onto multiple lines if they exceed the container's width.",
              "reflects": true,
              "attribute": "wrap"
            }
          ],
          "attributes": [
            {
              "name": "align",
              "type": {
                "text": "'stretch' | 'start' | 'center' | 'end' | 'baseline'"
              },
              "default": "'stretch'",
              "description": "Aligns flex items along the cross axis.",
              "fieldName": "align"
            },
            {
              "name": "direction",
              "type": {
                "text": "'row' | 'column'"
              },
              "default": "'row'",
              "description": "Sets the flex direction to either row or column.\nThis determines the main axis along which the flex items are laid out.",
              "fieldName": "direction"
            },
            {
              "name": "gap",
              "type": {
                "text": "'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the gap between items within the flex container.\nIt can be one of the preset values, a rem or px value, or a number.\nIf you give a number, it will be treated as pixels.",
              "fieldName": "gap"
            },
            {
              "name": "justify",
              "type": {
                "text": "'start' | 'center' | 'end'"
              },
              "default": "'start'",
              "description": "Justifies flex items along the main axis.",
              "fieldName": "justify"
            },
            {
              "name": "wrap",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enables wrapping of flex items onto multiple lines if they exceed the container's width.",
              "fieldName": "wrap"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-flex",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiFlexSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-flex'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiFlex",
            "module": "src/components/fhi-flex/fhi-flex.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiFlex",
          "declaration": {
            "name": "FhiFlex",
            "module": "src/components/fhi-flex/fhi-flex.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiFlexSelector",
          "declaration": {
            "name": "FhiFlexSelector",
            "module": "src/components/fhi-flex/fhi-flex.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/fhi-grid/fhi-grid.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Grid\n\nhttps://designsystem.fhi.no/?path=/docs/komponenter-grid--docs\n\nThe `<fhi-grid>` component is a grid container that uses CSS Grid Layout to organize its child elements into a structured grid format.\nIt allows for easy control over the number of columns and the spacing between grid items.",
          "name": "FhiGrid",
          "members": [
            {
              "kind": "field",
              "name": "columns",
              "type": {
                "text": "number"
              },
              "default": "12",
              "description": "Sets the number of columns in the grid layout.",
              "attribute": "columns"
            },
            {
              "kind": "field",
              "name": "gap",
              "type": {
                "text": "'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the gap between items within the grid container. It can be one of the preset values, a rem or px value, or a number.\nIf you give a number, it will be treated as pixels.",
              "attribute": "gap"
            },
            {
              "kind": "field",
              "name": "rows",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Sets the number of rows in the grid layout.",
              "attribute": "rows"
            }
          ],
          "attributes": [
            {
              "name": "columns",
              "type": {
                "text": "number"
              },
              "default": "12",
              "description": "Sets the number of columns in the grid layout.",
              "fieldName": "columns"
            },
            {
              "name": "gap",
              "type": {
                "text": "'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the gap between items within the grid container. It can be one of the preset values, a rem or px value, or a number.\nIf you give a number, it will be treated as pixels.",
              "fieldName": "gap"
            },
            {
              "name": "rows",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Sets the number of rows in the grid layout.",
              "fieldName": "rows"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-grid",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiGridSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-grid'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiGrid",
            "module": "src/components/fhi-grid/fhi-grid.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiGrid",
          "declaration": {
            "name": "FhiGrid",
            "module": "src/components/fhi-grid/fhi-grid.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiGridSelector",
          "declaration": {
            "name": "FhiGridSelector",
            "module": "src/components/fhi-grid/fhi-grid.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/fhi-modal-dialog/fhi-modal-dialog.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Modal Dialog\n\nhttps://designsystem.fhi.no/?path=/docs/komponenter-modal-dialog--docs\n\nThe `fhi-modal-dialog` component is used to display important information or prompt the user for input in a modal window.\nIt overlays the main content and usually requires user interaction before returning to the underlying page.",
          "name": "FhiModalDialog",
          "slots": [
            {
              "description": "The main content of the dialog. Typically contains text or form elements.",
              "name": "body"
            },
            {
              "description": "The footer content of the dialog, typically containing action buttons.",
              "name": "footer"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "_bodyOverflowStyle",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "_dialog",
              "type": {
                "text": "HTMLDialogElement"
              },
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_dispatchCloseEvent",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_dispatchToggleEvent",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_focusDialog",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_footer",
              "type": {
                "text": "HTMLElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_footerSlot",
              "type": {
                "text": "HTMLSlotElement"
              },
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_handleCloseButtonClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_handleDialogContentMouseDown",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_handleDialogMouseUp",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleFooterSlotChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_mouseDownInsideDialog",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "method",
              "name": "_toggleFooter",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_triggerElement",
              "type": {
                "text": "HTMLElement | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "method",
              "name": "close",
              "privacy": "public",
              "description": "Programmatically closes the dialog.\nYou can also close the dialog by instead setting the `open` property to `false`."
            },
            {
              "kind": "field",
              "name": "closeButtonLabel",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Label for the close button.",
              "attribute": "close-button-label"
            },
            {
              "kind": "method",
              "name": "handleKeyPress",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "heading",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The heading text of the dialog. This is displayed at the top of the dialog.",
              "attribute": "heading"
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Decides whether the dialog is open or closed.\nBy setting this property to true, the dialog will be shown. Setting it to false will close the dialog.\n\nThis property is reflected as an attribute and will therefor also change if the user toggles the dialog or\nif you use the `show()` and `close()` methods.",
              "reflects": true,
              "attribute": "open"
            },
            {
              "kind": "method",
              "name": "show",
              "privacy": "public",
              "description": "Programmatically opens the dialog.\nYou can also open the dialog by instead setting the `open` property to `true`."
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium'"
              },
              "default": "'medium'",
              "description": "`}",
              "attribute": "size",
              "reflects": true
            }
          ],
          "events": [
            {
              "name": "close",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `close`\nThis event is fired whenever the dialog is closed."
            },
            {
              "name": "toggle",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `toggle`\nThis event is fired whenever the dialog is opened or closed."
            }
          ],
          "attributes": [
            {
              "name": "close-button-label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Label for the close button.",
              "fieldName": "closeButtonLabel"
            },
            {
              "name": "heading",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The heading text of the dialog. This is displayed at the top of the dialog.",
              "fieldName": "heading"
            },
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Decides whether the dialog is open or closed.\nBy setting this property to true, the dialog will be shown. Setting it to false will close the dialog.\n\nThis property is reflected as an attribute and will therefor also change if the user toggles the dialog or\nif you use the `show()` and `close()` methods.",
              "fieldName": "open"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium'"
              },
              "default": "'medium'",
              "description": "`}",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-modal-dialog",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiModalDialogSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-modal-dialog'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiModalDialog",
            "module": "src/components/fhi-modal-dialog/fhi-modal-dialog.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiModalDialog",
          "declaration": {
            "name": "FhiModalDialog",
            "module": "src/components/fhi-modal-dialog/fhi-modal-dialog.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiModalDialogSelector",
          "declaration": {
            "name": "FhiModalDialogSelector",
            "module": "src/components/fhi-modal-dialog/fhi-modal-dialog.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/fhi-radio/fhi-radio.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Radio\n\nhttps://designsystem.fhi.no/?path=/docs/komponenter-radio--docs\n\nThe `<fhi-radio>` component represents a single radio button.\nIt should be used within a group of options, allowing users to select one option from a set.",
          "name": "FhiRadio",
          "members": [
            {
              "kind": "method",
              "name": "_dispatchChangeEvent",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "_dispatchInputEvent",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "_getRadioGroup",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_groupRoot",
              "type": {
                "text": "Document | HTMLFormElement"
              },
              "privacy": "private",
              "default": "document"
            },
            {
              "kind": "method",
              "name": "_handleChange",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleInput",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleKeyDown",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "_input",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_internals",
              "type": {
                "text": "ElementInternals"
              },
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_setFocusOnInput",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_SetTabbableRadios",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_updateFormValue",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "field",
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the radio button is checked or not.",
              "attribute": "checked"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the radio. This changes its appearance and makes it non-interactive.",
              "reflects": true,
              "attribute": "disabled"
            },
            {
              "kind": "field",
              "name": "formAssociated",
              "type": {
                "text": "boolean"
              },
              "static": true,
              "readonly": true,
              "default": "true"
            },
            {
              "kind": "method",
              "name": "formResetCallback",
              "privacy": "public",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The text label assigned to and displayed next to the radio.\nYou should always provide a label.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The name of the radio. This is submitted with the form data as a `key` when the checkbox is checked.\nAll `<fhi-radio>` components with the same name belong to the same group.",
              "reflects": true,
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "status",
              "type": {
                "text": "'error' | undefined"
              },
              "default": "undefined",
              "description": "Sets the visual status of the radio. There is currently only one status available: `error`.\nThe `error` status is used to indicate that there is an issue with the radio, such as a required radio not being checked.",
              "reflects": true,
              "attribute": "status"
            },
            {
              "kind": "method",
              "name": "uncheckGroupMembers",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "'on'",
              "description": "The value of the radio. This is submitted with the form data as a `value` when the radio is checked.",
              "attribute": "value"
            }
          ],
          "events": [
            {
              "name": "change",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `change`.\nThis event is dispatched when the radio is checked or unchecked."
            },
            {
              "name": "input",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `input`.\nThis event is dispatched when the radio is checked or unchecked."
            }
          ],
          "attributes": [
            {
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the radio button is checked or not.",
              "fieldName": "checked"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the radio. This changes its appearance and makes it non-interactive.",
              "fieldName": "disabled"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The text label assigned to and displayed next to the radio.\nYou should always provide a label.",
              "fieldName": "label"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The name of the radio. This is submitted with the form data as a `key` when the checkbox is checked.\nAll `<fhi-radio>` components with the same name belong to the same group.",
              "fieldName": "name"
            },
            {
              "name": "status",
              "type": {
                "text": "'error' | undefined"
              },
              "default": "undefined",
              "description": "Sets the visual status of the radio. There is currently only one status available: `error`.\nThe `error` status is used to indicate that there is an issue with the radio, such as a required radio not being checked.",
              "fieldName": "status"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "'on'",
              "description": "The value of the radio. This is submitted with the form data as a `value` when the radio is checked.",
              "fieldName": "value"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-radio",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiRadioSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-radio'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiRadio",
            "module": "src/components/fhi-radio/fhi-radio.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiRadio",
          "declaration": {
            "name": "FhiRadio",
            "module": "src/components/fhi-radio/fhi-radio.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiRadioSelector",
          "declaration": {
            "name": "FhiRadioSelector",
            "module": "src/components/fhi-radio/fhi-radio.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/fhi-tag/fhi-tag.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Tag\n\nhttps://designsystem.fhi.no/?path=/docs/komponenter-tag--docs\n\nThe `<fhi-tag>` component is used to create non-interactive tags in accordance with the FHI Design System guidelines.",
          "name": "FhiTag",
          "slots": [
            {
              "description": "The content of the tag. This should be pure text with, or without, an icon.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "method",
              "name": "_handleSlotChange",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "'neutral' | 'accent' | 'success' | 'warning' | 'danger' | 'info'"
              },
              "default": "'neutral'",
              "description": "Sets the color of the tag.",
              "reflects": true,
              "attribute": "color"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "'neutral' | 'accent' | 'success' | 'warning' | 'danger' | 'info'"
              },
              "default": "'neutral'",
              "description": "Sets the color of the tag.",
              "fieldName": "color"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-tag",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiTagSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-tag'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiTag",
            "module": "src/components/fhi-tag/fhi-tag.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiTag",
          "declaration": {
            "name": "FhiTag",
            "module": "src/components/fhi-tag/fhi-tag.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiTagSelector",
          "declaration": {
            "name": "FhiTagSelector",
            "module": "src/components/fhi-tag/fhi-tag.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/fhi-text-input/fhi-text-input.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Text Input\n\nhttps://designsystem.fhi.no/?path=/docs/komponenter-text-input--docs\n\nThe `<fhi-text-input>` component is used to collect user input in forms.\nIt provides a labeled input field with optional placeholder text, status indication, and a message area for additional information or validation feedback.",
          "name": "FhiTextInput",
          "members": [
            {
              "kind": "method",
              "name": "_dispatchChangeEvent",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "_dispatchInputEvent",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "field",
              "name": "_input",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_internals",
              "type": {
                "text": "ElementInternals"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_name",
              "type": {
                "text": "string | undefined"
              },
              "privacy": "private",
              "default": "undefined"
            },
            {
              "kind": "field",
              "name": "_value",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the input.  This changes its appearance and makes it non-interactive.",
              "reflects": true,
              "attribute": "disabled"
            },
            {
              "kind": "field",
              "name": "formAssociated",
              "type": {
                "text": "boolean"
              },
              "static": true,
              "readonly": true,
              "default": "true"
            },
            {
              "kind": "method",
              "name": "formResetCallback",
              "privacy": "public",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "handleChange",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleInput",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The message shown above the input field.\nThis is often used to provide additional information to the user.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The text that labels the input field.\nAn input field should always have a label to ensure accessibility.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "message",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The message shown beneath the input field.\nThis is often used to provide additional information or feedback to the user.",
              "attribute": "message"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "description": "The name of the input. This is submitted with the form data as a `key`.\n\nThis attribute conforms with the standard HTML `name` attribute for input fields.\nSee: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name",
              "reflects": true,
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "Sets the placeholder text for the input field.\nThis text is displayed when the input field is empty, providing a hint to the user about the expected input.",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Sets the input to read-only. A read-only field cannot be modified by the user but may be submitted with the form.",
              "reflects": true,
              "attribute": "readonly"
            },
            {
              "kind": "field",
              "name": "status",
              "type": {
                "text": "'error'"
              },
              "default": "undefined",
              "description": "Sets the visual status of the input. There is currently only one status available: `error`.\n\nThe `error` status is used to indicate that there is an issue with the input, such as invalid or missing data.",
              "reflects": true,
              "attribute": "status"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The default value of the input field.\n\nYou can fetch the current value of the text input by accessing this property directly on the component instance, or by listening for the `change` or `input` events which are dispatched whenever the value changes.\n\nThis attribute conforms with the standard HTML `value` attribute for input fields.\nSee: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#value",
              "attribute": "value"
            }
          ],
          "events": [
            {
              "name": "change",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `change`.\nThis event is dispatched when the value of the input changes."
            },
            {
              "name": "input",
              "type": {
                "text": "Event"
              },
              "description": "Standard DOM event with the type `input`.\nThis event is dispatched when the value of the input changes."
            }
          ],
          "attributes": [
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the input.  This changes its appearance and makes it non-interactive.",
              "fieldName": "disabled"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The message shown above the input field.\nThis is often used to provide additional information to the user.",
              "fieldName": "helpText"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The text that labels the input field.\nAn input field should always have a label to ensure accessibility.",
              "fieldName": "label"
            },
            {
              "name": "message",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "The message shown beneath the input field.\nThis is often used to provide additional information or feedback to the user.",
              "fieldName": "message"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "description": "The name of the input. This is submitted with the form data as a `key`.\n\nThis attribute conforms with the standard HTML `name` attribute for input fields.\nSee: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name",
              "fieldName": "name"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "undefined",
              "description": "Sets the placeholder text for the input field.\nThis text is displayed when the input field is empty, providing a hint to the user about the expected input.",
              "fieldName": "placeholder"
            },
            {
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Sets the input to read-only. A read-only field cannot be modified by the user but may be submitted with the form.",
              "fieldName": "readonly"
            },
            {
              "name": "status",
              "type": {
                "text": "'error'"
              },
              "default": "undefined",
              "description": "Sets the visual status of the input. There is currently only one status available: `error`.\n\nThe `error` status is used to indicate that there is an issue with the input, such as invalid or missing data.",
              "fieldName": "status"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The default value of the input field.\n\nYou can fetch the current value of the text input by accessing this property directly on the component instance, or by listening for the `change` or `input` events which are dispatched whenever the value changes.\n\nThis attribute conforms with the standard HTML `value` attribute for input fields.\nSee: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#value",
              "fieldName": "value"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-text-input",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiTextInputSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-text-input'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiTextInput",
            "module": "src/components/fhi-text-input/fhi-text-input.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiTextInput",
          "declaration": {
            "name": "FhiTextInput",
            "module": "src/components/fhi-text-input/fhi-text-input.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiTextInputSelector",
          "declaration": {
            "name": "FhiTextInputSelector",
            "module": "src/components/fhi-text-input/fhi-text-input.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/fhi-tooltip/fhi-tooltip.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Tooltip\n\nhttps://designsystem.fhi.no/?path=/docs/komponenter-tooltip--docs\n\nThe `<fhi-tooltip>` component provides contextual information when users hover over or focus on an element.\nIt is designed to enhance user experience by offering additional details without cluttering the interface.",
          "name": "FhiTooltip",
          "slots": [
            {
              "description": "The content that will trigger the tooltip.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "__handlePotentialEscapeKeyPress",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_anchor",
              "type": {
                "text": "HTMLElement"
              },
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_handleClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_handleMouseEnter",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_handleMouseLeave",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_handlePotentialClickOutside",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_hideTooltip",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_positionTooltip",
              "privacy": "private",
              "parameters": [
                {
                  "name": "placement",
                  "type": {
                    "text": "TooltipPlacement"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_showTooltip",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_tooltip",
              "type": {
                "text": "HTMLElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "delay",
              "type": {
                "text": "number"
              },
              "default": "500",
              "description": "The delay in milliseconds before the tooltip appears on hover.",
              "attribute": "delay"
            },
            {
              "kind": "field",
              "name": "maxWidth",
              "type": {
                "text": "string"
              },
              "default": "'18.75rem'",
              "description": "The maximum width of the tooltip.",
              "attribute": "max-width"
            },
            {
              "kind": "field",
              "name": "message",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The content displayed inside the tooltip. This should be a brief, informative message.",
              "attribute": "message"
            },
            {
              "kind": "field",
              "name": "placement",
              "type": {
                "text": "\"top\" | \"top-start\" | \"top-end\" | \"bottom\" | \"bottom-start\" | \"bottom-end\" | \"left\" | \"left-start\" | \"left-end\" | \"right\" | \"right-start\" | \"right-end\""
              },
              "default": "'top'",
              "description": "The placement of the tooltip relative to its trigger element.",
              "attribute": "placement"
            },
            {
              "kind": "field",
              "name": "trigger",
              "type": {
                "text": "'click' | 'hover'"
              },
              "default": "'hover'",
              "description": "The event that triggers the tooltip to show. Can be 'hover' or 'click'.",
              "attribute": "trigger"
            }
          ],
          "attributes": [
            {
              "name": "delay",
              "type": {
                "text": "number"
              },
              "default": "500",
              "description": "The delay in milliseconds before the tooltip appears on hover.",
              "fieldName": "delay"
            },
            {
              "name": "max-width",
              "type": {
                "text": "string"
              },
              "default": "'18.75rem'",
              "description": "The maximum width of the tooltip.",
              "fieldName": "maxWidth"
            },
            {
              "name": "message",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The content displayed inside the tooltip. This should be a brief, informative message.",
              "fieldName": "message"
            },
            {
              "name": "placement",
              "type": {
                "text": "\"top\" | \"top-start\" | \"top-end\" | \"bottom\" | \"bottom-start\" | \"bottom-end\" | \"left\" | \"left-start\" | \"left-end\" | \"right\" | \"right-start\" | \"right-end\""
              },
              "default": "'top'",
              "description": "The placement of the tooltip relative to its trigger element.",
              "fieldName": "placement"
            },
            {
              "name": "trigger",
              "type": {
                "text": "'click' | 'hover'"
              },
              "default": "'hover'",
              "description": "The event that triggers the tooltip to show. Can be 'hover' or 'click'.",
              "fieldName": "trigger"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-tooltip",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiTooltipSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-tooltip'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiTooltip",
            "module": "src/components/fhi-tooltip/fhi-tooltip.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiTooltip",
          "declaration": {
            "name": "FhiTooltip",
            "module": "src/components/fhi-tooltip/fhi-tooltip.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiTooltipSelector",
          "declaration": {
            "name": "FhiTooltipSelector",
            "module": "src/components/fhi-tooltip/fhi-tooltip.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-arrow-down-left.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconArrowDownLeft\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconArrowDownLeft",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-arrow-down-left",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconArrowDownLeftSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-arrow-down-left\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconArrowDownLeft",
            "module": "src/components/icons/fhi-icon-arrow-down-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowDownLeft",
          "declaration": {
            "name": "FhiIconArrowDownLeft",
            "module": "src/components/icons/fhi-icon-arrow-down-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowDownLeftSelector",
          "declaration": {
            "name": "FhiIconArrowDownLeftSelector",
            "module": "src/components/icons/fhi-icon-arrow-down-left.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-arrow-down-right.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconArrowDownRight\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconArrowDownRight",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-arrow-down-right",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconArrowDownRightSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-arrow-down-right\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconArrowDownRight",
            "module": "src/components/icons/fhi-icon-arrow-down-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowDownRight",
          "declaration": {
            "name": "FhiIconArrowDownRight",
            "module": "src/components/icons/fhi-icon-arrow-down-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowDownRightSelector",
          "declaration": {
            "name": "FhiIconArrowDownRightSelector",
            "module": "src/components/icons/fhi-icon-arrow-down-right.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-arrow-down.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconArrowDown\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconArrowDown",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-arrow-down",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconArrowDownSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-arrow-down\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconArrowDown",
            "module": "src/components/icons/fhi-icon-arrow-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowDown",
          "declaration": {
            "name": "FhiIconArrowDown",
            "module": "src/components/icons/fhi-icon-arrow-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowDownSelector",
          "declaration": {
            "name": "FhiIconArrowDownSelector",
            "module": "src/components/icons/fhi-icon-arrow-down.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-arrow-left.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconArrowLeft\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconArrowLeft",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-arrow-left",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconArrowLeftSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-arrow-left\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconArrowLeft",
            "module": "src/components/icons/fhi-icon-arrow-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowLeft",
          "declaration": {
            "name": "FhiIconArrowLeft",
            "module": "src/components/icons/fhi-icon-arrow-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowLeftSelector",
          "declaration": {
            "name": "FhiIconArrowLeftSelector",
            "module": "src/components/icons/fhi-icon-arrow-left.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-arrow-right-left.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconArrowRightLeft\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconArrowRightLeft",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-arrow-right-left",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconArrowRightLeftSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-arrow-right-left\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconArrowRightLeft",
            "module": "src/components/icons/fhi-icon-arrow-right-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowRightLeft",
          "declaration": {
            "name": "FhiIconArrowRightLeft",
            "module": "src/components/icons/fhi-icon-arrow-right-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowRightLeftSelector",
          "declaration": {
            "name": "FhiIconArrowRightLeftSelector",
            "module": "src/components/icons/fhi-icon-arrow-right-left.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-arrow-right.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconArrowRight\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconArrowRight",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-arrow-right",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconArrowRightSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-arrow-right\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconArrowRight",
            "module": "src/components/icons/fhi-icon-arrow-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowRight",
          "declaration": {
            "name": "FhiIconArrowRight",
            "module": "src/components/icons/fhi-icon-arrow-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowRightSelector",
          "declaration": {
            "name": "FhiIconArrowRightSelector",
            "module": "src/components/icons/fhi-icon-arrow-right.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-arrow-up-down.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconArrowUpDown\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconArrowUpDown",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-arrow-up-down",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconArrowUpDownSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-arrow-up-down\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconArrowUpDown",
            "module": "src/components/icons/fhi-icon-arrow-up-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowUpDown",
          "declaration": {
            "name": "FhiIconArrowUpDown",
            "module": "src/components/icons/fhi-icon-arrow-up-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowUpDownSelector",
          "declaration": {
            "name": "FhiIconArrowUpDownSelector",
            "module": "src/components/icons/fhi-icon-arrow-up-down.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-arrow-up-left.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconArrowUpLeft\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconArrowUpLeft",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-arrow-up-left",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconArrowUpLeftSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-arrow-up-left\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconArrowUpLeft",
            "module": "src/components/icons/fhi-icon-arrow-up-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowUpLeft",
          "declaration": {
            "name": "FhiIconArrowUpLeft",
            "module": "src/components/icons/fhi-icon-arrow-up-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowUpLeftSelector",
          "declaration": {
            "name": "FhiIconArrowUpLeftSelector",
            "module": "src/components/icons/fhi-icon-arrow-up-left.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-arrow-up-right.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconArrowUpRight\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconArrowUpRight",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-arrow-up-right",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconArrowUpRightSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-arrow-up-right\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconArrowUpRight",
            "module": "src/components/icons/fhi-icon-arrow-up-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowUpRight",
          "declaration": {
            "name": "FhiIconArrowUpRight",
            "module": "src/components/icons/fhi-icon-arrow-up-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowUpRightSelector",
          "declaration": {
            "name": "FhiIconArrowUpRightSelector",
            "module": "src/components/icons/fhi-icon-arrow-up-right.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-arrow-up.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconArrowUp\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconArrowUp",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-arrow-up",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconArrowUpSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-arrow-up\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconArrowUp",
            "module": "src/components/icons/fhi-icon-arrow-up.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowUp",
          "declaration": {
            "name": "FhiIconArrowUp",
            "module": "src/components/icons/fhi-icon-arrow-up.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconArrowUpSelector",
          "declaration": {
            "name": "FhiIconArrowUpSelector",
            "module": "src/components/icons/fhi-icon-arrow-up.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-bell.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconBell\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconBell",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-bell",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconBellSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-bell\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconBell",
            "module": "src/components/icons/fhi-icon-bell.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconBell",
          "declaration": {
            "name": "FhiIconBell",
            "module": "src/components/icons/fhi-icon-bell.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconBellSelector",
          "declaration": {
            "name": "FhiIconBellSelector",
            "module": "src/components/icons/fhi-icon-bell.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-calendar-clock.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCalendarClock\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCalendarClock",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-calendar-clock",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCalendarClockSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-calendar-clock\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCalendarClock",
            "module": "src/components/icons/fhi-icon-calendar-clock.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCalendarClock",
          "declaration": {
            "name": "FhiIconCalendarClock",
            "module": "src/components/icons/fhi-icon-calendar-clock.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCalendarClockSelector",
          "declaration": {
            "name": "FhiIconCalendarClockSelector",
            "module": "src/components/icons/fhi-icon-calendar-clock.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-calendar.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCalendar\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCalendar",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-calendar",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCalendarSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-calendar\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCalendar",
            "module": "src/components/icons/fhi-icon-calendar.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCalendar",
          "declaration": {
            "name": "FhiIconCalendar",
            "module": "src/components/icons/fhi-icon-calendar.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCalendarSelector",
          "declaration": {
            "name": "FhiIconCalendarSelector",
            "module": "src/components/icons/fhi-icon-calendar.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chart-bar-stacked.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChartBarStacked\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChartBarStacked",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chart-bar-stacked",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChartBarStackedSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chart-bar-stacked\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChartBarStacked",
            "module": "src/components/icons/fhi-icon-chart-bar-stacked.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartBarStacked",
          "declaration": {
            "name": "FhiIconChartBarStacked",
            "module": "src/components/icons/fhi-icon-chart-bar-stacked.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartBarStackedSelector",
          "declaration": {
            "name": "FhiIconChartBarStackedSelector",
            "module": "src/components/icons/fhi-icon-chart-bar-stacked.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chart-bar.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChartBar\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChartBar",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chart-bar",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChartBarSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chart-bar\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChartBar",
            "module": "src/components/icons/fhi-icon-chart-bar.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartBar",
          "declaration": {
            "name": "FhiIconChartBar",
            "module": "src/components/icons/fhi-icon-chart-bar.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartBarSelector",
          "declaration": {
            "name": "FhiIconChartBarSelector",
            "module": "src/components/icons/fhi-icon-chart-bar.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chart-column-stacked.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChartColumnStacked\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChartColumnStacked",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chart-column-stacked",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChartColumnStackedSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chart-column-stacked\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChartColumnStacked",
            "module": "src/components/icons/fhi-icon-chart-column-stacked.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartColumnStacked",
          "declaration": {
            "name": "FhiIconChartColumnStacked",
            "module": "src/components/icons/fhi-icon-chart-column-stacked.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartColumnStackedSelector",
          "declaration": {
            "name": "FhiIconChartColumnStackedSelector",
            "module": "src/components/icons/fhi-icon-chart-column-stacked.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chart-column.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChartColumn\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChartColumn",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chart-column",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChartColumnSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chart-column\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChartColumn",
            "module": "src/components/icons/fhi-icon-chart-column.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartColumn",
          "declaration": {
            "name": "FhiIconChartColumn",
            "module": "src/components/icons/fhi-icon-chart-column.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartColumnSelector",
          "declaration": {
            "name": "FhiIconChartColumnSelector",
            "module": "src/components/icons/fhi-icon-chart-column.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chart-line.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChartLine\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChartLine",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chart-line",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChartLineSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chart-line\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChartLine",
            "module": "src/components/icons/fhi-icon-chart-line.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartLine",
          "declaration": {
            "name": "FhiIconChartLine",
            "module": "src/components/icons/fhi-icon-chart-line.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartLineSelector",
          "declaration": {
            "name": "FhiIconChartLineSelector",
            "module": "src/components/icons/fhi-icon-chart-line.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chart-no-axes-combined.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChartNoAxesCombined\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChartNoAxesCombined",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chart-no-axes-combined",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChartNoAxesCombinedSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chart-no-axes-combined\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChartNoAxesCombined",
            "module": "src/components/icons/fhi-icon-chart-no-axes-combined.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartNoAxesCombined",
          "declaration": {
            "name": "FhiIconChartNoAxesCombined",
            "module": "src/components/icons/fhi-icon-chart-no-axes-combined.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartNoAxesCombinedSelector",
          "declaration": {
            "name": "FhiIconChartNoAxesCombinedSelector",
            "module": "src/components/icons/fhi-icon-chart-no-axes-combined.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chart-pie.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChartPie\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChartPie",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chart-pie",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChartPieSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chart-pie\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChartPie",
            "module": "src/components/icons/fhi-icon-chart-pie.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartPie",
          "declaration": {
            "name": "FhiIconChartPie",
            "module": "src/components/icons/fhi-icon-chart-pie.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChartPieSelector",
          "declaration": {
            "name": "FhiIconChartPieSelector",
            "module": "src/components/icons/fhi-icon-chart-pie.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-check.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCheck\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCheck",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-check",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCheckSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-check\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCheck",
            "module": "src/components/icons/fhi-icon-check.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCheck",
          "declaration": {
            "name": "FhiIconCheck",
            "module": "src/components/icons/fhi-icon-check.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCheckSelector",
          "declaration": {
            "name": "FhiIconCheckSelector",
            "module": "src/components/icons/fhi-icon-check.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chevron-down.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChevronDown\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChevronDown",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chevron-down",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChevronDownSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chevron-down\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChevronDown",
            "module": "src/components/icons/fhi-icon-chevron-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronDown",
          "declaration": {
            "name": "FhiIconChevronDown",
            "module": "src/components/icons/fhi-icon-chevron-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronDownSelector",
          "declaration": {
            "name": "FhiIconChevronDownSelector",
            "module": "src/components/icons/fhi-icon-chevron-down.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chevron-left.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChevronLeft\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChevronLeft",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chevron-left",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChevronLeftSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chevron-left\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChevronLeft",
            "module": "src/components/icons/fhi-icon-chevron-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronLeft",
          "declaration": {
            "name": "FhiIconChevronLeft",
            "module": "src/components/icons/fhi-icon-chevron-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronLeftSelector",
          "declaration": {
            "name": "FhiIconChevronLeftSelector",
            "module": "src/components/icons/fhi-icon-chevron-left.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chevron-right.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChevronRight\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChevronRight",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chevron-right",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChevronRightSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chevron-right\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChevronRight",
            "module": "src/components/icons/fhi-icon-chevron-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronRight",
          "declaration": {
            "name": "FhiIconChevronRight",
            "module": "src/components/icons/fhi-icon-chevron-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronRightSelector",
          "declaration": {
            "name": "FhiIconChevronRightSelector",
            "module": "src/components/icons/fhi-icon-chevron-right.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chevron-up.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChevronUp\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChevronUp",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chevron-up",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChevronUpSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chevron-up\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChevronUp",
            "module": "src/components/icons/fhi-icon-chevron-up.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronUp",
          "declaration": {
            "name": "FhiIconChevronUp",
            "module": "src/components/icons/fhi-icon-chevron-up.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronUpSelector",
          "declaration": {
            "name": "FhiIconChevronUpSelector",
            "module": "src/components/icons/fhi-icon-chevron-up.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chevrons-down.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChevronsDown\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChevronsDown",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chevrons-down",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChevronsDownSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chevrons-down\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChevronsDown",
            "module": "src/components/icons/fhi-icon-chevrons-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronsDown",
          "declaration": {
            "name": "FhiIconChevronsDown",
            "module": "src/components/icons/fhi-icon-chevrons-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronsDownSelector",
          "declaration": {
            "name": "FhiIconChevronsDownSelector",
            "module": "src/components/icons/fhi-icon-chevrons-down.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chevrons-left.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChevronsLeft\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChevronsLeft",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chevrons-left",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChevronsLeftSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chevrons-left\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChevronsLeft",
            "module": "src/components/icons/fhi-icon-chevrons-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronsLeft",
          "declaration": {
            "name": "FhiIconChevronsLeft",
            "module": "src/components/icons/fhi-icon-chevrons-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronsLeftSelector",
          "declaration": {
            "name": "FhiIconChevronsLeftSelector",
            "module": "src/components/icons/fhi-icon-chevrons-left.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chevrons-right.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChevronsRight\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChevronsRight",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chevrons-right",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChevronsRightSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chevrons-right\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChevronsRight",
            "module": "src/components/icons/fhi-icon-chevrons-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronsRight",
          "declaration": {
            "name": "FhiIconChevronsRight",
            "module": "src/components/icons/fhi-icon-chevrons-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronsRightSelector",
          "declaration": {
            "name": "FhiIconChevronsRightSelector",
            "module": "src/components/icons/fhi-icon-chevrons-right.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-chevrons-up.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconChevronsUp\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconChevronsUp",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-chevrons-up",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconChevronsUpSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-chevrons-up\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconChevronsUp",
            "module": "src/components/icons/fhi-icon-chevrons-up.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronsUp",
          "declaration": {
            "name": "FhiIconChevronsUp",
            "module": "src/components/icons/fhi-icon-chevrons-up.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconChevronsUpSelector",
          "declaration": {
            "name": "FhiIconChevronsUpSelector",
            "module": "src/components/icons/fhi-icon-chevrons-up.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-arrow-down.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleArrowDown\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleArrowDown",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-arrow-down",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleArrowDownSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-arrow-down\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleArrowDown",
            "module": "src/components/icons/fhi-icon-circle-arrow-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleArrowDown",
          "declaration": {
            "name": "FhiIconCircleArrowDown",
            "module": "src/components/icons/fhi-icon-circle-arrow-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleArrowDownSelector",
          "declaration": {
            "name": "FhiIconCircleArrowDownSelector",
            "module": "src/components/icons/fhi-icon-circle-arrow-down.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-arrow-left.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleArrowLeft\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleArrowLeft",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-arrow-left",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleArrowLeftSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-arrow-left\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleArrowLeft",
            "module": "src/components/icons/fhi-icon-circle-arrow-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleArrowLeft",
          "declaration": {
            "name": "FhiIconCircleArrowLeft",
            "module": "src/components/icons/fhi-icon-circle-arrow-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleArrowLeftSelector",
          "declaration": {
            "name": "FhiIconCircleArrowLeftSelector",
            "module": "src/components/icons/fhi-icon-circle-arrow-left.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-arrow-right.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleArrowRight\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleArrowRight",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-arrow-right",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleArrowRightSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-arrow-right\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleArrowRight",
            "module": "src/components/icons/fhi-icon-circle-arrow-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleArrowRight",
          "declaration": {
            "name": "FhiIconCircleArrowRight",
            "module": "src/components/icons/fhi-icon-circle-arrow-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleArrowRightSelector",
          "declaration": {
            "name": "FhiIconCircleArrowRightSelector",
            "module": "src/components/icons/fhi-icon-circle-arrow-right.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-arrow-up.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleArrowUp\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleArrowUp",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-arrow-up",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleArrowUpSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-arrow-up\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleArrowUp",
            "module": "src/components/icons/fhi-icon-circle-arrow-up.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleArrowUp",
          "declaration": {
            "name": "FhiIconCircleArrowUp",
            "module": "src/components/icons/fhi-icon-circle-arrow-up.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleArrowUpSelector",
          "declaration": {
            "name": "FhiIconCircleArrowUpSelector",
            "module": "src/components/icons/fhi-icon-circle-arrow-up.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-check-big.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleCheckBig\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleCheckBig",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-check-big",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleCheckBigSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-check-big\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleCheckBig",
            "module": "src/components/icons/fhi-icon-circle-check-big.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleCheckBig",
          "declaration": {
            "name": "FhiIconCircleCheckBig",
            "module": "src/components/icons/fhi-icon-circle-check-big.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleCheckBigSelector",
          "declaration": {
            "name": "FhiIconCircleCheckBigSelector",
            "module": "src/components/icons/fhi-icon-circle-check-big.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-check.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleCheck\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleCheck",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-check",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleCheckSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-check\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleCheck",
            "module": "src/components/icons/fhi-icon-circle-check.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleCheck",
          "declaration": {
            "name": "FhiIconCircleCheck",
            "module": "src/components/icons/fhi-icon-circle-check.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleCheckSelector",
          "declaration": {
            "name": "FhiIconCircleCheckSelector",
            "module": "src/components/icons/fhi-icon-circle-check.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-chevron-down.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleChevronDown\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleChevronDown",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-chevron-down",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleChevronDownSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-chevron-down\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleChevronDown",
            "module": "src/components/icons/fhi-icon-circle-chevron-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleChevronDown",
          "declaration": {
            "name": "FhiIconCircleChevronDown",
            "module": "src/components/icons/fhi-icon-circle-chevron-down.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleChevronDownSelector",
          "declaration": {
            "name": "FhiIconCircleChevronDownSelector",
            "module": "src/components/icons/fhi-icon-circle-chevron-down.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-chevron-left.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleChevronLeft\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleChevronLeft",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-chevron-left",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleChevronLeftSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-chevron-left\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleChevronLeft",
            "module": "src/components/icons/fhi-icon-circle-chevron-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleChevronLeft",
          "declaration": {
            "name": "FhiIconCircleChevronLeft",
            "module": "src/components/icons/fhi-icon-circle-chevron-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleChevronLeftSelector",
          "declaration": {
            "name": "FhiIconCircleChevronLeftSelector",
            "module": "src/components/icons/fhi-icon-circle-chevron-left.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-chevron-right.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleChevronRight\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleChevronRight",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-chevron-right",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleChevronRightSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-chevron-right\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleChevronRight",
            "module": "src/components/icons/fhi-icon-circle-chevron-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleChevronRight",
          "declaration": {
            "name": "FhiIconCircleChevronRight",
            "module": "src/components/icons/fhi-icon-circle-chevron-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleChevronRightSelector",
          "declaration": {
            "name": "FhiIconCircleChevronRightSelector",
            "module": "src/components/icons/fhi-icon-circle-chevron-right.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-chevron-up.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleChevronUp\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleChevronUp",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-chevron-up",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleChevronUpSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-chevron-up\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleChevronUp",
            "module": "src/components/icons/fhi-icon-circle-chevron-up.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleChevronUp",
          "declaration": {
            "name": "FhiIconCircleChevronUp",
            "module": "src/components/icons/fhi-icon-circle-chevron-up.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleChevronUpSelector",
          "declaration": {
            "name": "FhiIconCircleChevronUpSelector",
            "module": "src/components/icons/fhi-icon-circle-chevron-up.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-exclamation.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleExclamation\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleExclamation",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-exclamation",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleExclamationSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-exclamation\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleExclamation",
            "module": "src/components/icons/fhi-icon-circle-exclamation.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleExclamation",
          "declaration": {
            "name": "FhiIconCircleExclamation",
            "module": "src/components/icons/fhi-icon-circle-exclamation.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleExclamationSelector",
          "declaration": {
            "name": "FhiIconCircleExclamationSelector",
            "module": "src/components/icons/fhi-icon-circle-exclamation.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-info.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleInfo\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleInfo",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-info",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleInfoSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-info\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleInfo",
            "module": "src/components/icons/fhi-icon-circle-info.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleInfo",
          "declaration": {
            "name": "FhiIconCircleInfo",
            "module": "src/components/icons/fhi-icon-circle-info.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleInfoSelector",
          "declaration": {
            "name": "FhiIconCircleInfoSelector",
            "module": "src/components/icons/fhi-icon-circle-info.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-minus.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleMinus\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleMinus",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-minus",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleMinusSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-minus\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleMinus",
            "module": "src/components/icons/fhi-icon-circle-minus.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleMinus",
          "declaration": {
            "name": "FhiIconCircleMinus",
            "module": "src/components/icons/fhi-icon-circle-minus.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleMinusSelector",
          "declaration": {
            "name": "FhiIconCircleMinusSelector",
            "module": "src/components/icons/fhi-icon-circle-minus.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-plus.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCirclePlus\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCirclePlus",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-plus",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCirclePlusSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-plus\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCirclePlus",
            "module": "src/components/icons/fhi-icon-circle-plus.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCirclePlus",
          "declaration": {
            "name": "FhiIconCirclePlus",
            "module": "src/components/icons/fhi-icon-circle-plus.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCirclePlusSelector",
          "declaration": {
            "name": "FhiIconCirclePlusSelector",
            "module": "src/components/icons/fhi-icon-circle-plus.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-question.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleQuestion\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleQuestion",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-question",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleQuestionSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-question\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleQuestion",
            "module": "src/components/icons/fhi-icon-circle-question.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleQuestion",
          "declaration": {
            "name": "FhiIconCircleQuestion",
            "module": "src/components/icons/fhi-icon-circle-question.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleQuestionSelector",
          "declaration": {
            "name": "FhiIconCircleQuestionSelector",
            "module": "src/components/icons/fhi-icon-circle-question.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle-x.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircleX\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircleX",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle-x",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleXSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle-x\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircleX",
            "module": "src/components/icons/fhi-icon-circle-x.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleX",
          "declaration": {
            "name": "FhiIconCircleX",
            "module": "src/components/icons/fhi-icon-circle-x.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleXSelector",
          "declaration": {
            "name": "FhiIconCircleXSelector",
            "module": "src/components/icons/fhi-icon-circle-x.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-circle.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCircle\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCircle",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-circle",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCircleSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-circle\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCircle",
            "module": "src/components/icons/fhi-icon-circle.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircle",
          "declaration": {
            "name": "FhiIconCircle",
            "module": "src/components/icons/fhi-icon-circle.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCircleSelector",
          "declaration": {
            "name": "FhiIconCircleSelector",
            "module": "src/components/icons/fhi-icon-circle.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-clock.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconClock\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconClock",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-clock",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconClockSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-clock\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconClock",
            "module": "src/components/icons/fhi-icon-clock.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconClock",
          "declaration": {
            "name": "FhiIconClock",
            "module": "src/components/icons/fhi-icon-clock.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconClockSelector",
          "declaration": {
            "name": "FhiIconClockSelector",
            "module": "src/components/icons/fhi-icon-clock.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-copy.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconCopy\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconCopy",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-copy",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconCopySelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-copy\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconCopy",
            "module": "src/components/icons/fhi-icon-copy.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCopy",
          "declaration": {
            "name": "FhiIconCopy",
            "module": "src/components/icons/fhi-icon-copy.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconCopySelector",
          "declaration": {
            "name": "FhiIconCopySelector",
            "module": "src/components/icons/fhi-icon-copy.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-download.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconDownload\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconDownload",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-download",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconDownloadSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-download\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconDownload",
            "module": "src/components/icons/fhi-icon-download.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconDownload",
          "declaration": {
            "name": "FhiIconDownload",
            "module": "src/components/icons/fhi-icon-download.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconDownloadSelector",
          "declaration": {
            "name": "FhiIconDownloadSelector",
            "module": "src/components/icons/fhi-icon-download.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-ellipsis-vertical.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconEllipsisVertical\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconEllipsisVertical",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-ellipsis-vertical",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconEllipsisVerticalSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-ellipsis-vertical\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconEllipsisVertical",
            "module": "src/components/icons/fhi-icon-ellipsis-vertical.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconEllipsisVertical",
          "declaration": {
            "name": "FhiIconEllipsisVertical",
            "module": "src/components/icons/fhi-icon-ellipsis-vertical.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconEllipsisVerticalSelector",
          "declaration": {
            "name": "FhiIconEllipsisVerticalSelector",
            "module": "src/components/icons/fhi-icon-ellipsis-vertical.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-ellipsis.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconEllipsis\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconEllipsis",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-ellipsis",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconEllipsisSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-ellipsis\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconEllipsis",
            "module": "src/components/icons/fhi-icon-ellipsis.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconEllipsis",
          "declaration": {
            "name": "FhiIconEllipsis",
            "module": "src/components/icons/fhi-icon-ellipsis.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconEllipsisSelector",
          "declaration": {
            "name": "FhiIconEllipsisSelector",
            "module": "src/components/icons/fhi-icon-ellipsis.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-exclamation.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconExclamation\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconExclamation",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-exclamation",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconExclamationSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-exclamation\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconExclamation",
            "module": "src/components/icons/fhi-icon-exclamation.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconExclamation",
          "declaration": {
            "name": "FhiIconExclamation",
            "module": "src/components/icons/fhi-icon-exclamation.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconExclamationSelector",
          "declaration": {
            "name": "FhiIconExclamationSelector",
            "module": "src/components/icons/fhi-icon-exclamation.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-expand.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconExpand\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconExpand",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-expand",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconExpandSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-expand\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconExpand",
            "module": "src/components/icons/fhi-icon-expand.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconExpand",
          "declaration": {
            "name": "FhiIconExpand",
            "module": "src/components/icons/fhi-icon-expand.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconExpandSelector",
          "declaration": {
            "name": "FhiIconExpandSelector",
            "module": "src/components/icons/fhi-icon-expand.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-external-link.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconExternalLink\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconExternalLink",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-external-link",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconExternalLinkSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-external-link\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconExternalLink",
            "module": "src/components/icons/fhi-icon-external-link.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconExternalLink",
          "declaration": {
            "name": "FhiIconExternalLink",
            "module": "src/components/icons/fhi-icon-external-link.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconExternalLinkSelector",
          "declaration": {
            "name": "FhiIconExternalLinkSelector",
            "module": "src/components/icons/fhi-icon-external-link.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-eye-off.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconEyeOff\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconEyeOff",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-eye-off",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconEyeOffSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-eye-off\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconEyeOff",
            "module": "src/components/icons/fhi-icon-eye-off.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconEyeOff",
          "declaration": {
            "name": "FhiIconEyeOff",
            "module": "src/components/icons/fhi-icon-eye-off.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconEyeOffSelector",
          "declaration": {
            "name": "FhiIconEyeOffSelector",
            "module": "src/components/icons/fhi-icon-eye-off.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-eye.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconEye\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconEye",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-eye",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconEyeSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-eye\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconEye",
            "module": "src/components/icons/fhi-icon-eye.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconEye",
          "declaration": {
            "name": "FhiIconEye",
            "module": "src/components/icons/fhi-icon-eye.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconEyeSelector",
          "declaration": {
            "name": "FhiIconEyeSelector",
            "module": "src/components/icons/fhi-icon-eye.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-file.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconFile\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconFile",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-file",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconFileSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-file\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconFile",
            "module": "src/components/icons/fhi-icon-file.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconFile",
          "declaration": {
            "name": "FhiIconFile",
            "module": "src/components/icons/fhi-icon-file.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconFileSelector",
          "declaration": {
            "name": "FhiIconFileSelector",
            "module": "src/components/icons/fhi-icon-file.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-filter.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconFilter\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconFilter",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-filter",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconFilterSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-filter\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconFilter",
            "module": "src/components/icons/fhi-icon-filter.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconFilter",
          "declaration": {
            "name": "FhiIconFilter",
            "module": "src/components/icons/fhi-icon-filter.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconFilterSelector",
          "declaration": {
            "name": "FhiIconFilterSelector",
            "module": "src/components/icons/fhi-icon-filter.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-folder.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconFolder\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconFolder",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-folder",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconFolderSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-folder\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconFolder",
            "module": "src/components/icons/fhi-icon-folder.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconFolder",
          "declaration": {
            "name": "FhiIconFolder",
            "module": "src/components/icons/fhi-icon-folder.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconFolderSelector",
          "declaration": {
            "name": "FhiIconFolderSelector",
            "module": "src/components/icons/fhi-icon-folder.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-gear.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconGear\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconGear",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-gear",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconGearSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-gear\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconGear",
            "module": "src/components/icons/fhi-icon-gear.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconGear",
          "declaration": {
            "name": "FhiIconGear",
            "module": "src/components/icons/fhi-icon-gear.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconGearSelector",
          "declaration": {
            "name": "FhiIconGearSelector",
            "module": "src/components/icons/fhi-icon-gear.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-grid-9-dots.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconGrid9Dots\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconGrid9Dots",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-grid-9-dots",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconGrid9DotsSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-grid-9-dots\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconGrid9Dots",
            "module": "src/components/icons/fhi-icon-grid-9-dots.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconGrid9Dots",
          "declaration": {
            "name": "FhiIconGrid9Dots",
            "module": "src/components/icons/fhi-icon-grid-9-dots.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconGrid9DotsSelector",
          "declaration": {
            "name": "FhiIconGrid9DotsSelector",
            "module": "src/components/icons/fhi-icon-grid-9-dots.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-grip-horizontal.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconGripHorizontal\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconGripHorizontal",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-grip-horizontal",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconGripHorizontalSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-grip-horizontal\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconGripHorizontal",
            "module": "src/components/icons/fhi-icon-grip-horizontal.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconGripHorizontal",
          "declaration": {
            "name": "FhiIconGripHorizontal",
            "module": "src/components/icons/fhi-icon-grip-horizontal.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconGripHorizontalSelector",
          "declaration": {
            "name": "FhiIconGripHorizontalSelector",
            "module": "src/components/icons/fhi-icon-grip-horizontal.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-grip-vertical.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconGripVertical\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconGripVertical",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-grip-vertical",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconGripVerticalSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-grip-vertical\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconGripVertical",
            "module": "src/components/icons/fhi-icon-grip-vertical.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconGripVertical",
          "declaration": {
            "name": "FhiIconGripVertical",
            "module": "src/components/icons/fhi-icon-grip-vertical.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconGripVerticalSelector",
          "declaration": {
            "name": "FhiIconGripVerticalSelector",
            "module": "src/components/icons/fhi-icon-grip-vertical.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-history.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconHistory\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconHistory",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-history",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconHistorySelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-history\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconHistory",
            "module": "src/components/icons/fhi-icon-history.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconHistory",
          "declaration": {
            "name": "FhiIconHistory",
            "module": "src/components/icons/fhi-icon-history.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconHistorySelector",
          "declaration": {
            "name": "FhiIconHistorySelector",
            "module": "src/components/icons/fhi-icon-history.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-info.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconInfo\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconInfo",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-info",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconInfoSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-info\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconInfo",
            "module": "src/components/icons/fhi-icon-info.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconInfo",
          "declaration": {
            "name": "FhiIconInfo",
            "module": "src/components/icons/fhi-icon-info.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconInfoSelector",
          "declaration": {
            "name": "FhiIconInfoSelector",
            "module": "src/components/icons/fhi-icon-info.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-link-2-off.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconLink2Off\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconLink2Off",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-link-2-off",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconLink2OffSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-link-2-off\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconLink2Off",
            "module": "src/components/icons/fhi-icon-link-2-off.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLink2Off",
          "declaration": {
            "name": "FhiIconLink2Off",
            "module": "src/components/icons/fhi-icon-link-2-off.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLink2OffSelector",
          "declaration": {
            "name": "FhiIconLink2OffSelector",
            "module": "src/components/icons/fhi-icon-link-2-off.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-link-2.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconLink2\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconLink2",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-link-2",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconLink2Selector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-link-2\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconLink2",
            "module": "src/components/icons/fhi-icon-link-2.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLink2",
          "declaration": {
            "name": "FhiIconLink2",
            "module": "src/components/icons/fhi-icon-link-2.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLink2Selector",
          "declaration": {
            "name": "FhiIconLink2Selector",
            "module": "src/components/icons/fhi-icon-link-2.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-link.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconLink\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconLink",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-link",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconLinkSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-link\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconLink",
            "module": "src/components/icons/fhi-icon-link.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLink",
          "declaration": {
            "name": "FhiIconLink",
            "module": "src/components/icons/fhi-icon-link.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLinkSelector",
          "declaration": {
            "name": "FhiIconLinkSelector",
            "module": "src/components/icons/fhi-icon-link.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-lock-open.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconLockOpen\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconLockOpen",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-lock-open",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconLockOpenSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-lock-open\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconLockOpen",
            "module": "src/components/icons/fhi-icon-lock-open.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLockOpen",
          "declaration": {
            "name": "FhiIconLockOpen",
            "module": "src/components/icons/fhi-icon-lock-open.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLockOpenSelector",
          "declaration": {
            "name": "FhiIconLockOpenSelector",
            "module": "src/components/icons/fhi-icon-lock-open.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-lock.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconLock\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconLock",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-lock",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconLockSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-lock\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconLock",
            "module": "src/components/icons/fhi-icon-lock.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLock",
          "declaration": {
            "name": "FhiIconLock",
            "module": "src/components/icons/fhi-icon-lock.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLockSelector",
          "declaration": {
            "name": "FhiIconLockSelector",
            "module": "src/components/icons/fhi-icon-lock.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-log-in.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconLogIn\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconLogIn",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-log-in",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconLogInSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-log-in\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconLogIn",
            "module": "src/components/icons/fhi-icon-log-in.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLogIn",
          "declaration": {
            "name": "FhiIconLogIn",
            "module": "src/components/icons/fhi-icon-log-in.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLogInSelector",
          "declaration": {
            "name": "FhiIconLogInSelector",
            "module": "src/components/icons/fhi-icon-log-in.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-log-out.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconLogOut\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconLogOut",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-log-out",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconLogOutSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-log-out\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconLogOut",
            "module": "src/components/icons/fhi-icon-log-out.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLogOut",
          "declaration": {
            "name": "FhiIconLogOut",
            "module": "src/components/icons/fhi-icon-log-out.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconLogOutSelector",
          "declaration": {
            "name": "FhiIconLogOutSelector",
            "module": "src/components/icons/fhi-icon-log-out.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-mail.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconMail\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconMail",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-mail",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconMailSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-mail\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconMail",
            "module": "src/components/icons/fhi-icon-mail.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconMail",
          "declaration": {
            "name": "FhiIconMail",
            "module": "src/components/icons/fhi-icon-mail.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconMailSelector",
          "declaration": {
            "name": "FhiIconMailSelector",
            "module": "src/components/icons/fhi-icon-mail.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-map-pin.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconMapPin\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconMapPin",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-map-pin",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconMapPinSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-map-pin\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconMapPin",
            "module": "src/components/icons/fhi-icon-map-pin.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconMapPin",
          "declaration": {
            "name": "FhiIconMapPin",
            "module": "src/components/icons/fhi-icon-map-pin.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconMapPinSelector",
          "declaration": {
            "name": "FhiIconMapPinSelector",
            "module": "src/components/icons/fhi-icon-map-pin.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-menu.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconMenu\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconMenu",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-menu",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconMenuSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-menu\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconMenu",
            "module": "src/components/icons/fhi-icon-menu.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconMenu",
          "declaration": {
            "name": "FhiIconMenu",
            "module": "src/components/icons/fhi-icon-menu.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconMenuSelector",
          "declaration": {
            "name": "FhiIconMenuSelector",
            "module": "src/components/icons/fhi-icon-menu.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-message.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconMessage\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconMessage",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-message",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconMessageSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-message\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconMessage",
            "module": "src/components/icons/fhi-icon-message.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconMessage",
          "declaration": {
            "name": "FhiIconMessage",
            "module": "src/components/icons/fhi-icon-message.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconMessageSelector",
          "declaration": {
            "name": "FhiIconMessageSelector",
            "module": "src/components/icons/fhi-icon-message.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-minus.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconMinus\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconMinus",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-minus",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconMinusSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-minus\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconMinus",
            "module": "src/components/icons/fhi-icon-minus.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconMinus",
          "declaration": {
            "name": "FhiIconMinus",
            "module": "src/components/icons/fhi-icon-minus.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconMinusSelector",
          "declaration": {
            "name": "FhiIconMinusSelector",
            "module": "src/components/icons/fhi-icon-minus.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-octagon-alert.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconOctagonAlert\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconOctagonAlert",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-octagon-alert",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconOctagonAlertSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-octagon-alert\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconOctagonAlert",
            "module": "src/components/icons/fhi-icon-octagon-alert.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconOctagonAlert",
          "declaration": {
            "name": "FhiIconOctagonAlert",
            "module": "src/components/icons/fhi-icon-octagon-alert.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconOctagonAlertSelector",
          "declaration": {
            "name": "FhiIconOctagonAlertSelector",
            "module": "src/components/icons/fhi-icon-octagon-alert.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-paperclip.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconPaperclip\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconPaperclip",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-paperclip",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconPaperclipSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-paperclip\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconPaperclip",
            "module": "src/components/icons/fhi-icon-paperclip.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPaperclip",
          "declaration": {
            "name": "FhiIconPaperclip",
            "module": "src/components/icons/fhi-icon-paperclip.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPaperclipSelector",
          "declaration": {
            "name": "FhiIconPaperclipSelector",
            "module": "src/components/icons/fhi-icon-paperclip.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-pencil.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconPencil\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconPencil",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-pencil",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconPencilSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-pencil\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconPencil",
            "module": "src/components/icons/fhi-icon-pencil.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPencil",
          "declaration": {
            "name": "FhiIconPencil",
            "module": "src/components/icons/fhi-icon-pencil.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPencilSelector",
          "declaration": {
            "name": "FhiIconPencilSelector",
            "module": "src/components/icons/fhi-icon-pencil.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-phone.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconPhone\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconPhone",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-phone",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconPhoneSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-phone\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconPhone",
            "module": "src/components/icons/fhi-icon-phone.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPhone",
          "declaration": {
            "name": "FhiIconPhone",
            "module": "src/components/icons/fhi-icon-phone.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPhoneSelector",
          "declaration": {
            "name": "FhiIconPhoneSelector",
            "module": "src/components/icons/fhi-icon-phone.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-pin-off.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconPinOff\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconPinOff",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-pin-off",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconPinOffSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-pin-off\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconPinOff",
            "module": "src/components/icons/fhi-icon-pin-off.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPinOff",
          "declaration": {
            "name": "FhiIconPinOff",
            "module": "src/components/icons/fhi-icon-pin-off.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPinOffSelector",
          "declaration": {
            "name": "FhiIconPinOffSelector",
            "module": "src/components/icons/fhi-icon-pin-off.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-pin.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconPin\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconPin",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-pin",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconPinSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-pin\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconPin",
            "module": "src/components/icons/fhi-icon-pin.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPin",
          "declaration": {
            "name": "FhiIconPin",
            "module": "src/components/icons/fhi-icon-pin.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPinSelector",
          "declaration": {
            "name": "FhiIconPinSelector",
            "module": "src/components/icons/fhi-icon-pin.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-plus.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconPlus\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconPlus",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-plus",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconPlusSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-plus\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconPlus",
            "module": "src/components/icons/fhi-icon-plus.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPlus",
          "declaration": {
            "name": "FhiIconPlus",
            "module": "src/components/icons/fhi-icon-plus.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPlusSelector",
          "declaration": {
            "name": "FhiIconPlusSelector",
            "module": "src/components/icons/fhi-icon-plus.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-printer.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconPrinter\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconPrinter",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-printer",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconPrinterSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-printer\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconPrinter",
            "module": "src/components/icons/fhi-icon-printer.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPrinter",
          "declaration": {
            "name": "FhiIconPrinter",
            "module": "src/components/icons/fhi-icon-printer.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconPrinterSelector",
          "declaration": {
            "name": "FhiIconPrinterSelector",
            "module": "src/components/icons/fhi-icon-printer.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-question.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconQuestion\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconQuestion",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-question",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconQuestionSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-question\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconQuestion",
            "module": "src/components/icons/fhi-icon-question.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconQuestion",
          "declaration": {
            "name": "FhiIconQuestion",
            "module": "src/components/icons/fhi-icon-question.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconQuestionSelector",
          "declaration": {
            "name": "FhiIconQuestionSelector",
            "module": "src/components/icons/fhi-icon-question.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-refresh.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconRefresh\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconRefresh",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-refresh",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconRefreshSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-refresh\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconRefresh",
            "module": "src/components/icons/fhi-icon-refresh.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconRefresh",
          "declaration": {
            "name": "FhiIconRefresh",
            "module": "src/components/icons/fhi-icon-refresh.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconRefreshSelector",
          "declaration": {
            "name": "FhiIconRefreshSelector",
            "module": "src/components/icons/fhi-icon-refresh.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-rotate-left.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconRotateLeft\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconRotateLeft",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-rotate-left",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconRotateLeftSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-rotate-left\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconRotateLeft",
            "module": "src/components/icons/fhi-icon-rotate-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconRotateLeft",
          "declaration": {
            "name": "FhiIconRotateLeft",
            "module": "src/components/icons/fhi-icon-rotate-left.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconRotateLeftSelector",
          "declaration": {
            "name": "FhiIconRotateLeftSelector",
            "module": "src/components/icons/fhi-icon-rotate-left.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-rotate-right.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconRotateRight\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconRotateRight",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-rotate-right",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconRotateRightSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-rotate-right\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconRotateRight",
            "module": "src/components/icons/fhi-icon-rotate-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconRotateRight",
          "declaration": {
            "name": "FhiIconRotateRight",
            "module": "src/components/icons/fhi-icon-rotate-right.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconRotateRightSelector",
          "declaration": {
            "name": "FhiIconRotateRightSelector",
            "module": "src/components/icons/fhi-icon-rotate-right.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-search.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconSearch\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconSearch",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-search",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconSearchSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-search\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconSearch",
            "module": "src/components/icons/fhi-icon-search.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSearch",
          "declaration": {
            "name": "FhiIconSearch",
            "module": "src/components/icons/fhi-icon-search.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSearchSelector",
          "declaration": {
            "name": "FhiIconSearchSelector",
            "module": "src/components/icons/fhi-icon-search.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-send.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconSend\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconSend",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-send",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconSendSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-send\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconSend",
            "module": "src/components/icons/fhi-icon-send.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSend",
          "declaration": {
            "name": "FhiIconSend",
            "module": "src/components/icons/fhi-icon-send.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSendSelector",
          "declaration": {
            "name": "FhiIconSendSelector",
            "module": "src/components/icons/fhi-icon-send.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-share.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconShare\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconShare",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-share",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconShareSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-share\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconShare",
            "module": "src/components/icons/fhi-icon-share.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconShare",
          "declaration": {
            "name": "FhiIconShare",
            "module": "src/components/icons/fhi-icon-share.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconShareSelector",
          "declaration": {
            "name": "FhiIconShareSelector",
            "module": "src/components/icons/fhi-icon-share.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-sheet.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconSheet\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconSheet",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-sheet",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconSheetSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-sheet\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconSheet",
            "module": "src/components/icons/fhi-icon-sheet.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSheet",
          "declaration": {
            "name": "FhiIconSheet",
            "module": "src/components/icons/fhi-icon-sheet.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSheetSelector",
          "declaration": {
            "name": "FhiIconSheetSelector",
            "module": "src/components/icons/fhi-icon-sheet.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-square-check-big.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconSquareCheckBig\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconSquareCheckBig",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-square-check-big",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconSquareCheckBigSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-square-check-big\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconSquareCheckBig",
            "module": "src/components/icons/fhi-icon-square-check-big.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSquareCheckBig",
          "declaration": {
            "name": "FhiIconSquareCheckBig",
            "module": "src/components/icons/fhi-icon-square-check-big.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSquareCheckBigSelector",
          "declaration": {
            "name": "FhiIconSquareCheckBigSelector",
            "module": "src/components/icons/fhi-icon-square-check-big.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-square-check.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconSquareCheck\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconSquareCheck",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-square-check",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconSquareCheckSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-square-check\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconSquareCheck",
            "module": "src/components/icons/fhi-icon-square-check.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSquareCheck",
          "declaration": {
            "name": "FhiIconSquareCheck",
            "module": "src/components/icons/fhi-icon-square-check.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSquareCheckSelector",
          "declaration": {
            "name": "FhiIconSquareCheckSelector",
            "module": "src/components/icons/fhi-icon-square-check.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-square-pen.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconSquarePen\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconSquarePen",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-square-pen",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconSquarePenSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-square-pen\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconSquarePen",
            "module": "src/components/icons/fhi-icon-square-pen.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSquarePen",
          "declaration": {
            "name": "FhiIconSquarePen",
            "module": "src/components/icons/fhi-icon-square-pen.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSquarePenSelector",
          "declaration": {
            "name": "FhiIconSquarePenSelector",
            "module": "src/components/icons/fhi-icon-square-pen.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-square-x.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconSquareX\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconSquareX",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-square-x",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconSquareXSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-square-x\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconSquareX",
            "module": "src/components/icons/fhi-icon-square-x.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSquareX",
          "declaration": {
            "name": "FhiIconSquareX",
            "module": "src/components/icons/fhi-icon-square-x.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSquareXSelector",
          "declaration": {
            "name": "FhiIconSquareXSelector",
            "module": "src/components/icons/fhi-icon-square-x.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-square.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconSquare\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconSquare",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-square",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconSquareSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-square\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconSquare",
            "module": "src/components/icons/fhi-icon-square.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSquare",
          "declaration": {
            "name": "FhiIconSquare",
            "module": "src/components/icons/fhi-icon-square.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconSquareSelector",
          "declaration": {
            "name": "FhiIconSquareSelector",
            "module": "src/components/icons/fhi-icon-square.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-trash.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconTrash\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconTrash",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-trash",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconTrashSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-trash\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconTrash",
            "module": "src/components/icons/fhi-icon-trash.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconTrash",
          "declaration": {
            "name": "FhiIconTrash",
            "module": "src/components/icons/fhi-icon-trash.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconTrashSelector",
          "declaration": {
            "name": "FhiIconTrashSelector",
            "module": "src/components/icons/fhi-icon-trash.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-triangle-alert.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconTriangleAlert\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconTriangleAlert",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-triangle-alert",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconTriangleAlertSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-triangle-alert\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconTriangleAlert",
            "module": "src/components/icons/fhi-icon-triangle-alert.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconTriangleAlert",
          "declaration": {
            "name": "FhiIconTriangleAlert",
            "module": "src/components/icons/fhi-icon-triangle-alert.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconTriangleAlertSelector",
          "declaration": {
            "name": "FhiIconTriangleAlertSelector",
            "module": "src/components/icons/fhi-icon-triangle-alert.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-upload.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconUpload\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconUpload",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-upload",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconUploadSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-upload\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconUpload",
            "module": "src/components/icons/fhi-icon-upload.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconUpload",
          "declaration": {
            "name": "FhiIconUpload",
            "module": "src/components/icons/fhi-icon-upload.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconUploadSelector",
          "declaration": {
            "name": "FhiIconUploadSelector",
            "module": "src/components/icons/fhi-icon-upload.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-user.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconUser\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconUser",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-user",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconUserSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-user\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconUser",
            "module": "src/components/icons/fhi-icon-user.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconUser",
          "declaration": {
            "name": "FhiIconUser",
            "module": "src/components/icons/fhi-icon-user.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconUserSelector",
          "declaration": {
            "name": "FhiIconUserSelector",
            "module": "src/components/icons/fhi-icon-user.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/icons/fhi-icon-x.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FhiIconX\n\nhttps://designsystem.fhi.no/?path=/docs/ikoner--docs",
          "name": "FhiIconX",
          "members": [
            {
              "kind": "field",
              "name": "_size",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "default": "\"currentcolor\"",
              "description": "Sets the color for the icon.\nShould preferably be a color token. See [Color Tokens](https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs)",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'xsmall' | 'small' | 'medium' | 'large' | number | string"
              },
              "default": "'medium'",
              "description": "Sets the size of the icon. Can be one of the predefined sizes, a number value, rem or px.\nNumber values are treated as px.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-icon-x",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiIconXSelector",
          "type": {
            "text": "string"
          },
          "default": "\"fhi-icon-x\""
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiIconX",
            "module": "src/components/icons/fhi-icon-x.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconX",
          "declaration": {
            "name": "FhiIconX",
            "module": "src/components/icons/fhi-icon-x.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiIconXSelector",
          "declaration": {
            "name": "FhiIconXSelector",
            "module": "src/components/icons/fhi-icon-x.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/typography/fhi-body/fhi-body.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Body\n\nhttps://designsystem.fhi.no/?path=/story/komponenter-typography-body--preview\n\nThe `<fhi-body>` component is used to display body text in accordance with the FHI Design System guidelines.\nUse this component instead of the standard HTML paragraph element, `<p>`, to ensure consistent styling across your application.",
          "name": "FhiBody",
          "slots": [
            {
              "description": "The content of the fhi-body component. This should be pure text.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "description": "Sets color of the given text. It supports any valid CSS color value (e.g. hex, rgb, rgba, hsl, hsla, color names).\n\nIt is recommended to use Design Tokens for colors defined in the FHI Design System.\nSee: https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs\n\nExample:\n```html\n <fhi-body color=\"var(--fhi-color-primary-text-default)\">\n   This text will be in the primary text color.\n </fhi-body>\n```",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the font size of the given text.",
              "reflects": true,
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "description": "Sets color of the given text. It supports any valid CSS color value (e.g. hex, rgb, rgba, hsl, hsla, color names).\n\nIt is recommended to use Design Tokens for colors defined in the FHI Design System.\nSee: https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs\n\nExample:\n```html\n <fhi-body color=\"var(--fhi-color-primary-text-default)\">\n   This text will be in the primary text color.\n </fhi-body>\n```",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the font size of the given text.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-body",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiBodySelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-body'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiBody",
            "module": "src/components/typography/fhi-body/fhi-body.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiBody",
          "declaration": {
            "name": "FhiBody",
            "module": "src/components/typography/fhi-body/fhi-body.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiBodySelector",
          "declaration": {
            "name": "FhiBodySelector",
            "module": "src/components/typography/fhi-body/fhi-body.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/typography/fhi-display/fhi-display.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Display\n\nhttps://designsystem.fhi.no/?path=/story/komponenter-typography-display--preview\n\nThe `<fhi-display>` component is used to display large headline text in accordance with the FHI Design System guidelines.\nUse this component instead of the standard HTML heading elements, `<h1>` - `<h6>`, to ensure consistent styling across your application.",
          "name": "FhiDisplay",
          "slots": [
            {
              "description": "The content of the fhi-display component. This should be pure text.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "description": "Sets color of the given text. It supports any valid CSS color value (e.g. hex, rgb, rgba, hsl, hsla, color names).\n\nIt is recommended to use Design Tokens for colors defined in the FHI Design System.\nSee: https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs\n\nExample:\n```html\n <fhi-display color=\"var(--fhi-color-primary-text-default)\">\n   This text will be in the primary text color.\n </fhi-display>\n```",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "level",
              "type": {
                "text": "1 | 2 | 3 | 4 | 5 | 6"
              },
              "description": "Sets the heading level for the text, corresponding to HTML heading elements `<h1>` to `<h6>`.",
              "attribute": "level"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the font size of the given text.",
              "reflects": true,
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "description": "Sets color of the given text. It supports any valid CSS color value (e.g. hex, rgb, rgba, hsl, hsla, color names).\n\nIt is recommended to use Design Tokens for colors defined in the FHI Design System.\nSee: https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs\n\nExample:\n```html\n <fhi-display color=\"var(--fhi-color-primary-text-default)\">\n   This text will be in the primary text color.\n </fhi-display>\n```",
              "fieldName": "color"
            },
            {
              "name": "level",
              "type": {
                "text": "1 | 2 | 3 | 4 | 5 | 6"
              },
              "description": "Sets the heading level for the text, corresponding to HTML heading elements `<h1>` to `<h6>`.",
              "fieldName": "level"
            },
            {
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the font size of the given text.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-display",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiDisplaySelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-display'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiDisplay",
            "module": "src/components/typography/fhi-display/fhi-display.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiDisplay",
          "declaration": {
            "name": "FhiDisplay",
            "module": "src/components/typography/fhi-display/fhi-display.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiDisplaySelector",
          "declaration": {
            "name": "FhiDisplaySelector",
            "module": "src/components/typography/fhi-display/fhi-display.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/typography/fhi-headline/fhi-headline.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Headline\n\nhttps://designsystem.fhi.no/?path=/story/komponenter-typography-headline--preview\n\nThe `<fhi-headline>` component is used to display headline text in accordance with the FHI Design System guidelines.\nUse this component instead of the standard HTML heading elements, `<h1>` - `<h6>`, to ensure consistent styling across your application.",
          "name": "FhiHeadline",
          "slots": [
            {
              "description": "The content of the fhi-headline component. This should be pure text.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "description": "Sets color of the given text. It supports any valid CSS color value (e.g. hex, rgb, rgba, hsl, hsla, color names).\n\nIt is recommended to use Design Tokens for colors defined in the FHI Design System.\nSee: https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs\n\nExample:\n```html\n <fhi-headline color=\"var(--fhi-color-primary-text-default)\">\n   This text will be in the primary text color.\n </fhi-headline>\n```",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "level",
              "type": {
                "text": "1 | 2 | 3 | 4 | 5 | 6"
              },
              "description": "Sets the heading level for the text, corresponding to HTML heading elements `<h1>` to `<h6>`.",
              "attribute": "level"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the size of the text styles.",
              "reflects": true,
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "description": "Sets color of the given text. It supports any valid CSS color value (e.g. hex, rgb, rgba, hsl, hsla, color names).\n\nIt is recommended to use Design Tokens for colors defined in the FHI Design System.\nSee: https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs\n\nExample:\n```html\n <fhi-headline color=\"var(--fhi-color-primary-text-default)\">\n   This text will be in the primary text color.\n </fhi-headline>\n```",
              "fieldName": "color"
            },
            {
              "name": "level",
              "type": {
                "text": "1 | 2 | 3 | 4 | 5 | 6"
              },
              "description": "Sets the heading level for the text, corresponding to HTML heading elements `<h1>` to `<h6>`.",
              "fieldName": "level"
            },
            {
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the size of the text styles.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-headline",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiHeadlineSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-headline'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiHeadline",
            "module": "src/components/typography/fhi-headline/fhi-headline.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiHeadline",
          "declaration": {
            "name": "FhiHeadline",
            "module": "src/components/typography/fhi-headline/fhi-headline.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiHeadlineSelector",
          "declaration": {
            "name": "FhiHeadlineSelector",
            "module": "src/components/typography/fhi-headline/fhi-headline.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/typography/fhi-label/fhi-label.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Label\n\nhttps://designsystem.fhi.no/?path=/story/komponenter-typography-label--preview\n\nThe `<fhi-label>` component is used to display label text in accordance with the FHI Design System guidelines.\nUse this component instead of the standard HTML `<label>` element to ensure consistent styling across your application.",
          "name": "FhiLabel",
          "slots": [
            {
              "description": "The content of the fhi-label component. This should be pure text.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "description": "Sets color of the given text. It supports any valid CSS color value (e.g. hex, rgb, rgba, hsl, hsla, color names).\n\nIt is recommended to use Design Tokens for colors defined in the FHI Design System.\nSee: https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs\n\nExample:\n```html\n <fhi-label color=\"var(--fhi-color-primary-text-default)\">\n   This text will be in the primary text color.\n </fhi-label>\n```",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the font size of the given text.",
              "reflects": true,
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "description": "Sets color of the given text. It supports any valid CSS color value (e.g. hex, rgb, rgba, hsl, hsla, color names).\n\nIt is recommended to use Design Tokens for colors defined in the FHI Design System.\nSee: https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs\n\nExample:\n```html\n <fhi-label color=\"var(--fhi-color-primary-text-default)\">\n   This text will be in the primary text color.\n </fhi-label>\n```",
              "fieldName": "color"
            },
            {
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the font size of the given text.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-label",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiLabelSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-label'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiLabel",
            "module": "src/components/typography/fhi-label/fhi-label.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiLabel",
          "declaration": {
            "name": "FhiLabel",
            "module": "src/components/typography/fhi-label/fhi-label.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiLabelSelector",
          "declaration": {
            "name": "FhiLabelSelector",
            "module": "src/components/typography/fhi-label/fhi-label.component.ts"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/components/typography/fhi-title/fhi-title.component.ts",
      "declarations": [
        {
          "kind": "class",
          "description": "## FHI Title\n\nhttps://designsystem.fhi.no/?path=/story/komponenter-typography-title--preview\n\nThe `<fhi-title>` component is used to display title text in accordance with the FHI Design System guidelines.\nUse this component instead of the standard HTML heading elements, `<h1>` - `<h6>`, to ensure consistent styling across your application.",
          "name": "FhiTitle",
          "slots": [
            {
              "description": "The content of the fhi-title component. This should be pure text.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string"
              },
              "description": "Sets color of the given text. It supports any valid CSS color value (e.g. hex, rgb, rgba, hsl, hsla, color names).\n\nIt is recommended to use Design Tokens for colors defined in the FHI Design System.\nSee: https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs\n\nExample:\n```html\n <fhi-title color=\"var(--fhi-color-primary-text-default)\">\n   This text will be in the primary text color.\n </fhi-title>\n```",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "level",
              "type": {
                "text": "1 | 2 | 3 | 4 | 5 | 6"
              },
              "description": "Sets the heading level for the text, corresponding to HTML heading elements `<h1>` to `<h6>`.",
              "attribute": "level"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the size of the text styles.",
              "reflects": true,
              "attribute": "size"
            }
          ],
          "attributes": [
            {
              "name": "color",
              "type": {
                "text": "string"
              },
              "description": "Sets color of the given text. It supports any valid CSS color value (e.g. hex, rgb, rgba, hsl, hsla, color names).\n\nIt is recommended to use Design Tokens for colors defined in the FHI Design System.\nSee: https://designsystem.fhi.no/?path=/docs/design-tokens-farger--docs\n\nExample:\n```html\n <fhi-title color=\"var(--fhi-color-primary-text-default)\">\n   This text will be in the primary text color.\n </fhi-title>\n```",
              "fieldName": "color"
            },
            {
              "name": "level",
              "type": {
                "text": "1 | 2 | 3 | 4 | 5 | 6"
              },
              "description": "Sets the heading level for the text, corresponding to HTML heading elements `<h1>` to `<h6>`.",
              "fieldName": "level"
            },
            {
              "name": "size",
              "type": {
                "text": "'large' | 'medium' | 'small'"
              },
              "default": "'medium'",
              "description": "Sets the size of the text styles.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "fhi-title",
          "customElement": true
        },
        {
          "kind": "variable",
          "name": "FhiTitleSelector",
          "type": {
            "text": "string"
          },
          "default": "'fhi-title'"
        }
      ],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "",
          "declaration": {
            "name": "FhiTitle",
            "module": "src/components/typography/fhi-title/fhi-title.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiTitle",
          "declaration": {
            "name": "FhiTitle",
            "module": "src/components/typography/fhi-title/fhi-title.component.ts"
          }
        },
        {
          "kind": "js",
          "name": "FhiTitleSelector",
          "declaration": {
            "name": "FhiTitleSelector",
            "module": "src/components/typography/fhi-title/fhi-title.component.ts"
          }
        }
      ]
    }
  ]
}
