@navinc/base-react-components
Version:
Nav's Pattern Library
10 lines (7 loc) • 792 B
JavaScript
import React from 'react'
const Search = (props) => (
<svg fill="currentcolor" width="24" height="24" data-testid="icon:search" {...props}>
<path d="M21.3922145,19.9780009 C21.7810117,20.3667981 21.7823343,20.9958403 21.3890873,21.3890873 C20.998563,21.7796116 20.3674333,21.7816468 19.9780009,21.3922145 L14.5491228,15.9633363 C13.2873239,16.9273642 11.7105351,17.5 10,17.5 C5.85786438,17.5 2.5,14.1421356 2.5,10 C2.5,5.85786438 5.85786438,2.5 10,2.5 C14.1421356,2.5 17.5,5.85786438 17.5,10 C17.5,11.7105351 16.9273642,13.2873239 15.9633363,14.5491228 L21.3922145,19.9780009 Z M10,15.5 C13.0375661,15.5 15.5,13.0375661 15.5,10 C15.5,6.96243388 13.0375661,4.5 10,4.5 C6.96243388,4.5 4.5,6.96243388 4.5,10 C4.5,13.0375661 6.96243388,15.5 10,15.5 Z" />
</svg>
)
export default Search