feat(editor): ✨ Add unlock/lock sidebar
This commit is contained in:
@ -297,3 +297,17 @@ export const GripIcon = (props: IconProps) => (
|
||||
<circle cx="5" cy="15" r="1"></circle>
|
||||
</Icon>
|
||||
)
|
||||
|
||||
export const LockedIcon = (props: IconProps) => (
|
||||
<Icon viewBox="0 0 24 24" {...featherIconsBaseProps} {...props}>
|
||||
<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect>
|
||||
<path d="M7 11V7a5 5 0 0 1 10 0v4"></path>
|
||||
</Icon>
|
||||
)
|
||||
|
||||
export const UnlockedIcon = (props: IconProps) => (
|
||||
<Icon viewBox="0 0 24 24" {...featherIconsBaseProps} {...props}>
|
||||
<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect>
|
||||
<path d="M7 11V7a5 5 0 0 1 9.9-1"></path>
|
||||
</Icon>
|
||||
)
|
||||
|
Reference in New Issue
Block a user