16 lines
306 B
TypeScript
16 lines
306 B
TypeScript
const ButtonSwipperIcon = () => {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
>
|
|
<rect x="2" y="11" width="20" height="2" rx="1" fill="#C7BDBA" />
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default ButtonSwipperIcon;
|