import { PlantIcon } from "@phosphor-icons/react";
import type { Meta, StoryObj } from "@storybook/react-vite";
import { Logo } from "../react";
import styles from "../styles.module.css";
const meta = {
id: "designsystem-logo",
// TODO: Hide keywords-hack with wide spaces:
// "Designsystem/Logo \u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000}\u{3000} symbol ikon",
title: "Designsystem/Logo",
parameters: {
layout: "fullscreen",
},
decorators: [
(Story) => (
),
],
} satisfies Meta;
export default meta;
type Story = StoryObj;
export const Default: Story = {
render: () => ,
};
export const React: Story = {
render: () => (
<>
Helse
sertifikat
Servering
Digiplant
>
),
};
export const WithEnvironment: Story = {
render: () => ,
};
export const WithEnvironmentBlue: Story = {
render: () => (
),
};
export const WithSubbrand: Story = {
render: () => (
Helse
sertifikat
),
};
export const WithSubbrandEnglish: Story = {
render: () => (
Sanitary certificate status
),
};
export const WithSubbrandEnvironment: Story = {
render: () => (
Servering
),
};
export const WithSubbrandEnvironmentBlue: Story = {
render: () => (
Sanitary certificate status
),
};
export const WithAppIcon: Story = {
render: () => (
Digiplant
),
};
export const WithAppIconEnvironment: Story = {
render: () => (
Digiplant
),
};
export const WithAppIconEnvironmentBlue: Story = {
render: () => (
Digiplant
),
};