import React from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; const Table = ({ children, className = '', fullWidth = true, style = {} }) => { const classes = { base: 'text-lg text-white', fullWidth: { true: 'w-full', false: '', }, }; return (