"use client" import { forwardRef } from "react" import { Square, type SquareProps } from "../square" export interface CircleProps extends SquareProps {} export const Circle = forwardRef( function Circle(props, ref) { const { size, ...rest } = props return }, )