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