You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
// it has style inside index.scss ---> // Start CheckBox Component && end CheckBox Component |
|
|
|
import React from "react"; |
|
|
|
export default function Checkbox(props) { |
|
return ( |
|
<div> |
|
<svg className="w-0 h-0 absolute pointer-events-none select-none"> |
|
<symbol id="check" viewBox="0 0 12 10"> |
|
<polyline |
|
points="1.5 6 4.5 9 10.5 1" |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
strokeWidth="2" |
|
></polyline> |
|
</symbol> |
|
</svg> |
|
|
|
<div |
|
className="checkbox-container flex flex-wrap justify-center items-center hover:bg-inherit border-box" |
|
style={{ color: "#000", height: "30px" }} |
|
> |
|
<input |
|
className="checkbox-input absolute hidden" |
|
id="apples" |
|
type="checkbox" |
|
checked={props.checked} |
|
/> |
|
<label |
|
className="checkbox flex rounded-sm transition-all duration-100 cursor-pointer select-none overflow-hidden" |
|
style={{ padding: "6px 8px" }} |
|
htmlFor="apples" |
|
> |
|
<span |
|
className="align-bottom" |
|
style={{ transform: "translate3d(0, 0, 0)" }} |
|
> |
|
<svg width="12px" height="10px"> |
|
<use xlinkHref="#check"></use> |
|
</svg> |
|
</span> |
|
</label> |
|
</div> |
|
</div> |
|
); |
|
}
|
|
|