Solid
Changelog

@tw-classed/solid

1.4.0

Patch Changes

1.4.0-canary.5

Patch Changes

1.4.0-canary.1

Patch Changes

1.3.2-canary.0

Patch Changes

  • #70 (opens in a new tab) a5763359 (opens in a new tab) Thanks @sannajammeh (opens in a new tab)! - Add Solid.js library

    @tw-classed/solid is a library that allows you to create classed components in Solid.js. It has 1-1 API parity with @tw-classed/react, but with Solid specific internals. Follow the React guide to learn more about the API.

    import { classed } from "@tw-classed/solid";
     
    const Button = classed.button("bg-blue-500 text-white p-2 rounded");
     
    () => <Button>Click me</Button>;