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