import React, { ReactElement, SVGProps } from 'react' export default function Hearts( props: JSX.IntrinsicAttributes & SVGProps, ): ReactElement { const speed = Number(String(props.speed ?? 1)) const fill = props.fill ?? '#fff' const stroke = props.stroke const fillOpacity = props.fillOpacity return ( ) }