import * as React from 'react'; import * as styles from '../../internal/styles'; /** * Icon size defaults * This is the size that the icons should be created with and matches the viewBox setting */ const defaultSize = 24; const defaultColor = styles.colors.text; export interface IconProps { color?: string; size?: number; } export class File extends React.Component{ render() { const color = this.props.color || defaultColor; const size = this.props.size || defaultSize; return ( ) } } export const OpenExternal = () => { return (); }