Skip to content
This repository was archived by the owner on Apr 11, 2018. It is now read-only.

Commit df26284

Browse files
committed
feat(expand-animation): add a 'k-expand' CSS class name to the animation container
1 parent c691811 commit df26284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Expand.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default class Expand extends React.Component {
4343

4444
render() {
4545
const { className, style } = this.props;
46-
const combinedClasses = classNames(styles['animation-container'], className);
46+
const combinedClasses = classNames(styles['animation-container'], 'k-expand', className);
4747

4848
return (
4949
<TransitionGroup className={combinedClasses} component="div" style={style}>

0 commit comments

Comments
 (0)