import React from 'react';
import Button from '@dailyjs/shared/components/Button';
import classNames from 'classnames';
import PropTypes from 'prop-types';
export const TrayButton = ({
children,
label,
onClick,
bubble = false,
orange = false,
}) => {
const cx = classNames('tray-button', { orange, bubble });
return (
{label}
);
};
TrayButton.propTypes = {
children: PropTypes.node,
onClick: PropTypes.func,
orange: PropTypes.bool,
bubble: PropTypes.bool,
label: PropTypes.string.isRequired,
};
export const Tray = ({ children }) => (
);
Tray.propTypes = {
children: PropTypes.node,
};
export default Tray;