/** * Image/photo icon * @category media */ import type { IconDefinition } from '../../types'; export const image: IconDefinition = { name: 'image', category: 'media', description: 'Image/photo (landscape with sun)', tags: ['image', 'photo', 'picture', 'file', 'gallery'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default image;