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