import * as React from "react"; interface LineHeightProps { /** * Triggered when the setting changes */ onChange?: () => void } /** * Creates a Button Slider Group to Change the Line Height of the component */ const LineHeight:React.FC = ({ children }) => { return
{children}
; } export default LineHeight;