Files
NotionNext/components/ShortcutTag.js
2024-03-16 14:34:03 +08:00

7 lines
279 B
JavaScript

// 操作提示标签
import React from 'react';
const ShortcutTag = ({ children, className }) => {
return <div className={`border-gray-300 dark:text-gray-400 text-gray-400 text-xs px-1 rounded border inline-block ${className}`}>{children}</div>
}
export default ShortcutTag