// @flow import * as React from 'react'; import classNames from 'classnames'; import AccessibleSVG from '../accessible-svg'; import { bdlGray, bdlGray20 } from '../../styles/variables'; type Props = { className?: string, color?: string, fillColor?: string, height?: number, strokeColor?: string, strokeWidth?: number, /** A text-only string describing the icon if it's not purely decorative for accessibility */ title?: string | React.Element, width?: number, }; const IconSecurityClassificationSolid = ({ className = '', fillColor = bdlGray20, height = 16, strokeColor = bdlGray, strokeWidth = 1.5, title, width = 16, }: Props) => { const classes = classNames('bdl-IconSecurityClassificationSolid', className); return ( ); }; export default IconSecurityClassificationSolid;