Files
2026-02-05 17:31:20 +00:00

10 lines
305 B
TypeScript

import React from 'react';
export interface CellularSignal1Props extends React.SVGProps<SVGSVGElement> {
size?: number | string;
className?: string;
}
export declare const CellularSignal1: {
({ size, className, ...props }: CellularSignal1Props): React.JSX.Element;
displayName: string;
};