({ color, setColor }: ColorProps)
| 95 | }; |
| 96 | |
| 97 | const BaseColor = ({ color, setColor }: ColorProps) => { |
| 98 | return ( |
| 99 | <tr> |
| 100 | <td>Primary</td> |
| 101 | <td className="color-picker-button-col"> |
| 102 | <ColorPicker color={color} setColor={setColor} /> |
| 103 | </td> |
| 104 | </tr> |
| 105 | ); |
| 106 | }; |
| 107 | |
| 108 | const AdditionalColor = ({ |
| 109 | color, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…