Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Image.d.ts 262B

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