wix-style-react
Version:
wix-style-react
27 lines • 591 B
TypeScript
export function boxSizingMixin(boxSizing: any): {
boxSizing: any;
'*': {
boxSizing: any;
};
};
export function placeholderMixin(color: any): {
'&::-webkit-input-placeholder': {
color: any;
};
'&:-moz-placeholder': {
color: any;
};
'&::-moz-placeholder': {
color: any;
};
'&:-ms-input-placeholder': {
color: string;
};
};
export function borderRadiusMixin(borderRadius: any): {
borderRadius: any;
'&:-webkit-autofill': {
borderRadius: any;
};
};
//# sourceMappingURL=Input.mixins.d.ts.map