2021-06-18 14:20:57 +01:00
|
|
|
import styled, { css } from 'styled-components';
|
|
|
|
import { Children } from '../../types/Preact';
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
block?: boolean;
|
|
|
|
error?: Children;
|
|
|
|
children?: Children;
|
|
|
|
type?: "default" | "subtle" | "error";
|
|
|
|
}
|
|
|
|
|
|
|
|
const OverlineBase = styled.div<Omit<Props, 'children' | 'error'>>`
|
|
|
|
display: inline;
|
|
|
|
margin: 0.4em 0;
|
|
|
|
margin-top: 0.8em;
|
|
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
|
|
|
color: var(--foreground);
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
|
|
${ props => props.type === 'subtle' && css`
|
|
|
|
font-size: 12px;
|
|
|
|
color: var(--secondary-foreground);
|
|
|
|
` }
|
|
|
|
|
|
|
|
${ props => props.type === 'error' && css`
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: var(--error);
|
|
|
|
` }
|
|
|
|
|
|
|
|
${ props => props.block && css`display: block;` }
|
|
|
|
`;
|
|
|
|
|
2021-06-18 15:18:10 +01:00
|
|
|
export default function Overline(props: Props) {
|
2021-06-18 14:20:57 +01:00
|
|
|
return (
|
|
|
|
<OverlineBase {...props}>
|
|
|
|
{ props.children }
|
|
|
|
{ props.children && props.error && <> · </> }
|
|
|
|
{ props.error && (
|
|
|
|
<Overline type="error">
|
|
|
|
{ props.error }
|
|
|
|
</Overline>
|
|
|
|
) }
|
|
|
|
</OverlineBase>
|
|
|
|
)
|
|
|
|
}
|