UNPKG

react-tailwind-component-library

Version:
10 lines 382 B
import React from 'react'; export interface ImageProps extends React.ComponentPropsWithoutRef<'img'> { /** * Defines how much is the image rounded */ rounded?: 'default' | 'large' | 'full' | 'none'; } declare const Image: React.ForwardRefExoticComponent<ImageProps & React.RefAttributes<HTMLImageElement>>; export default Image; //# sourceMappingURL=Image.d.ts.map