box-ui-elements-mlh
Version:
24 lines (19 loc) • 882 B
Flow
// @flow
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
import type { Icon } from '../flowTypes';
const IconUnlock = ({ className = '', color = '#444', height = 14, title, width = 12 }: Icon) => (
<AccessibleSVG
className={`icon-unlock ${className}`}
height={height}
title={title}
viewBox="0 0 12 14"
width={width}
>
<g className="fill-color" fill={color}>
<path d="M10.3 5C10.2 2.6 8.3.6 5.9.6c-1 0-2 .3-2.7.9-.3.2-.3.5-.2.8.2.2.5.3.7.1.6-.5 1.4-.7 2.1-.7 1.8 0 3.4 1.5 3.4 3.4H2C.9 5 0 5.9 0 7v5c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7c0-1-.7-1.8-1.7-2zm.7 7c0 .5-.5 1-1 1H2c-.6 0-1-.4-1-1V7c0-.5.5-1 1-1h8c.6 0 1 .4 1 1v5z" />
<path d="M7.5 9h-3c-.3 0-.5.2-.5.5s.2.5.5.5h3c.3 0 .5-.2.5-.5S7.8 9 7.5 9z" />
</g>
</AccessibleSVG>
);
export default IconUnlock;