* deps * diffCompact * Diffs in email * test * fix: Fade deleted images fix: Don't include empty paragraphs as context fix: Allow for same image multiple times and refactor * Remove target _blank * fix: Table heading incorrect color
26 lines
507 B
TypeScript
26 lines
507 B
TypeScript
import * as React from "react";
|
|
import theme from "@shared/styles/theme";
|
|
|
|
type Props = {
|
|
children: React.ReactNode;
|
|
href?: string;
|
|
};
|
|
|
|
export default ({ children, ...rest }: Props) => {
|
|
const style = {
|
|
borderRadius: "4px",
|
|
background: theme.secondaryBackground,
|
|
padding: ".75em 1em",
|
|
color: theme.text,
|
|
display: "block",
|
|
textDecoration: "none",
|
|
width: "100%",
|
|
};
|
|
|
|
return (
|
|
<div style={style} className="content-diff" {...rest}>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|