import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import { bdlGray } from '../../styles/variables'; import { Icon } from '../iconTypes'; interface IconAddTagsProps extends Icon { /** A number specifying the stroke width of the SVG */ strokeWidth?: number; } const IconAddTags = ({ className = '', height = 32, color = bdlGray, title, strokeWidth = 2, width = 32, }: IconAddTagsProps) => ( ); export default IconAddTags;