This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/app/components/Labeled.js

29 lines
611 B
JavaScript
Raw Normal View History

2017-09-04 21:48:56 +00:00
// @flow
import * as React from "react";
import { observer } from "mobx-react";
import Flex from "components/Flex";
import styled from "styled-components";
2017-09-04 21:48:56 +00:00
type Props = {
2018-05-05 23:16:08 +00:00
label: React.Node | string,
children: React.Node,
2017-09-04 21:48:56 +00:00
};
const Labeled = ({ label, children, ...props }: Props) => (
<Flex column {...props}>
2017-11-08 06:02:07 +00:00
<Label>{label}</Label>
2017-09-04 21:48:56 +00:00
{children}
</Flex>
);
2017-11-08 06:02:07 +00:00
export const Label = styled(Flex)`
2018-06-10 02:10:30 +00:00
margin-bottom: 8px;
2017-09-04 21:48:56 +00:00
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
color: ${(props) => props.theme.textTertiary};
2017-09-04 21:48:56 +00:00
letter-spacing: 0.04em;
`;
export default observer(Labeled);