const defaultProps = { placeholder: '○', size: 'md', manageFocus: true, space: 1, }; const sizes = { '2xl': { size: '2xl', p: 3, width: '52px', textAlign: 'center', borderRadius: 'lg', }, 'xl': { size: 'xl', p: 3, width: '48px', textAlign: 'center', borderRadius: 'lg', }, 'lg': { size: 'lg', p: 2, width: '38px', textAlign: 'center', borderRadius: 'md', }, 'md': { size: 'md', p: 2, width: '36px', textAlign: 'center', borderRadius: 'md', }, 'sm': { size: 'sm', p: 1, width: '26px', textAlign: 'center', borderRadius: 'md', }, 'xs': { size: 'xs', p: 1, width: '24px', textAlign: 'center', borderRadius: 'md', }, }; export default { sizes, defaultProps, };