@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
22 lines • 794 B
JavaScript
import _objectDestructuringEmpty from "@babel/runtime/helpers/esm/objectDestructuringEmpty";
import _extends from "@babel/runtime/helpers/esm/extends";
import { styled } from '@mui/material';
export var IconButtontextStyled = styled('div', {
shouldForwardProp: function shouldForwardProp(props) {
return props !== 'borderRadius' && props !== 'boxShadow';
}
})(function (_ref) {
var props = _extends({}, (_objectDestructuringEmpty(_ref), _ref));
return {
backgroudnColor: '#fff',
boxShadow: props.boxShadow || 'rgb(0 0 0 / 9%) 0px 3px 12px',
borderRadius: props.borderRadius || '100px',
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
width: 'min-content',
padding: '0px 15px',
columnGap: '10px'
};
});