@navinc/base-react-components
Version:
Nav's Pattern Library
10 lines (7 loc) • 608 B
JavaScript
import React from 'react'
const Flag = (props) => (
<svg fill="currentcolor" width="24" height="24" data-testid="icon:flag" {...props}>
<path d="M6,4.5625 L19.0351603,8.22863884 C19.5680266,8.37850747 20,8.94913031 20,9.49895656 L20,10.5010434 C20,11.0527519 19.5720387,11.6203641 19.0351603,11.7713612 L6,15.4375 L6,21.0013542 C6,21.552891 5.55613518,22 5,22 C4.44771525,22 4,21.5542301 4,21.0013542 L4,2.99864581 C4,2.44710896 4.44386482,2 5,2 C5.55228475,2 6,2.44576991 6,2.99864581 L6,4.5625 Z M6,6.65179443 L6.0172493,13.3550524 L18,10.0034235 L6,6.65179443 Z" />
</svg>
)
export default Flag