# `Plushie.Type.Float`
[🔗](https://github.com/plushie-ui/plushie-elixir/blob/v0.7.2/lib/plushie/type/float.ex#L1)

Numeric type. Accepts both integers and floats (any `number()`).

Integers are accepted without coercion so that `size: 14` works
without requiring `14.0`. Supports `:min` and `:max` field
constraints:

    field :opacity, :float, min: 0.0, max: 1.0

# `t`

```elixir
@type t() :: number()
```

---

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