12 lines
355 B
TypeScript
12 lines
355 B
TypeScript
import React from 'react'
|
|
|
|
import type { RowLabelComponent } from '../../../../packages/payload/src/admin/components/forms/RowLabel/types'
|
|
|
|
export const CollapsibleLabelComponent: RowLabelComponent = ({ data }) => {
|
|
return (
|
|
<div style={{ color: 'hotpink', textTransform: 'uppercase' }}>
|
|
{data.innerCollapsible || 'Untitled'}
|
|
</div>
|
|
)
|
|
}
|