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