Composable fade in simple line animation style selector
Creates fade in simple line animation styles with configurable theme options. This function replaces the need for multiple separate exports like fadeInSimpleLight, fadeInSimpleDark.
Optional
Configuration object for theme variant
JSS object with composed styles and appropriate className
// Light theme (default)const styles = composeFadeInSimple();// Dark themeconst styles = composeFadeInSimple({ theme: 'dark' }); Copy
// Light theme (default)const styles = composeFadeInSimple();// Dark themeconst styles = composeFadeInSimple({ theme: 'dark' });
1.7.0
Composable fade in simple line animation style selector
Creates fade in simple line animation styles with configurable theme options. This function replaces the need for multiple separate exports like fadeInSimpleLight, fadeInSimpleDark.