UNPKG

262 BTypeScriptView Raw
1import { BsPrefixComponent } from './helpers';
2
3export interface ImageProps {
4 fluid?: boolean;
5 rounded?: boolean;
6 roundedCircle?: boolean;
7 thumbnail?: boolean;
8}
9
10declare class Image extends BsPrefixComponent<'img', ImageProps> {}
11
12export default Image;