import React from 'react'; import DownSvg from '../../icons/navigation/down.svg?react'; import './DialogBanner.scss'; type DialogBannerProps = { text: string; onClick?: VoidFunction; }; export default function ({ text, onClick }: DialogBannerProps) { return (
{text}
); }