1.0.0 • Published 5 years ago

@jace1995/react-styles v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

@jace1995/react-styles

Helper for styling custom react components

Install

npm i -S @jace1995/react-styles

Usage

import { ReactStyles, styles } from '@jace1995/react-styles';

interface TestProps extends ReactStyles {
	test: string;
}

const props: TestProps = {
	test: 'test',
	className: 'active',
	style: {
		display: 'block',
	},
};

const stylesOnly = styles(props);

// { className: 'active', style: { display: 'block' } }
console.log(stylesOnly);