import { useProviderContext } from ".."; import { IImage } from "./types"; import { Image, ConfigProvider } from 'antd'; import { Locale } from "antd/es/locale"; export default function (props: IImage) { const prefixCls = useProviderContext().getPrefixCls('assets-preview-image'); const { width = 1, height = 1, src } = props; return
; } export function ImagesContainer(props: { children: React.ReactNode }) { return {props.children} }