Current section
Files
Jump to
Current section
Files
priv/catalogue/button/example03.ex
defmodule SurfaceBulma.Catalogue.Button.Example03 do
@moduledoc """
"""
use Surface.Catalogue.Example,
subject: SurfaceBulma.Button,
catalogue: SurfaceBulma.Catalogue,
title: "Outlined, Rounded and Loading",
height: "90px",
code_perc: 65,
container: {:div, class: "buttons"}
def render(assigns) do
~F"""
<Button color="info" outlined rounded>Outlined</Button>
<Button color="primary" rounded>Rounded</Button>
<Button color="danger" rounded loading>Loading</Button>
"""
end
end