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