14 lines
467 B
TypeScript
14 lines
467 B
TypeScript
import clsx from 'clsx';
|
|
// biome-ignore lint/style/useImportType: React is required in scope for the old JSX transform.
|
|
import React from 'react';
|
|
|
|
export type KintonePluginRowProps = React.PropsWithChildren<{
|
|
className?: string;
|
|
}>;
|
|
|
|
const KintonePluginRow: React.FC<KintonePluginRowProps> = (props) => {
|
|
const { className, children } = props;
|
|
return <div className={clsx('kintoneplugin-row', className)}>{children}</div>;
|
|
};
|
|
export default KintonePluginRow;
|