import type { SVGProps } from "react"; export interface MotifSparkleProps extends SVGProps { /** * Icon size (width and height) * @default 16 */ size?: number | string; } /** * Brand motif — four-pointed sparkle shape * Part of the BrightLocal brand motif set (circle, sparkle, sunrise, starburst) * * Used for AI/magic/highlight decorations across the product. * Also used in the Loading animation as the STAR_PATH morph shape. * * @example * * */ export const MotifSparkle = ({ size = 16, ...props }: MotifSparkleProps) => ( );