1
This commit is contained in:
8
src/components/bs-icons/quit/Quit-dark.svg
Normal file
8
src/components/bs-icons/quit/Quit-dark.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Group 542">
|
||||
<g id="Group 417">
|
||||
<path id="Rectangle 186" d="M10 5H7.2C6.0799 5 5.51984 5 5.09202 5.21799C4.71569 5.40973 4.40973 5.71569 4.21799 6.09202C4 6.51984 4 7.07989 4 8.2V15.8C4 16.9201 4 17.4802 4.21799 17.908C4.40973 18.2843 4.71569 18.5903 5.09202 18.782C5.51984 19 6.07989 19 7.2 19H10" stroke="white" stroke-width="2"/>
|
||||
<path id="Vector 1" d="M10 12H17.5M15 8L19 12L15 16" stroke="white" stroke-width="2" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 563 B |
8
src/components/bs-icons/quit/Quit.svg
Normal file
8
src/components/bs-icons/quit/Quit.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Group 542">
|
||||
<g id="Group 417">
|
||||
<path id="Rectangle 186" d="M10 5H7.2C6.0799 5 5.51984 5 5.09202 5.21799C4.71569 5.40973 4.40973 5.71569 4.21799 6.09202C4 6.51984 4 7.07989 4 8.2V15.8C4 16.9201 4 17.4802 4.21799 17.908C4.40973 18.2843 4.71569 18.5903 5.09202 18.782C5.51984 19 6.07989 19 7.2 19H10" stroke="black" stroke-width="2"/>
|
||||
<path id="Vector 1" d="M10 12H17.5M15 8L19 12L15 16" stroke="black" stroke-width="2" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 563 B |
17
src/components/bs-icons/quit/index.tsx
Normal file
17
src/components/bs-icons/quit/index.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import React, { forwardRef } from "react";
|
||||
import { ReactComponent as Quit } from "./Quit.svg";
|
||||
import { ReactComponent as QuitDark } from "./Quit-dark.svg";
|
||||
|
||||
export const QuitIcon = forwardRef<
|
||||
SVGSVGElement & { className: any },
|
||||
React.PropsWithChildren<{ className?: string }>
|
||||
>(({className,...props}, ref) => {
|
||||
return <Quit ref={ref} {...props} className={className || ''}/>;
|
||||
});
|
||||
|
||||
export const QuitIconDark = forwardRef<
|
||||
SVGSVGElement & { className: any },
|
||||
React.PropsWithChildren<{ className?: string }>
|
||||
>(({className,...props}, ref) => {
|
||||
return <QuitDark ref={ref} {...props} className={className || ''}/>;
|
||||
});
|
||||
Reference in New Issue
Block a user