0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00
logto/packages/console/src/icons/More.tsx

20 lines
1.8 KiB
TypeScript
Raw Normal View History

import React, { SVGProps } from 'react';
const More = (props: SVGProps<SVGSVGElement>) => (
<svg
width="4"
height="16"
viewBox="0 0 4 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M1.99968 3.83333C2.32931 3.83333 2.65154 3.73559 2.92563 3.55245C3.19971 3.36931 3.41333 3.10902 3.53948 2.80447C3.66562 2.49993 3.69863 2.16482 3.63432 1.84152C3.57001 1.51822 3.41127 1.22124 3.17819 0.988156C2.9451 0.755068 2.64813 0.596334 2.32483 0.532025C2.00152 0.467717 1.66641 0.500722 1.36187 0.626868C1.05733 0.753014 0.797029 0.966635 0.613893 1.24072C0.430757 1.5148 0.333009 1.83703 0.333009 2.16667C0.333009 2.60869 0.508604 3.03262 0.821164 3.34518C1.13373 3.65774 1.55765 3.83333 1.99968 3.83333ZM1.99968 12.1667C1.67004 12.1667 1.34781 12.2644 1.07373 12.4476C0.799643 12.6307 0.586022 12.891 0.459876 13.1955C0.33373 13.5001 0.300724 13.8352 0.365033 14.1585C0.429342 14.4818 0.588077 14.7788 0.821164 15.0118C1.05425 15.2449 1.35122 15.4037 1.67453 15.468C1.99783 15.5323 2.33294 15.4993 2.63748 15.3731C2.94202 15.247 3.20232 15.0334 3.38546 14.7593C3.56859 14.4852 3.66634 14.163 3.66634 13.8333C3.66634 13.3913 3.49075 12.9674 3.17819 12.6548C2.86563 12.3423 2.4417 12.1667 1.99968 12.1667ZM1.99968 6.33333C1.67004 6.33333 1.34781 6.43108 1.07373 6.61422C0.799643 6.79735 0.586022 7.05765 0.459876 7.3622C0.33373 7.66674 0.300724 8.00185 0.365033 8.32515C0.429342 8.64845 0.588077 8.94542 0.821164 9.17851C1.05425 9.4116 1.35122 9.57033 1.67453 9.63464C1.99783 9.69895 2.33294 9.66595 2.63748 9.5398C2.94202 9.41365 3.20232 9.20003 3.38546 8.92595C3.56859 8.65187 3.66634 8.32964 3.66634 8C3.66634 7.55797 3.49075 7.13405 3.17819 6.82149C2.86563 6.50893 2.4417 6.33333 1.99968 6.33333Z"
fill="#747778"
/>
</svg>
);
export default More;