import React from 'react'; import { SessionIcon, SessionIconType } from '../icon'; import { PanelButton, PanelButtonProps, StyledContent, StyledText } from './PanelButton'; interface PanelIconButton extends Omit { iconType: SessionIconType; text: string; } export const PanelIconButton = (props: PanelIconButton) => { const { iconType, text, disabled = false, onClick, dataTestId } = props; return ( {text} ); };