Escape Hatch
Typewind provides an escape hatch as well, which directly adds the given string to the output. This is not recommended, but can be useful in some cases (opens in a new tab).
import { tw } from 'typewind';
export default function App() {
return (
<button className={tw.raw("bg-blue-500")}>Click Me</button>
);
}
<button className="bg-blue-500">Click Me</button>
For more reference, checkout the Tailwind Docs for Arbitrary Values (opens in a new tab).