UNPKG

@getcronit/pylon

Version:

![Pylon cover](https://github.com/user-attachments/assets/c28e49b2-5672-4849-826e-8b2eab0360cc)

23 lines (22 loc) 513 B
import React from 'react'; interface ImageValuesProps { src: string | PylonBuildSrc; alt?: string; className?: string; width?: number; height?: number; blurDataURL?: string; } export interface ImageProps extends Omit<ImageValuesProps, 'src'> { src: string; fill?: boolean; style?: React.CSSProperties; } interface PylonBuildSrc { url: string; width?: number; height?: number; blurDataURL?: string; } export declare const Image: React.FC<ImageProps>; export {};