import React from 'react'; import styled from 'styled-components'; import { SessionIcon, SessionIconType } from '../icon'; import { PanelButton, PanelButtonProps, PanelButtonText, StyledContent } from './PanelButton'; interface PanelIconButton extends Omit { iconType: SessionIconType; text: string; subtitle?: string; color?: string; } const IconContainer = styled.div` flex-shrink: 0; width: var(--toggle-width); `; export const PanelIconButton = (props: PanelIconButton) => { const { iconType, text, subtitle, color, disabled = false, onClick, dataTestId } = props; return ( ); };