Files
outline/server/emails/components/Diff.js
T
Tom Moor 1560e3c9f7 refactor
2021-06-20 12:49:15 -07:00

18 lines
348 B
JavaScript

// @flow
import * as React from "react";
import theme from "../../../shared/styles/theme";
type Props = {|
children: React.Node,
|};
export default (props: Props) => {
const style = {
borderRadius: "4px",
background: theme.secondaryBackground,
padding: ".5em 1em",
};
return <div width="100%" style={style} {...props} />;
};