@slashid/docusaurus-theme-slashid
Version:
SlashID theme for Docusaurus.
27 lines (25 loc) • 686 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 ChevronDown = () => {
return (
<svg
width="24"
height="25"
viewBox="0 0 24 25"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16 10.0526L12 14.0526L8 10.0526"
stroke="currentColor"
strokeWidth="1.6"
/>
</svg>
);
};
export default ChevronDown;