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