This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2020-02-18 16:25:03 +00:00
|
|
|
import React from "react";
|
2020-02-28 11:30:27 +00:00
|
|
|
import PropTypes from "prop-types";
|
2020-02-12 17:23:10 +00:00
|
|
|
|
|
|
|
export default function DoubleRight({ className }) {
|
|
|
|
return (
|
|
|
|
<svg className={className} viewBox="0 0 12 12" width={12} height={12} xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<path
|
|
|
|
d="M1 1l5 5-5 5M6 1l5 5-5 5"
|
|
|
|
stroke="currentColor"
|
|
|
|
strokeWidth="2"
|
|
|
|
fill="none"
|
|
|
|
fillRule="evenodd"
|
|
|
|
strokeLinejoin="round"
|
|
|
|
/>
|
|
|
|
</svg>
|
2020-02-18 16:25:03 +00:00
|
|
|
);
|
2020-02-12 17:23:10 +00:00
|
|
|
}
|
2020-02-28 11:30:27 +00:00
|
|
|
|
|
|
|
DoubleRight.propTypes = {
|
|
|
|
className: PropTypes.string
|
|
|
|
};
|