small fixes on chat behaviour

This commit is contained in:
t1enne
2022-07-02 09:56:03 +02:00
parent 1bbca87afb
commit b279f8f707
3 changed files with 23 additions and 18 deletions

View File

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