Skip to content

Using

Using the styled system

import { css } from "@sandwich-ui/core/css";
function Example() {
return (
`<p class="${css({ fontSize: "lg" })}">Lorem ipsum</p>`
);
}

Using a recipe

import { ButtonRecipe } from "@sandwich-ui/core/recipes";
function Example() {
return (
`<button class="${ButtonRecipe()}">Click me</button>`
);
}