UNPKG

@mysten/dapp-kit

Version:

A collection of React hooks and components for interacting with the Sui blockchain and wallets.

17 lines (13 loc) 427 B
// Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 import { style } from '@vanilla-extract/css'; import { themeVars } from '../../themes/themeContract.js'; export const container = style({ borderRadius: 9999, padding: 8, color: themeVars.colors.iconButton, backgroundColor: themeVars.backgroundColors.iconButton, ':hover': { backgroundColor: themeVars.backgroundColors.iconButtonHover, }, });