Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import { Box, color } from '@stacks/ui'; import React, { FC } from 'react'; interface RevokedDelegationIconProps { size?: string; } export const RevokedDelegationIcon: FC<RevokedDelegationIconProps> = ({ size = '20px' }) => ( <Box width={size} height={size}> <svg viewBox="0 0 22 23" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="10.5082" cy="11.0689" r="8.7582" stroke="#C5CCFF" strokeWidth="1.5" /> <path d="M1.17726 18.6768C0.68911 19.1649 0.68911 19.9564 1.17726 20.4446C1.66542 20.9327 2.45688 20.9327 2.94503 20.4446L19.945 3.44455C20.4332 2.9564 20.4332 2.16494 19.945 1.67678C19.4569 1.18863 18.6654 1.18863 18.1773 1.67678L1.17726 18.6768Z" fill="#C5CCFF" stroke={color('bg')} strokeLinecap="round" /> <circle cx="11.1393" cy="19.5749" r="2.13934" fill="#7F80FF" stroke={color('bg')} /> <circle cx="4.13934" cy="5.19989" r="2.13934" fill="#AAB3FF" stroke={color('bg')} /> <circle cx="19.1393" cy="11.1999" r="2.13934" fill="#5546FF" stroke={color('bg')} /> </svg> </Box> ); |