Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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;