# `Plushie.Canvas.Svg`
[🔗](https://github.com/plushie-ui/plushie-elixir/blob/v0.7.2/lib/plushie/canvas/svg.ex#L1)

Canvas SVG element with position and size.

# `option`

```elixir
@type option() ::
  ((({:source, String.t() | atom()} | {:x, number()}) | {:y, number()})
   | {:w, number()})
  | {:h, number()}
```

# `t`

```elixir
@type t() :: %Plushie.Canvas.Svg{
  h:
    number()
    | Plushie.Animation.Transition.t()
    | Plushie.Animation.Spring.t()
    | Plushie.Animation.Sequence.t()
    | nil,
  id: String.t() | nil,
  source:
    (String.t() | atom())
    | Plushie.Animation.Transition.t()
    | Plushie.Animation.Spring.t()
    | Plushie.Animation.Sequence.t()
    | nil,
  w:
    number()
    | Plushie.Animation.Transition.t()
    | Plushie.Animation.Spring.t()
    | Plushie.Animation.Sequence.t()
    | nil,
  x:
    number()
    | Plushie.Animation.Transition.t()
    | Plushie.Animation.Spring.t()
    | Plushie.Animation.Sequence.t()
    | nil,
  y:
    number()
    | Plushie.Animation.Transition.t()
    | Plushie.Animation.Spring.t()
    | Plushie.Animation.Sequence.t()
    | nil
}
```

# `build`

```elixir
@spec build(widget :: t()) :: Plushie.Widget.ui_node()
```

Converts this widget struct to a `ui_node()` map.

# `h`

```elixir
@spec h(widget :: t(), value :: number() | nil) :: t()
```

Height in pixels.

Accepts `number()`.

# `new`

# `new`

Creates a new element without an explicit ID (auto-assigned by parent container).

# `new`

Creates a new element with the given ID, positional args, and keyword options.

# `source`

```elixir
@spec source(widget :: t(), value :: (String.t() | atom()) | nil) :: t()
```

Path to the SVG file.

Accepts `String.t() | atom()`.

# `type_name`

```elixir
@spec type_name() :: String.t()
```

Returns the element type string for the wire protocol.

# `w`

```elixir
@spec w(widget :: t(), value :: number() | nil) :: t()
```

Width in pixels.

Accepts `number()`.

# `with_options`

```elixir
@spec with_options(widget :: t(), opts :: [option()]) :: t()
```

Applies keyword options to an existing widget struct.

# `x`

```elixir
@spec x(widget :: t(), value :: number() | nil) :: t()
```

X position in pixels.

Accepts `number()`.

# `y`

```elixir
@spec y(widget :: t(), value :: number() | nil) :: t()
```

Y position in pixels.

Accepts `number()`.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
