UNPKG

@discostudioteam/react-code-blocks

Version:

Modified rajinwonderland's modification of Atlaskit's Code Block!

11 lines (9 loc) 256 B
import { CodeBlockTheme } from '../../types'; export const getStyles = (theme: CodeBlockTheme) => { const styles = { color: theme.textColor, border: theme.lineNumberBgColor, bgColor: theme.backgroundColor, }; return styles; };