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