Skip to content

Description

A ready to use DNB or Sbanken logo in SVG format.

Demos

Logo with dynamic height

The height will be set based on the inherited font-size.

<span style={{ fontSize: '6rem' }}>
<Logo size="auto" />
</span>

Logo with dynamic height

The height will be set based on the parent, inherited height.

<span style={{ height: '6rem' }}>
<Logo size="inherit" />
</span>

Logo with fixed height

<Logo height="96" />

Logo and inherit color

The color will be set based on the parent, inherited color by using currentColor.

<span style={{ color: 'tomato' }}>
<Logo height="96" inherit_color />
</span>