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