Anastasia Poupeney
7 years ago
6 changed files with 53 additions and 10 deletions
@ -0,0 +1,16 @@ |
|||||
|
// @flow
|
||||
|
|
||||
|
import React from 'react' |
||||
|
|
||||
|
const path = ( |
||||
|
<path |
||||
|
fill="currentColor" |
||||
|
d="M6.217 2.188a2.085 2.085 0 0 1 3.566 0l5.653 9.437a2.083 2.083 0 0 1-1.79 3.125h-11.3A2.083 2.083 0 0 1 .57 11.615l5.647-9.427zm1.285.773l-5.64 9.414a.583.583 0 0 0 .491.875h11.285a.583.583 0 0 0 .505-.865L8.5 2.962a.583.583 0 0 0-.997-.001zM7.25 6a.75.75 0 0 1 1.5 0v2.667a.75.75 0 0 1-1.5 0V6zm1.5 5a.75.75 0 1 1-1.5 0v-.01a.75.75 0 1 1 1.5 0V11z" |
||||
|
/> |
||||
|
) |
||||
|
|
||||
|
export default ({ height, width, ...p }: { height: number, width: number }) => ( |
||||
|
<svg viewBox="0 0 19 17" height={height} width={width} {...p}> |
||||
|
{path} |
||||
|
</svg> |
||||
|
) |
Loading…
Reference in new issue