import React from 'react'; import Style from '../../styles'; type Props = { textFill?: string triangleFill?: string } export default function ErrorIcon({ textFill = 'white', triangleFill = Style.color2.error }: Props) { return ( ); }