@@ -6,32 +6,32 @@ export const CloseIcon = () => {
66 return (
77 < svg xmlns = "http://www.w3.org/2000/svg" style = { style } viewBox = "0 0 24 24" >
88 < path fill = "none" d = "M0 0h24v24H0z" />
9- < path stroke = "gray " fill = "gray " d = "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" />
9+ < path stroke = "var(--color-icon) " fill = "var(--color-icon) " d = "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" />
1010 </ svg >
1111 ) ;
1212}
1313
1414export const MaximizeIcon = ( ) => {
1515 return (
16- < svg xmlns = "http://www.w3.org/2000/svg" style = { style } viewBox = "0 0 24 24" fill = "gray " > < path d = "M0 0h24v24H0z" fill = "none" /> < path stroke = "gray " d = "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" /> </ svg >
16+ < svg xmlns = "http://www.w3.org/2000/svg" style = { style } viewBox = "0 0 24 24" fill = "var(--color-icon) " > < path d = "M0 0h24v24H0z" fill = "none" /> < path stroke = "var(--color-icon) " d = "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" /> </ svg >
1717 ) ;
1818}
1919
2020export const OverflowIcon = ( ) => {
2121 return (
22- < svg xmlns = "http://www.w3.org/2000/svg" style = { style } viewBox = "0 0 24 24" fill = "gray " > < path d = "M0 0h24v24H0z" fill = "none" /> < path stroke = "gray " d = "M7 10l5 5 5-5z" /> </ svg >
22+ < svg xmlns = "http://www.w3.org/2000/svg" style = { style } viewBox = "0 0 24 24" fill = "var(--color-icon) " > < path d = "M0 0h24v24H0z" fill = "none" /> < path stroke = "var(--color-icon) " d = "M7 10l5 5 5-5z" /> </ svg >
2323 ) ;
2424}
2525
2626export const PopoutIcon = ( ) => {
2727 return (
28- // <svg xmlns="http://www.w3.org/2000/svg" style={style} viewBox="0 0 24 24" fill="gray "><path d="M0 0h24v24H0z" fill="none"/><path stroke="gray " d="M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z"/></svg>
28+ // <svg xmlns="http://www.w3.org/2000/svg" style={style} viewBox="0 0 24 24" fill="var(--color-icon) "><path d="M0 0h24v24H0z" fill="none"/><path stroke="var(--color-icon) " d="M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z"/></svg>
2929
30- // <svg xmlns="http://www.w3.org/2000/svg" style={style} fill="none" viewBox="0 0 24 24" stroke="gray " stroke-width="2">
30+ // <svg xmlns="http://www.w3.org/2000/svg" style={style} fill="none" viewBox="0 0 24 24" stroke="var(--color-icon) " stroke-width="2">
3131 // <path stroke-linecap="round" stroke-linejoin="round" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" />
3232 // </svg>
3333
34- < svg xmlns = "http://www.w3.org/2000/svg" style = { style } viewBox = "0 0 20 20" fill = "gray " >
34+ < svg xmlns = "http://www.w3.org/2000/svg" style = { style } viewBox = "0 0 20 20" fill = "var(--color-icon) " >
3535 < path d = "M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z" />
3636 < path d = "M5 5a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2v-3a1 1 0 10-2 0v3H5V7h3a1 1 0 000-2H5z" />
3737 </ svg >
@@ -41,6 +41,6 @@ export const PopoutIcon = () => {
4141
4242export const RestoreIcon = ( ) => {
4343 return (
44- < svg xmlns = "http://www.w3.org/2000/svg" style = { style } viewBox = "0 0 24 24" fill = "gray " > < path d = "M0 0h24v24H0z" fill = "none" /> < path stroke = "gray " d = "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" /> </ svg >
44+ < svg xmlns = "http://www.w3.org/2000/svg" style = { style } viewBox = "0 0 24 24" fill = "var(--color-icon) " > < path d = "M0 0h24v24H0z" fill = "none" /> < path stroke = "var(--color-icon) " d = "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" /> </ svg >
4545 ) ;
4646}
0 commit comments