@teamsparta/stack-button
Version:
stack button
20 lines (17 loc) • 790 B
text/typescript
import * as _emotion_react from '@emotion/react';
import { TextButtonSize, TextButtonVariant } from './type.mjs';
declare const textButtonTextColorVar = "--stack-text-button-text-color";
declare const buttonTextCss: (sizes: Array<{
breakpoint: number;
size: TextButtonSize;
}>) => _emotion_react.SerializedStyles[];
declare const buttonBaseCss: _emotion_react.SerializedStyles;
declare const addonCss: _emotion_react.SerializedStyles;
declare const textButtonColorVariants: Record<TextButtonVariant, {
[textButtonTextColorVar]: string;
}>;
declare const buttonIconSizeCss: (sizes: Array<{
breakpoint: number;
size: TextButtonSize;
}>) => _emotion_react.SerializedStyles[];
export { addonCss, buttonBaseCss, buttonIconSizeCss, buttonTextCss, textButtonColorVariants };