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

27 lines
557 B
JavaScript
Raw Normal View History

2017-09-04 21:48:56 +00:00
// @flow
import { observer } from "mobx-react";
import * as React from "react";
import styled from "styled-components";
import Flex from "components/Flex";
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-09-04 21:48:56 +00:00
font-weight: 500;
padding-bottom: 4px;
display: inline-block;
color: ${(props) => props.theme.text};
2017-09-04 21:48:56 +00:00
`;
export default observer(Labeled);