import * as React from 'react'; import classNames from 'classnames'; import AccessibleSVG from '../accessible-svg'; import { bdlGray } from '../../styles/variables'; import { Icon } from '../iconTypes'; // TODO - Move this icon to the Asset repo. P Paul 5/2020 const IconSecurityClassification = ({ className = '', height = 12, color = bdlGray, title, width = 12 }: Icon) => { const classes = classNames('bdl-IconSecurityClassification', className); return ( ); }; export default IconSecurityClassification;