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.
16 lines
492 B
16 lines
492 B
// @flow
|
|
|
|
import React from 'react'
|
|
|
|
const path = (
|
|
<path
|
|
fill="currentColor"
|
|
d="M14.625 7.125h-5.75v-5.75A.376.376 0 0 0 8.5 1h-1a.376.376 0 0 0-.375.375v5.75h-5.75A.376.376 0 0 0 1 7.5v1c0 .206.169.375.375.375h5.75v5.75c0 .206.169.375.375.375h1a.376.376 0 0 0 .375-.375v-5.75h5.75A.376.376 0 0 0 15 8.5v-1a.376.376 0 0 0-.375-.375z"
|
|
/>
|
|
)
|
|
|
|
export default ({ size, ...p }: { size: number }) => (
|
|
<svg viewBox="0 0 16 16" height={size} width={size} {...p}>
|
|
{path}
|
|
</svg>
|
|
)
|
|
|