mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
import { BsPrefixComponent } from './helpers';
|
|
|
|
export interface ImageProps {
|
|
fluid?: boolean;
|
|
rounded?: boolean;
|
|
roundedCircle?: boolean;
|
|
thumbnail?: boolean;
|
|
}
|
|
|
|
declare class Image extends BsPrefixComponent<'img', ImageProps> {}
|
|
|
|
export default Image;
|