UNPKG

@onesy/ui-react

Version:
13 lines (12 loc) 404 B
import React from 'react'; import { IBaseElement, IVersion, IElevation } from '../types'; export declare type ICardImage = IBaseElement & { version?: IVersion; elevation?: IElevation; alt?: string; image?: string; shape?: 'all' | 'none' | 'top' | 'left' | 'bottom' | 'right'; marginHorizontal?: boolean; }; declare const CardImage: React.FC<ICardImage>; export default CardImage;