import styled from '@emotion/styled';
const CheckIconSvg = styled.svg`
fill: #fff;
`;
export function CheckIcon( { className, id }: { className?: string; id: string } ) {
return (
);
}
export function ErrorIcon( { className }: { className?: string } ) {
return (
);
}
export function InfoIcon( { className }: { className?: string } ) {
return (
);
}
export function CloseIcon( { className }: { className?: string } ) {
return (
);
}