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