mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-01-19 15:22:51 +00:00
2d15531ab0
complete name lookup
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
import React from "react"
|
|
|
|
const ArrowDown = props => (
|
|
<svg width={9} height={5} viewBox="0 0 9 5" {...props}>
|
|
<path d="M0 0h8.36L4.18 4.18z" fill="currentColor" fillRule="evenodd" />
|
|
</svg>
|
|
)
|
|
|
|
export default ArrowDown
|