Sha256: e73a7defd4532eda50772102aab849195b7560ee8f0cc72ccfe1755586750512
Contents?: true
Size: 704 Bytes
Versions: 223
Compression:
Stored size: 704 Bytes
Contents
import React from 'react' import classnames from 'classnames' import { buildHtmlProps } from '../../utilities/props' import { globalProps, GlobalProps } from "../../utilities/globalProps" type TimelineDetailProps = { children?: React.ReactNode, className?: string, htmlOptions?: { [key: string]: any }, } & GlobalProps const TimelineDetail: React.FC<TimelineDetailProps> = ({ children, className, htmlOptions = {}, ...props }) => { const htmlProps = buildHtmlProps(htmlOptions) return ( <div {...htmlProps} className={classnames('pb_timeline_item_right_block', globalProps(props), className)} > {children} </div> ) } export default TimelineDetail
Version data entries
223 entries across 223 versions & 1 rubygems