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