/** * Pin Icon * @category actions */ import type { IconDefinition } from '../../types'; export const pin: IconDefinition = { name: 'pin', category: 'actions', description: 'Pin or bookmark item', tags: ['pin', 'bookmark', 'favorite', 'save', 'mark'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default pin;