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