28 lines
837 B
TypeScript
28 lines
837 B
TypeScript
![]() |
import { FC, SVGProps } from "react";
|
||
|
|
||
|
export const EnterIcon: FC<SVGProps<SVGSVGElement>> = (props) => (
|
||
|
<svg {...props} height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||
|
<path
|
||
|
d="M16.5 9.75V12.75H7.5"
|
||
|
stroke="currentColor"
|
||
|
strokeWidth="1.5"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
/>
|
||
|
<path
|
||
|
d="M9.75 10.5L7.5 12.75L9.75 15"
|
||
|
stroke="currentColor"
|
||
|
strokeWidth="1.5"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
/>
|
||
|
<path
|
||
|
d="M20.25 4.5H3.75C3.33579 4.5 3 4.83579 3 5.25V18.75C3 19.1642 3.33579 19.5 3.75 19.5H20.25C20.6642 19.5 21 19.1642 21 18.75V5.25C21 4.83579 20.6642 4.5 20.25 4.5Z"
|
||
|
stroke="currentColor"
|
||
|
strokeWidth="1.5"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
/>
|
||
|
</svg>
|
||
|
);
|