import * as React from 'react' import * as cx from 'classnames' import { ActionBoxProps, ActionNodeProps } from './interfaces' import { StylableComponent } from '../theme' import { Column } from '../flex' import { Icon } from '../icon' import { Row } from '../flex' const styles = require('../../../src/components/action-box/styles.scss') const display = require('../../../src/components/styles/globals/display.scss') export class ActionBox extends StylableComponent { public render(): JSX.Element { const { hidden, children } = this.props return ( ) } } export class ActionNode extends StylableComponent { public render() { const { className, icon, tooltip, tooltipPos, onClick, disabled, strokeIcon, iconProps, } = this.props return ( {disabled ? (
) : null}
) } }