Current section
Files
Jump to
Current section
Files
priv/catalogue/button/playground.ex
defmodule SurfaceBulma.Catalogue.Button.Playground do
use Surface.Catalogue.Playground,
subject: SurfaceBulma.Button,
catalogue: SurfaceBulma.Catalogue,
height: "110px",
container: {:div, class: "buttons is-centered"}
data props, :map,
default: %{
label: "My Button",
color: "success"
}
def render(assigns) do
~H"""
<Button :props={{ @props }} />
"""
end
end