defmodule PyrauiWeb.DocsLive.CheckboxDocs do use PyrauiWeb, :html def render(assigns) do ~H"""

Checkbox

Checkbox component with label and validation support.

Examples


    <.checkbox label="Accept terms" />
    <.checkbox label="Subscribe" checked={true} />
    <.checkbox label="Required" required={true} />
            
""" end end