增加操作提示

This commit is contained in:
Bhwa233
2024-03-16 14:34:03 +08:00
parent 22648aad77
commit b1ffa28303
2 changed files with 34 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
// 操作提示标签
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