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