Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
370 Bytes
"use client"
import { forwardRef } from "react"
import { Square, type SquareProps } from "../square"
export interface CircleProps extends SquareProps {}
export const Circle = forwardRef<HTMLDivElement, SquareProps>(
function Circle(props, ref) {
const { size, ...rest } = props
return <Square size={size} ref={ref} borderRadius="9999px" {...rest} />
},
)