Button

Example Button

<x-tall-button tag="a" :href="route('someroute')" text="Click here" color="blue" />
<x-tall-button type="submit" text="Submit" size="xl" color="green" />

properties with default values and options

@props([
    'tag' => 'button', //or a
    'size' => 'md', //options: xs, sm, md, lg, xl
    'type' => 'button', //or submit
    'icon' => null, //string
    'text' => null, //string
    'color' => 'indigo', //options: white, indigo, blue, green, yellow, red, gray, orange, teal
])

The theme file contains styling for buttons. Search for /* buttons */ and tf-btn...

Last updated