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