@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
13 lines • 651 B
JavaScript
import styled from 'styled-components';
import { getMeasuresStyles, getPaddingStyles, getStyles, getTypographyStyles, } from '../../utils/getStyles/getStyles';
export const DotStyled = styled.span `
${props => getStyles(props.styles.container)}
${props => getStyles(props.sizeStyles.container)}
${props => getPaddingStyles(props.sizeStyles.container)}
${props => getMeasuresStyles(props.sizeStyles.container)}
${props => getTypographyStyles(props.sizeStyles.container)}
${props => getTypographyStyles(props.styles.container)}
width: ${props => props.$width};
height: ${props => props.$height};
`;
//# sourceMappingURL=dot.styled.js.map