Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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;