10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
import styled from 'styled-components';
|
|
import { colors } from '../variables';
|
|
|
|
const InlineCode = styled.code`
|
|
background-color: ${colors.blueGray}
|
|
padding: 0.1875rem;
|
|
`;
|
|
|
|
export default InlineCode;
|