import { ButtonStylePreset } from '../Button.types' import Colors from '../../../../theme/colors' import { pillButton, label } from './constants' export const dangerBorderButton: ButtonStylePreset = { button: { style: { ...pillButton, borderColor: Colors.danger.light }, disabledStyle: { borderColor: Colors.gray.light } }, label: { style: { ...label, color: Colors.primary.default }, disabledStyle: { color: Colors.gray.light } } }