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