defmodule Boxicon.RegularVial do use Surface.Component @doc "Name as described in https://boxicons.com/" prop name, :string, required: true @doc "Width & height of the icon" prop size, :integer, default: 24 @doc "CSS classes for the wrapping svg element" prop class, :string, default: "" @impl true def render(assigns) do ~F""" """ end end