defmodule MoonWeb.Examples.Design.SnackbarExample.Customization do @moduledoc false use Moon.StatelessComponent use MoonWeb, :example alias Moon.Design.Snackbar alias Moon.Design.Button def render(assigns) do ~F""" Custom border radius Custom background color Custom width Applying light theme Applying dark theme Custom fonts Even more custom fonts """ end def code() do """ alias Moon.Design.Snackbar alias Moon.Design.Button ... Custom border radius Custom background color Custom width Applying light theme Applying dark theme Custom fonts Even more custom fonts """ end end