import React from "react";
import styled from "styled-components";
const Base = styled.span`
gap: 6px;
display: flex;
align-items: center;
flex-direction: row;
color: var(--foreground);
.error {
font-weight: 600;
color: var(--error);
}
`;
export interface Props {
error?: React.ReactNode;
children?: React.ReactNode;
}
export function Error({ error, children }: Props) {
return (
{children}
{children && error && <> · >}
{error}
);
}