5 lines
154 B
TypeScript
5 lines
154 B
TypeScript
import { ImageProps } from 'next/image';
|
|
|
|
type ButtonImageProps = Omit<ImageProps, 'width' | 'height'> &
|
|
Partial<Pick<ImageProps, 'width' | 'height'>>;
|