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

10 lines
305 B
TypeScript

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