|
|
|
@ -1,8 +1,15 @@ |
|
|
|
|
|
|
|
import { CSSProperties } from 'react'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface Props { |
|
|
|
|
|
|
|
style: CSSProperties; |
|
|
|
|
|
|
|
fill: string; |
|
|
|
|
|
|
|
stroke: string; |
|
|
|
|
|
|
|
} |
|
|
|
export default function ModIcon({ |
|
|
|
export default function ModIcon({ |
|
|
|
style = { width: '1rem', height: '1rem' }, |
|
|
|
style = { width: '1rem', height: '1rem' }, |
|
|
|
fill = 'none', |
|
|
|
fill = 'none', |
|
|
|
stroke = 'var(--color-owncast-gray-300)', |
|
|
|
stroke = 'var(--color-owncast-gray-300)', |
|
|
|
}) { |
|
|
|
}: Props) { |
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<svg |
|
|
|
<svg |
|
|
|
fill={fill} |
|
|
|
fill={fill} |
|
|
|
|