import classNames from 'classnames' import React from 'react' import { View } from '@vnxjs/components' import { AtActionSheetHeaderProps } from '../../../../types/action-sheet' export default class AtActionSheetHeader extends React.Component< AtActionSheetHeaderProps > { public render(): JSX.Element { const rootClass = classNames( 'at-action-sheet__header', this.props.className ) return {this.props.children} } }