UNPKG

@bytebeans/macaw-ui

Version:

Saleor's UI component library

19 lines (17 loc) 464 B
import type { SaleorThemeColors } from ".."; // Extracting it to separate file to avoid circular imports export function getSecondaryButtonStyles(colors: SaleorThemeColors) { return { "&:hover, &.Mui-focusVisible": { color: colors.active[1], }, "&:disabled": { color: colors.disabled, }, background: "transparent", borderRadius: 0, color: colors.main[3], padding: 8, transition: "200ms", }; }