import { View, StyleSheet } from 'react-native'; const PencilIcon = ({ height = 20, width = 10 }) => { return ( {/* Eraser */} {/* Body */} {/* tip of pencil */} {/* */} ); }; const styles = StyleSheet.create({ container: { transform: [{ rotate: '45deg' }], alignItems: 'center', marginHorizontal: 'auto', justifyContent: 'center', }, }); export default PencilIcon;