style: create issue modal icon (#784)
This commit is contained in:
parent
e4e66b3ae4
commit
88d2adddc7
2 changed files with 2 additions and 2 deletions
|
|
@ -36,7 +36,7 @@ export const IssueDateSelect: React.FC<Props> = ({ value, onChange }) => (
|
|||
</>
|
||||
) : (
|
||||
<>
|
||||
<CalendarDaysIcon className="h-4 w-4 flex-shrink-0 " />
|
||||
<CalendarDaysIcon className="h-4 w-4 text-gray-500 flex-shrink-0 " />
|
||||
<span className="text-gray-500">Due Date</span>
|
||||
</>
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ export const IssueEstimateSelect: React.FC<Props> = ({ value, onChange }) => {
|
|||
value={value}
|
||||
label={
|
||||
<div className="flex items-center gap-2 text-xs">
|
||||
<PlayIcon className="h-4 w-4 text-gray-700 -rotate-90" />
|
||||
<PlayIcon className="h-4 w-4 text-gray-500 -rotate-90" />
|
||||
<span className={`${value ? "text-gray-600" : "text-gray-500"}`}>
|
||||
{estimatePoints?.find((e) => e.key === value)?.value ?? "Estimate points"}
|
||||
</span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue