8337cb251f
* Link to comments & highlight comment * Copy link, show toast and fade bg * Remove unused imports * Standardize link copied toast * Add linking to answer comment threads * Refactor open answers component, use indigo highlight * Distinguish chosen answer a bit more
16 lines
264 B
TypeScript
16 lines
264 B
TypeScript
import clsx from 'clsx'
|
|
|
|
export function Row(props: {
|
|
children?: any
|
|
className?: string
|
|
id?: string
|
|
}) {
|
|
const { children, className, id } = props
|
|
|
|
return (
|
|
<div className={clsx(className, 'flex flex-row')} id={id}>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|