import * as React from 'react'; export interface Heart64Props extends React.SVGProps { ariaLabel?: string } export default function Heart64({ ariaLabel, ...props }: Heart64Props) { return ( ); }