Tabs used for internal navigation. Every tab inherits the `Button` styles.

Pass `items` to render tabs with active rendering. When using next.js, remember to pass the `Link` component.

```js
<Tabs active="foo" items={[{ id: "foo", children: "Foo", href: "#foo" }, { id: "bar", children: "Bar", href: "#bar" }, { id: "baz", children: "Baz", href: "#baz" }]} />
```
