/** * diwa-button-pure-styles.ts * =========================== * CSS-in-JS styles for . * * A minimal, transparent button: icon + label only, no background or border. * Mirrors the PDS p-button-pure aesthetic. * * Layout rules: * alignLabel='end' (default) → icon label * alignLabel='start' → label icon (via flex-direction: row-reverse) * stretch=true → fills container width, gap between icon and label */ import type { ButtonPureSize, ButtonPureAlignLabel } from './types'; export declare const getComponentCss: (_size: ButtonPureSize, _disabled: boolean, _loading: boolean, _underline: boolean, _active: boolean, _hideLabel: boolean, _alignLabel: ButtonPureAlignLabel, _stretch: boolean) => string; //# sourceMappingURL=diwa-button-pure-styles.d.ts.map