/** * Copyright (c) TonTech. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import type { FC } from 'react'; import { DEFAULT_ICON_SIZE } from './types'; import type { IconProps } from './types'; export const ImageIcon: FC = ({ size = DEFAULT_ICON_SIZE, ...props }) => ( );