/* Significantly rewritten from upstream to keep the old design for now */ import { FormattedMessage } from 'react-intl'; export const ContentWarning: React.FC<{ text: string; expanded?: boolean; onClick?: () => void; icons?: React.ReactNode[]; }> = ({ text, expanded, onClick, icons }) => (

{' '}

);