2018-11-16 11:05:30 +01:00

17 lines
441 B
TypeScript

import * as React from 'react';
import styled from 'styled-components';
import { colors } from '../variables';
interface InlineCodeProps {
isAlt?: boolean;
children: React.ReactNode;
}
const InlineCode = styled(({ isAlt, children, ...props }: InlineCodeProps) => <code {...props}>{children}</code>)`
background-color: ${props => (props.isAlt ? '#E5E8E9' : colors.blueGray)};
padding: 0.3125rem;
`;
export { InlineCode };