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