meriadec
7 years ago
3 changed files with 66 additions and 11 deletions
@ -0,0 +1,32 @@ |
|||
// @flow
|
|||
|
|||
import React, { Fragment } from 'react' |
|||
|
|||
const path = ( |
|||
<Fragment> |
|||
<rect |
|||
x=".75" |
|||
y=".75" |
|||
width="24" |
|||
height="24" |
|||
rx="8" |
|||
fill="none" |
|||
fillRule="evenodd" |
|||
stroke="currentColor" |
|||
strokeWidth="1.5" |
|||
/> |
|||
<path |
|||
transform="translate(4.75,4.75)" |
|||
width="100%" |
|||
height="100%" |
|||
fill="#000000" |
|||
d="m13.62 2.6083-8.2201 8.2201-3.0204-3.0204c-0.14644-0.14644-0.38388-0.14644-0.53034 0l-0.88388 0.88388c-0.14644 0.14644-0.14644 0.38388 0 0.53034l4.1694 4.1694c0.14644 0.14644 0.38388 0.14644 0.53034 0l9.3692-9.3692c0.14644-0.14644 0.14644-0.38387 0-0.53034l-0.88388-0.88388c-0.14644-0.14644-0.38388-0.14644-0.53031 0z" |
|||
/> |
|||
</Fragment> |
|||
) |
|||
|
|||
export default ({ size, ...p }: { size: number }) => ( |
|||
<svg viewBox="0 0 25.5 25.5" height={size} width={size} {...p}> |
|||
{path} |
|||
</svg> |
|||
) |
@ -1,16 +1,32 @@ |
|||
// @flow
|
|||
|
|||
import React from 'react' |
|||
import React, { Fragment } from 'react' |
|||
|
|||
const path = ( |
|||
<path |
|||
fill="currentColor" |
|||
d="m8.261 2.252a1.11 1.11 0 0 0-1.408 0l-6.772 5.545a0.224 0.224 0 0 0-0.03 0.313l0.563 0.69a0.224 0.224 0 0 0 0.314 0.03l0.408-0.333v5.502c0 0.245 0.2 0.445 0.445 0.445h4.667c0.122 0 0.222-0.1 0.222-0.222v-3.556h1.778v3.556c0 0.122 0.1 0.222 0.222 0.222h4.666c0.245 0 0.445-0.2 0.445-0.445v-5.505l0.408 0.333a0.224 0.224 0 0 0 0.314-0.03l0.564-0.69a0.227 0.227 0 0 0-0.036-0.31l-6.771-5.545zm4.184 10.858h-2.667v-3.555c0-0.122-0.1-0.222-0.222-0.222h-4c-0.122 0-0.222 0.1-0.222 0.222v3.555h-2.667v-5.708l4.747-3.889c0.08-0.066 0.2-0.066 0.28 0l4.748 3.89v5.707z" |
|||
/> |
|||
<Fragment> |
|||
<rect |
|||
x=".75" |
|||
y=".75" |
|||
width="24" |
|||
height="24" |
|||
rx="8" |
|||
fill="none" |
|||
fillRule="evenodd" |
|||
stroke="currentColor" |
|||
strokeWidth="1.5" |
|||
/> |
|||
<path |
|||
fill="currentColor" |
|||
transform="translate(4.75,4.75)" |
|||
width="100%" |
|||
height="100%" |
|||
d="m2.75 6.3668v6.9665c0 0.32217 0.26117 0.58333 0.58333 0.58333h9.3333c0.32217 0 0.58333-0.26117 0.58333-0.58333v-6.9665l-5.25-4.0833zm-1.2105-0.95883 6-4.6667c0.27083-0.21065 0.65008-0.21065 0.92091 0l6 4.6667c0.18269 0.14209 0.28954 0.36057 0.28954 0.59201v7.3333c0 1.1506-0.93274 2.0833-2.0833 2.0833h-9.3333c-1.1506 0-2.0833-0.93274-2.0833-2.0833v-7.3333c0-0.23144 0.10685-0.44992 0.28954-0.59201zm5.2105 3.342v5.9167c0 0.41421-0.33579 0.75-0.75 0.75s-0.75-0.33579-0.75-0.75v-6.6667c0-0.41421 0.33579-0.75 0.75-0.75h4c0.41421 0 0.75 0.33579 0.75 0.75v6.6667c0 0.41421-0.33579 0.75-0.75 0.75-0.41421 0-0.75-0.33579-0.75-0.75v-5.9167z" |
|||
/> |
|||
</Fragment> |
|||
) |
|||
|
|||
export default ({ size, ...p }: { size: number }) => ( |
|||
<svg viewBox="0 0 15.111 12.444" height={size} width={size} {...p}> |
|||
<svg viewBox="0 0 25.5 25.5" height={size} width={size} {...p}> |
|||
{path} |
|||
</svg> |
|||
) |
|||
|
Loading…
Reference in new issue