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

10 lines
290 B
TypeScript

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