import { mergeProps } from 'solid-js' import { HslColor } from '../../types' interface Props { hsl?: HslColor } export default function GooglePointerCircle(_props: Props) { const props = mergeProps({ hsl: { a: 1, h: 249.94, l: 0.2, s: 0.5 } }, _props) return (
) }