zachdaniel / tails

Utilities for working with tailwind classes, like semantic merge, and conditional class lists.
MIT License
85 stars 9 forks source link

Tails.classes/1 removes the space in a class list with `rounded` #23

Closed axelclark closed 5 months ago

axelclark commented 5 months ago

Describe the bug When I pass in a string "px-2 rounded", Tails.classes/1 removes the space.

To Reproduce

iex(8)> Tails.classes(["px-2 rounded"])
"px-2rounded"

Expected behavior

iex(8)> Tails.classes(["px-2 rounded"])
"px-2 rounded"

Runtime

axelclark commented 5 months ago

Duplicate of https://github.com/zachdaniel/tails/pull/22