a tool for shared writing and social publishing
298
fork

Configure Feed

Select the types of activity you want to include in your feed.

at refactor/standard.site 21 lines 822 B view raw
1import { Props } from "./Props"; 2 3export const CheckboxChecked = (props: Props) => { 4 return ( 5 <svg 6 width="12" 7 height="12" 8 viewBox="0 0 12 12" 9 fill="none" 10 xmlns="http://www.w3.org/2000/svg" 11 {...props} 12 > 13 <path 14 fillRule="evenodd" 15 clipRule="evenodd" 16 d="M2 0C0.895431 0 0 0.89543 0 2V10C0 11.1046 0.89543 12 2 12H10C11.1046 12 12 11.1046 12 10V2C12 0.895431 11.1046 0 10 0H2ZM10.4554 3.95353C10.7769 3.59277 10.7451 3.03966 10.3843 2.71813C10.0236 2.3966 9.47046 2.4284 9.14893 2.78916L5.03209 7.40828L3.28982 5.92642C2.92171 5.61333 2.36949 5.65793 2.0564 6.02604C1.74331 6.39415 1.78791 6.94637 2.15602 7.25946L4.54955 9.29524C4.91165 9.60322 5.45339 9.56577 5.76966 9.21091L10.4554 3.95353Z" 17 fill="currentColor" 18 /> 19 </svg> 20 ); 21};