mirror of
https://github.com/uetchy/namae.git
synced 2025-07-02 06:20:02 +09:00
15 lines
464 B
JavaScript
15 lines
464 B
JavaScript
|
import React from 'react'
|
||
|
|
||
|
export const SpectrumIcon = () => (
|
||
|
<svg
|
||
|
width="1em"
|
||
|
height="1em"
|
||
|
viewBox="0 0 32 32"
|
||
|
fill="currentColor"
|
||
|
stroke="currentColor"
|
||
|
stroke-width="0"
|
||
|
xmlns="http://www.w3.org/2000/svg">
|
||
|
<path d="M6 14.5C6 15.3284 6.67157 16 7.5 16H9C12.866 16 16 19.134 16 23V24.5C16 25.3284 16.6716 26 17.5 26H24.5C25.3284 26 26 25.3284 26 24.5V23C26 13.6111 18.3889 6 9 6H7.5C6.67157 6 6 6.67157 6 7.5V14.5Z" />
|
||
|
</svg>
|
||
|
)
|