@slashid/docusaurus-theme-slashid
Version:
SlashID theme for Docusaurus.
27 lines (25 loc) • 681 B
JavaScript
/* ============================================================================
* Copyright (c) SlashID
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* ========================================================================== */
import React from "react";
const ChevronLeft = () => {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M14 8L10 12L14 16"
stroke="hsla(240, 10%, 45%, 1)"
strokeWidth="1.6"
/>
</svg>
);
};
export default ChevronLeft;