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