You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
661 B
13 lines
661 B
7 years ago
|
// @flow
|
||
|
|
||
|
import React from 'react'
|
||
|
|
||
|
export default ({ size, ...p }: { size: number }) => (
|
||
|
<svg viewBox="0 0 24 24" height={size} width={size} {...p}>
|
||
|
<path
|
||
|
fill="currentColor"
|
||
|
d="M12 .375C5.58.375.375 5.58.375 12S5.58 23.625 12 23.625 23.625 18.42 23.625 12 18.42.375 12 .375zm0 21.75C6.438 22.125 1.875 17.622 1.875 12 1.875 6.438 6.378 1.875 12 1.875c5.562 0 10.125 4.503 10.125 10.125 0 5.562-4.503 10.125-10.125 10.125zm6.639-12.889l-8.46 8.392a.562.562 0 0 1-.796-.003l-4.025-4.058a.562.562 0 0 1 .003-.795l.4-.397a.562.562 0 0 1 .795.004l3.233 3.259 7.661-7.6a.562.562 0 0 1 .796.003l.396.4a.562.562 0 0 1-.003.795z"
|
||
|
/>
|
||
|
</svg>
|
||
|
)
|