blob: f8aad879509c0e2676a35055b6a69547713a7c67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import styled from 'styled-components';
import variables from '../variables';
const InlineCode = styled.code`
background-color: ${variables.colors.blueGray}
padding: 0.1875rem;
`;
export default InlineCode;
|