/**
* Cabinet-specific quick-action glyphs, lazy-loaded into the editor's
* floating action menus via `IconRef` (`kind: 'component'`) on each quick
* action — the menus render whatever mark the kind ships instead of
* hardcoding cabinet SVG. Stroke-based marks, so they can't collapse into
* the fill-only `svg`-kind IconRef.
*/
function CabinetGlyph({ kind }: { kind: 'base' | 'tall' | 'wall' }) {
return (
)
}
function CornerTurnGlyph({ direction }: { direction: 'left' | 'right' }) {
return (
)
}
export function CabinetBaseGlyph() {
return
}
export function CabinetTallGlyph() {
return
}
export function CabinetWallGlyph() {
return
}
export function CornerTurnLeftGlyph() {
return
}
export function CornerTurnRightGlyph() {
return
}