react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 460 B
JavaScript
import React from 'react';
export default function IdentifierIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-identifier ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M6 18V8h2v10H6M6 4.5h2v2H6v-2M17 4h2v14h-2v-.25s-1.33.25-2 .25a5 5 0 0 1-5-5 5 5 0 0 1 5-5c.67 0 2 .25 2 .25V4m0 6.25S15.67 10 15 10a3 3 0 0 0-3 3 3 3 0 0 0 3 3c.67 0 2-.25 2-.25v-5.5z" />
</svg>
);
}