@stylable/custom-value
v6.1.1
Published
Custom values (variables) for Stylable
Downloads
251
Keywords
Readme
@stylable/custom-value
@stylable/custom-value
serves as a package where various implementation for Stylable (build-time) variable custom types.
Currently, this package only offers an stBorder
type, with more to be added in the future.
Usage example
:import {
-st-from: '@stylable/custom-value';
-st-named: stBorder;
}
:vars {
myBorder: stBorder(1px, solid, green);
}
.root {
border: value(stBorder); /* returns: 1px solid green */
background-color: value(stBorder, color); /* returns: green */
}
License
Copyright (c) 2021 Wix.com Ltd. All Rights Reserved. Use of this source code is governed by a MIT license.