You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

33 lines
961 B

import * as React from "react";
function SvgScrollVertical(props) {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" {...props}>
<defs>
<style>
{
".scrollVertical_svg__cls-3{fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px}"
}
</style>
</defs>
<g
id="scrollVertical_svg__\uB808\uC774\uC5B4_2"
data-name="\uB808\uC774\uC5B4 2"
>
<g
id="scrollVertical_svg__\uB808\uC774\uC5B4_1-2"
data-name="\uB808\uC774\uC5B4 1"
>
<path fill="none" d="M0 0h48v48H0z" opacity={0.2} />
<circle className="scrollVertical_svg__cls-3" cx={24} cy={24} r={5} />
<path
className="scrollVertical_svg__cls-3"
d="M24 3l12 12M24 3L12 15M24 45l12-12M24 45L12 33"
/>
</g>
</g>
</svg>
);
}
export default SvgScrollVertical;