// @flow import * as React from 'react'; import {Icon} from "native-base"; import ThemeManager from '../utils/ThemeManager'; type Props = { active: boolean, icon: string, color: ?string, fontSize: number, width: number, } export default class CustomMaterialIcon extends React.Component { static defaultProps = { active: false, color: undefined, fontSize: 26, width: 30, }; render() { return ( ); } }