fix: blog date and spinner default variant

This commit is contained in:
Junior Garcia 2025-02-18 18:47:40 -03:00
parent 149e6db8ea
commit 943dfdbd66

View File

@ -1,7 +1,7 @@
---
title: "HeroUI v2.7.0"
description: "New Toast component, NumberInput, Theme Generator, and lots of bug fixes and improvements."
date: "2025-02-19"
date: "2025-02-18"
image: "/blog/v2.7.0.jpg"
tags: ["heroui", "v2.7.0", "release", "toast", "improvements", "theme"]
author:
@ -232,7 +232,7 @@ import {HeroUIProvider} from "@heroui/react";
function App() {
return (
<HeroUIProvider spinnerVariant="simple">
{/* All components will use the dots spinner variant by default */}
{/* All components will use the "simple" spinner variant by default */}
</HeroUIProvider>
);
}