mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
14 lines
281 B
TypeScript
14 lines
281 B
TypeScript
import React from 'react';
|
|
|
|
import ls from './Stack.less'
|
|
import cx from "classnames";
|
|
|
|
type StackProps = React.HTMLAttributes<HTMLDivElement>;
|
|
|
|
export default function Stack({className, ...props}: StackProps) {
|
|
return <div className={cx(ls.root, className)} {...props} />
|
|
}
|
|
|
|
|
|
|
|
|