/**
* Camera/video off icon
* @category media
*/
import type { IconDefinition } from '../../types';
export const cameraOff: IconDefinition = {
name: 'camera-off',
category: 'media',
description: 'Camera/video off (with slash)',
tags: ['camera', 'video', 'off', 'disabled', 'webcam'],
svg: ``,
variants: {
solid: ``,
duotone: ``,
glitch: ``,
},
};
export default cameraOff;