anvil/striker-ui/types/ButtonImageProps.d.ts
2021-06-04 12:11:48 -04:00

5 lines
154 B
TypeScript

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