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

Signature Pad

Signature pad / drawing canvas component for approvals or annotations.

Basic Usage


    <.signature_pad id="signature-pad" width={400} height={200} />
            

Custom Size


    <.signature_pad id="approval-signature" width={600} height={300} clear_label="Clear" />
            
""" end end