mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e01a0d20fe
* chore: dynamic position state dropdown for issue view * style: state select dropdown styling * fix: state icon attribute names * chore: state select dynamic dropdown * chore: member select dynamic dropdown * chore: label select dynamic dropdown * chore: priority select dynamic dropdown * chore: label select dropdown improvement * refactor: state dropdown location * chore: dropdown improvement and code refactor * chore: dynamic dropdown hook type added --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
25 lines
466 B
TypeScript
25 lines
466 B
TypeScript
type Props = {
|
|
width?: string;
|
|
height?: string;
|
|
className?: string;
|
|
color?: string;
|
|
};
|
|
|
|
export const StateGroupUnstartedIcon: React.FC<Props> = ({
|
|
width = "20",
|
|
height = "20",
|
|
className,
|
|
color = "#3a3a3a",
|
|
}) => (
|
|
<svg
|
|
height={height}
|
|
width={width}
|
|
className={className}
|
|
viewBox="0 0 16 16"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<circle cx="8" cy="8" r="7.4" stroke={color} strokeWidth="1.2" />
|
|
</svg>
|
|
);
|