atellmer / dark

The lightweight and powerful UI rendering engine without dependencies and written in TypeScript💫 (Browser, Node.js, Android, iOS, Windows, Linux, macOS)
MIT License
40 stars 1 forks source link

Styled props are rendered as attributes #68

Closed Coachonko closed 1 month ago

Coachonko commented 1 month ago
<StyledHeader
    isVisible={true}
    isAtTop={true}
>

Results in

<header isVisible isAtTop class="dk-gbhdaf dk-hcdaig dk-bhjaad">
atellmer commented 1 month ago

Use $

<StyledHeader
    $isVisible={true}
    $isAtTop={true}
/>
Coachonko commented 1 month ago

Oh! You're totally right.