Dashboard sipadu mbip
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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;