mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-23 20:10:41 +08:00
Add "aphrodite", "react-jss", and "reactxp" renderers. "react-addons-perf" is required due to: https://github.com/Microsoft/reactxp/issues/11
16 lines
303 B
JavaScript
16 lines
303 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
|
|
const styles = StyleSheet.create({
|
|
icon: {
|
|
display: 'inline-block',
|
|
fill: 'currentcolor',
|
|
height: '1.25em',
|
|
maxWidth: '100%',
|
|
position: 'relative',
|
|
userSelect: 'none',
|
|
verticalAlign: 'text-bottom'
|
|
}
|
|
});
|
|
|
|
export default styles;
|