react-jam-icons
Version:
Jam icons as React Components
13 lines (10 loc) • 544 B
JavaScript
import React from "react";
const ShieldError = props => (
<svg viewBox="0 0 54 64" {...props}>
<path
d="M27 0L0 8v20c.3 16.5 27 36 27 36s26.7-19.5 27-36V8L27 0zm23 28c-.2 14.3-23 31-23 31S4.2 42.3 4 28V11l23-7 23 7v17zm-30.9-7.7c-.4-.4-1-.4-1.4 0l-1.4 1.4c-.4.4-.4 1 0 1.4l7.8 7.8-7.8 7.8c-.4.4-.4 1 0 1.4l1.4 1.4c.4.4 1 .4 1.4 0l7.8-7.8 7.8 7.8c.4.4 1 .4 1.4 0l1.4-1.4c.4-.4.4-1 0-1.4l-7.8-7.8 7.8-7.8c.4-.4.4-1 0-1.4l-1.4-1.4c-.4-.4-1-.4-1.4 0l-7.8 7.8-7.8-7.8z"
fill="#333"
/>
</svg>
);
export default ShieldError;