react-algeria-map
Version:
A react component that displays an interactive map of Algeria including all 58 wilayas.
14 lines (13 loc) • 310 B
CSS
:root{
--react-algeria-map-hover-fill : white;
--react-algeria-map-hover-stroke : dodgerblue;
}
.state {
transition: 1s;
}
:hover.state {
fill: var(--react-algeria-map-hover-fill,white);
stroke: var(--react-algeria-map-hover-stroke,dodgerblue);
stroke-width: 4px;
cursor: pointer;
}