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