Skip to content
This repository has been archived by the owner on Mar 4, 2019. It is now read-only.

Commit

Permalink
feat(components) add SearchIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
HipsterBrown committed May 3, 2018
1 parent 035409e commit 97b320f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions frontend/src/components/SearchIcon.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';

const SearchIcon = ({ size = 48, fill = "#FFFFFF", ...props }) => (
<svg width={size} height={size} viewBox="10 10 30 30" version="1.1" xmlns="http://www.w3.org/2000/svg" {...props} >
<title>magnifying glass icon</title>
<path d="M28.5404814,30.1903972 C26.7995948,31.5736628 24.5962981,32.4 22.2,32.4 C16.5666956,32.4 12,27.8333044 12,22.2 C12,16.5666956 16.5666956,12 22.2,12 C27.8333044,12 32.4,16.5666956 32.4,22.2 C32.4,24.5962981 31.5736628,26.7995948 30.1903972,28.5404814 L35.6582912,34.0083754 C36.1139029,34.4639871 36.1139029,35.2026796 35.6582912,35.6582912 C35.2026796,36.1139029 34.4639871,36.1139029 34.0083754,35.6582912 L28.5404814,30.1903972 Z M22.2,30 C26.507821,30 30,26.507821 30,22.2 C30,17.892179 26.507821,14.4 22.2,14.4 C17.892179,14.4 14.4,17.892179 14.4,22.2 C14.4,26.507821 17.892179,30 22.2,30 Z" id="magnifying-glass" fill={fill} fillRule="nonzero" />
</svg>
);

export default SearchIcon;

0 comments on commit 97b320f

Please sign in to comment.