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 radiusCustom background colorCustom widthApplying light themeApplying dark themeCustom fontsEven more custom fonts
"""
end
def code() do
"""
alias Moon.Design.Snackbar
alias Moon.Design.Button
...
Custom border radiusCustom background colorCustom widthApplying light themeApplying dark themeCustom fontsEven more custom fonts
"""
end
end