Created
March 2, 2024 22:34
-
-
Save atakde/38f5123dc970cb7ead89e8614f28073b to your computer and use it in GitHub Desktop.
Termwind style example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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