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 | 519x | interface IconProps {
height?: number;
width?: number;
fill?: string;
}
const VerifiedIcon = ({ width, height, fill = "none" }: IconProps) => {
return (
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 9L5 12L14 1" stroke="#4BB543" strokeWidth="1.2"/>
</svg>
);
};
export default VerifiedIcon;
|