Commit f2c48aff authored by Phạm Quang Bảo's avatar Phạm Quang Bảo

update/home_page

parent a9a4088f
This diff is collapsed.
......@@ -5,3 +5,4 @@ export { Badge } from './badge'
export { Card } from './card'
export { Icons } from './icons'
export { cn } from './utils'
export { Spinner } from './spinner'
import { LoaderIcon } from "lucide-react"
import { cn } from "@/lib/utils"
function Spinner({ className, ...props }: React.ComponentProps<"svg">) {
return (
<LoaderIcon
role="status"
aria-label="Loading"
className={cn("size-4 animate-spin", className)}
{...props}
/>
)
}
export { Spinner }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment