import { mode } from '../tools'; // Actionsheet export const Actionsheet = { defaultProps: { size: 'full', }, }; // ActionsheetContent export const ActionsheetContent = { baseStyle: { alignItems: 'center', px: 2, py: 2, borderRadius: 'none', roundedTop: 10, _dragIndicator: { bg: 'coolGray.400', height: 1, width: 9, borderRadius: 2, }, }, }; // ActionsheetItem export const ActionsheetItem = { baseStyle: (props: any) => ({ width: '100%', justifyContent: 'flex-start', px: 5, _pressed: { bg: mode('gray.200', 'gray.600')(props), }, _hover: { bg: mode('gray.100', 'gray.600')(props), }, }), defaultProps: { variant: 'unstyled', }, };