Files
payload/test/fields/collections/Text/CustomLabel.tsx
2023-11-08 14:40:31 -05:00

14 lines
237 B
TypeScript

'use client'
import React from 'react'
const CustomLabel: React.FC<{ htmlFor: string }> = ({ htmlFor }) => {
return (
<label htmlFor={htmlFor} className="custom-label">
#label
</label>
)
}
export default CustomLabel