Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 | import React from 'react'; export const LockedIcon = () => { return ( <svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1.80294 16H10.1887C11.4046 16 12 15.4345 12 14.2013V8.1296C12 7.02209 11.5052 6.4487 10.5073 6.35444V4.50074C10.5073 1.47668 8.28512 0 5.99581 0C3.7065 0 1.48428 1.47668 1.48428 4.50074V6.37015C0.528302 6.48797 0 7.05351 0 8.1296V14.2013C0 15.4345 0.595388 16 1.80294 16ZM3.57233 4.39077C3.57233 2.81198 4.62893 1.88513 5.99581 1.88513C7.36268 1.88513 8.42767 2.81198 8.42767 4.39077V6.34659H3.57233V4.39077Z" fill="currentColor" /> </svg> ); }; |