@navinc/base-react-components
Version:
Nav's Pattern Library
10 lines (8 loc) • 720 B
JavaScript
import React from 'react'
// As the Icon wrapper component passes viewBox="0 0 24 24", we need to overwrite it with the correct viewBox
const Matchfactor = (props) => (
<svg fill="currentcolor" width="24" height="24" data-testid="icon:matchfactor" {...props} viewBox="0 0 30.4 21.7">
<path d="M18 3.7v18h-2v-14L9.5 18.2h-1L2 7.7v14H0v-18h2l7 12 7-12h2zM30.4 1c0 .4-.3.7-.7.7-.4.1-.8-.3-.9-.7V.9c0-.2-.2-.4-.5-.4-.8 0-1.3 1.5-1.7 3.4h1.5s.1 0 .1.1l-.1.4c0 .1-.1.1-.1.1h-1.5c-.9 4-1.8 9.5-5.2 9.5-.6.1-1.2-.2-1.3-.8v-.1c0-.4.3-.7.7-.8.4 0 .8.4.8.8 0 .1.1.3.3.2 1.6 0 2.2-4.9 3-8.8h-1.2c-.1 0-.1 0-.1-.1l.1-.4c0-.1.1-.1.1-.1h1.1c.6-2.6 2.1-4 3.9-4 1.2.1 1.7.6 1.7 1.1z" />{' '}
</svg>
)
export default Matchfactor