carbon-react
Version:
A library of reusable React components for easily building user interfaces.
12 lines (11 loc) • 355 B
TypeScript
import type { ThemeObject } from "../../themes/theme.types";
/**
*
* Converts theme properties to css variables form and set them locally for
* given scope
*
*/
declare const CarbonScopedTokensProvider: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & ThemeObject, "theme">;
export default CarbonScopedTokensProvider;