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