File size: 191 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import { Square } from "@chakra-ui/react"
export const SystemWithAnimation = () => {
return (
<Square size="40px" bg="tomato" animation="spin 2s infinite">
3
</Square>
)
}
|