I18n Better Experience

This commit is contained in:
Belen Curcio
2020-12-02 11:36:24 -03:00
parent bbcf63b892
commit c37ed3d418
4 changed files with 50 additions and 23 deletions

View File

@@ -0,0 +1,20 @@
const ChevronUp = ({ ...props }) => {
return (
<svg
viewBox="0 0 24 24"
width="24"
height="24"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
shape-rendering="geometricPrecision"
{...props}
>
<path d="M18 15l-6-6-6 6" />
</svg>
)
}
export default ChevronUp