@crossed/styled
Version:
A universal & performant styling library for React Native, Next.js & React
22 lines • 741 B
TypeScript
/**
* Copyright (c) Paymium.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root of this projects source tree.
*/
import type { CrossedstyleValues, Plugin } from '../../types';
export interface CrossedPseudoClassProps {
'focus'?: true | false;
'hover'?: true | false;
'focus-visible'?: true | false;
'disabled'?: true | false;
}
export interface CrossedPseudoClassPlugin {
':focus'?: CrossedstyleValues;
':hover'?: CrossedstyleValues;
':active'?: CrossedstyleValues;
':focus-visible'?: CrossedstyleValues;
':disabled'?: CrossedstyleValues;
}
export declare const PseudoClassPlugin: Plugin<CrossedPseudoClassPlugin>;
//# sourceMappingURL=PseudoClass.d.ts.map