@fefade/react
Version:
Reusable React UI components powered by the fefade core system.
8 lines (7 loc) • 475 B
TypeScript
import { GalleryItemType, HTMLAttrAnchor, ImageType } from '@fefade/core/types';
import { CSSProperties, ImgHTMLAttributes } from 'react';
type HTMLImageAttr = Omit<ImgHTMLAttributes<HTMLImageElement>, "src">;
interface Props extends HTMLImageAttr, GalleryItemType<CSSProperties, HTMLImageAttr>, HTMLAttrAnchor, ImageType {
}
declare const _default: import('react').ForwardRefExoticComponent<Props & import('react').RefAttributes<HTMLImageElement>>;
export default _default;