import type { SVGProps } from "react"; export interface MotifCircleProps extends SVGProps { /** * Icon size (width and height) * @default 16 */ size?: number | string; } /** * Brand motif — filled circle shape * Part of the BrightLocal brand motif set (circle, sparkle, sunrise, starburst) * * @example * * */ export const MotifCircle = ({ size = 16, ...props }: MotifCircleProps) => ( );