@chakra-v2/styled-system
Version:
Style function for css-in-js building component libraries
16 lines (13 loc) • 323 B
JavaScript
import { t } from '../utils/index.mjs';
const effect = {
boxShadow: t.shadows("boxShadow"),
mixBlendMode: true,
blendMode: t.prop("mixBlendMode"),
backgroundBlendMode: true,
bgBlendMode: t.prop("backgroundBlendMode"),
opacity: true
};
Object.assign(effect, {
shadow: effect.boxShadow
});
export { effect };