mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-04-16 23:11:28 +08:00
28 lines
793 B
TypeScript
28 lines
793 B
TypeScript
import React from "react";
|
|
|
|
export interface props {
|
|
size: number;
|
|
color: string;
|
|
}
|
|
export default function LogoutIcon(props: props) {
|
|
return (
|
|
<div>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className="icon icon-tabler icon-tabler-logout"
|
|
width={props.size + "vh"}
|
|
height={props.size + "vh"}
|
|
viewBox="0 0 24 24"
|
|
stroke-width="1"
|
|
stroke={props.color}
|
|
fill="none"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
>
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
|
<path d="M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"></path>
|
|
<path d="M7 12h14l-3 -3m0 6l3 -3"></path>
|
|
</svg>
|
|
</div>
|
|
);
|
|
}
|