@sinchsmb/ui-kit
Version:
UI kit for SinchSMB frontend
23 lines (18 loc) • 488 B
text/typescript
import styled from 'styled-components/macro';
import { color } from '../../theme';
import { Button } from '../Button/Button';
export const TunedButton = styled(Button)`
font-weight: 500;
height: 28px;
margin-right: 4px;
&:disabled {
background-color: transparent;
border-color: transparent;
color: ${color('sys/color/text/disabled')};
cursor: not-allowed;
}
&:hover:not(:disabled) {
background-color: transparent;
border-color: transparent;
}
`;