- GitHub: [BonnierNews/dn-design-system/../web/src/components/pictogram](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/pictogram)
- Storybook: [Pictogram](https://designsystem.dn.se/?path=/docs/basic-pictogram--docs)
- Storybook (Latest): [Pictogram](https://designsystem-latest.dn.se/?path=/docs/basic-pictogram--docs)

----

# Pictogram

## Parameters

|parameter | type | required | options | default | description |
|:--- | :--- | :--- | :--- | :--- | :--- |
|variant| String | yes | brand, business, game | brand | Design variant |
|iconName | String | yes | add, arrow_back, arrow_forward etc | | For all available icons see: https://designsystem.dn.se/?path=/story/foundations-icons--all-icons |
|size| String | yes | small, large | small | |
|attributes | Object | no | | | Ex. { target: "_blank", "data-test": "lorem ipsum" } |
|classNames | String | no | | | Ex. "my-special-class" |
|forcePx | bool | no | true, false | false | Fixed pixel value is used for typography to prevent scaling based on html font-size |

## Minimum requirement example

### Nunjucks

These are copy paste friendly examples to quickliy get started using a component.

```html
{% from '@bonniernews/dn-design-system-web/components/pictogram/pictogram.njk' import Pictogram %}

{{ Pictogram({
  variant: "business",
  size: "small",
  iconName: "lock",
  attributes: { "aria-label": "Låst innehåll"}
})}}
```

### SCSS
```scss
@use "@bonniernews/dn-design-system-web/components/pictogram/pictogram";
```
