@wix/design-system
Version:
@wix/design-system
11 lines (8 loc) • 365 B
TypeScript
import * as React from 'react';
export interface SidebarSectionTitleProps {
/** Applied as data-hook HTML attribute that can be used in the tests */
dataHook?: string;
/** Usually plain text, but could be any renderable node */
children: React.ReactNode;
}
export default class SidebarSectionTitle extends React.PureComponent<SidebarSectionTitleProps> {}