import { CSSProperties, FC } from 'react'; export type ModIconProps = { style?: CSSProperties; fill?: string; stroke?: string; }; export const ModIcon: FC = ({ style = { width: '1rem', height: '1rem' }, fill = 'none', stroke = 'var(--color-owncast-gray-300)', }: ModIconProps) => ( This user has moderation rights );