@roochnetwork/rooch-sdk-kit
Version:
Rooch SDK Kit
17 lines (13 loc) • 427 B
text/typescript
// Copyright (c) RoochNetwork
// 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,
},
})