MCPcopy Create free account
hub / github.com/untitleduico/react / Circle

Function Circle

components/shared-assets/background-patterns/circle.tsx:6–11  ·  view source on GitHub ↗
(props: Omit<SVGProps<SVGSVGElement>, "size"> & { size?: "sm" | "md" | "lg" })

Source from the content-addressed store, hash-verified

4import { cx } from "@/utils/cx";
5
6export const Circle = (props: Omit<SVGProps<SVGSVGElement>, "size"> & { size?: "sm" | "md" | "lg" }) => {
7 const { size = "lg", className } = props;
8 const Pattern = sizes[size];
9
10 return <Pattern className={className} />;
11};
12
13const lg = (props: SVGProps<SVGSVGElement>) => {
14 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected