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