mirror of
https://github.com/morten-olsen/react-native-debug-console.git
synced 2026-02-08 00:36:26 +01:00
V2 (#1)
This commit is contained in:
14
packages/lib/src/components/base/text.js
Normal file
14
packages/lib/src/components/base/text.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import styled from 'styled-components/native';
|
||||
|
||||
export const Body = styled.Text`
|
||||
color: ${props => props.color || 'black'};
|
||||
`;
|
||||
|
||||
export const Emphasis = styled.Text`
|
||||
font-weight: bold;
|
||||
color: ${props => props.color || 'black'};
|
||||
`;
|
||||
|
||||
export const Fixed = styled.Text`
|
||||
font-family: Menlo-Regular;
|
||||
`;
|
||||
Reference in New Issue
Block a user