Skip to content

Instantly share code, notes, and snippets.

@atakde
Created March 2, 2024 22:34
Show Gist options
  • Save atakde/38f5123dc970cb7ead89e8614f28073b to your computer and use it in GitHub Desktop.
Save atakde/38f5123dc970cb7ead89e8614f28073b to your computer and use it in GitHub Desktop.
Termwind style example
<?php
require 'vendor/autoload.php';
use function Termwind\{render};
use function Termwind\{style};
style('my-btn')->apply('bg-blue', 'text-black');
render(<<<HTML
<button class="my-btn p-8">
Click me
</button>
HTML);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment