react-tailwind-component-library
Version:
React component library powered by TailwindCss
10 lines • 382 B
TypeScript
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