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/Labeled.js

30 lines
646 B
JavaScript
Raw Normal View History

2017-09-04 21:48:56 +00:00
// @flow
2018-05-05 23:16:08 +00:00
import * as React from 'react';
2017-09-04 21:48:56 +00:00
import { observer } from 'mobx-react';
import Flex from 'shared/components/Flex';
2017-09-04 21:48:56 +00:00
import styled from 'styled-components';
2017-10-27 05:42:08 +00:00
import { size } from 'shared/styles/constants';
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)`
2017-11-10 22:14:30 +00:00
margin-bottom: ${size.medium};
2017-09-04 21:48:56 +00:00
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
2017-11-10 22:14:30 +00:00
color: #9fa6ab;
2017-09-04 21:48:56 +00:00
letter-spacing: 0.04em;
`;
export default observer(Labeled);