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