/** * Eye - Visible/show * @category security */ import type { IconDefinition } from '../../types'; export const eye: IconDefinition = { name: 'eye', category: 'security', description: 'Visible or show content', tags: ['eye', 'view', 'visible', 'show', 'reveal', 'watch'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default eye;