mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-24 18:42:23 +00:00
9 lines
564 B
TypeScript
9 lines
564 B
TypeScript
import { createIcon } from '@chakra-ui/icons';
|
|
|
|
export const LensIcon = createIcon({
|
|
displayName: 'LensIcon',
|
|
viewBox: '0 0 17 18',
|
|
path: (
|
|
<svg width="17" height="18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.15 11.192h-.768l-.272-.263a6.29 6.29 0 0 0 1.526-4.111 6.317 6.317 0 1 0-6.318 6.318 6.29 6.29 0 0 0 4.111-1.526l.263.272v.768l4.86 4.85L17 16.052l-4.85-4.86zm-5.832 0a4.368 4.368 0 0 1-4.374-4.374 4.368 4.368 0 0 1 4.374-4.374 4.368 4.368 0 0 1 4.374 4.374 4.368 4.368 0 0 1-4.374 4.374z" fill="currentColor"/></svg>
|
|
)
|
|
});
|