anvil/striker-ui/types/ButtonImageProps.d.ts

5 lines
154 B
TypeScript
Raw Normal View History

2021-02-19 05:18:44 +00:00
import { ImageProps } from 'next/image';
type ButtonImageProps = Omit<ImageProps, 'width' | 'height'> &
Partial<Pick<ImageProps, 'width' | 'height'>>;