@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
23 lines (22 loc) • 620 B
TypeScript
import { ComponentStyle } from "../../core/system/index.types.js";
import { CSSModifierObject, CSSObject, CSSPropObject } from "../../core/css/index.types.js";
import "../../index.js";
//#region src/components/mark/mark.style.d.ts
declare const markStyle: ComponentStyle<CSSPropObject<CSSObject>, CSSModifierObject, {
accent: {
color: "colorScheme.solid";
};
solid: {
layerStyle: "solid";
};
subtle: {
layerStyle: "subtle";
};
text: {
fontWeight: "semibold";
};
}>;
type MarkStyle = typeof markStyle;
//#endregion
export { MarkStyle, markStyle };
//# sourceMappingURL=mark.style.d.ts.map