import type { SVGProps } from "react"; export interface MotifStarburstProps extends SVGProps { /** * Icon size (width and height) * @default 16 */ size?: number | string; } /** * Brand motif — eight-pointed starburst shape * Part of the BrightLocal brand motif set (circle, sparkle, sunrise, starburst) * * Also used in the Loading animation as the STAR_BURST morph shape. * * @example * * */ export const MotifStarburst = ({ size = 16, ...props }: MotifStarburstProps) => ( );