File size: 406 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// @flow

import * as React from "react";
import cn from "classnames";

type Props = {| +children?: React.Node, +className?: string |};

function FormToggleStack({ className, children }: Props): React.Node {
  const classes = cn("custom-switches-stacked", className);
  return <div className={classes}>{children}</div>;
}

FormToggleStack.displayName = "Form.ToggleStack";

export default FormToggleStack;