Transforms any text into a GitHub-style commits grid, visually representing the text as contribution blocks.
import * as React from "react" import { CommitsGrid } from "@/components/ui/commits-grid" const CommitsGridDemo = () => { return <CommitsGrid text="21st" /> } export { CommitsGridDemo }