main
Last change
on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
443 bytes
|
Line | |
---|
1 | import { LazyLoadImageProps } from 'react-lazy-load-image-component';
|
---|
2 | // @mui
|
---|
3 | import { BoxProps } from '@mui/material/Box';
|
---|
4 |
|
---|
5 | // ----------------------------------------------------------------------
|
---|
6 |
|
---|
7 | export type ImageRatio = '4/3' | '3/4' | '6/4' | '4/6' | '16/9' | '9/16' | '21/9' | '9/21' | '1/1';
|
---|
8 |
|
---|
9 | export type ImageProps = BoxProps &
|
---|
10 | LazyLoadImageProps & {
|
---|
11 | overlay?: string;
|
---|
12 | ratio?: ImageRatio;
|
---|
13 | disabledEffect?: boolean;
|
---|
14 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.