aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/InlineCode.tsx
blob: 037cfa675d918ecae3fd02540004c6b1657893e5 (plain) (blame)
1
2
3
4
5
6
7
8
import styled from 'styled-components';

const InlineCode = styled.code`
    background-color: #eceff9;
    padding: 0.1875rem;
`;

export default InlineCode;