# Spinner reference: [https://flowbite.com/docs/components/spinner/](https://flowbite.com/docs/components/spinner/) ## Basic example ```vue ``` ## Prop - size ```typescript defineProps({ size: { type: String, // any string for w-${size} and h-${size} tailwind classes default: '4', }, }) ``` ```vue ```