defmodule Moon.Assets.Patterns.PatternWave do @moduledoc false use MoonIcons.StatelessComponent prop(click, :event) prop(class, :string) # All the other props below are deprecated! # Please use only tailwind classes and the class prop prop(color, :string, values: colors()) prop(height, :string) prop(width, :string) prop(font_size, :string) prop(vertical_align, :string) def render(assigns) do ~F""" """ end end