> ## Documentation Index
> Fetch the complete documentation index at: https://docs.researchanddesire.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Extrusion Mount Spacer

> A 5mm spacer for mounting the OSSM to aluminum extrusion stands

export const STLViewer = ({url}) => {
  const [loading, setLoading] = useState(true);
  const EMBED_URL = `https://www.viewstl.com/?embedded&url=${encodeURIComponent(url)}`;
  const getGitHubUrl = rawUrl => {
    if (rawUrl.includes('raw.githubusercontent.com')) {
      return rawUrl.replace('raw.githubusercontent.com', 'github.com').replace(/\/main\//, '/blob/main/');
    }
    return rawUrl;
  };
  const fileUrl = getGitHubUrl(url);
  const fileName = decodeURIComponent(url.split('/').pop());
  return <div style={{
    width: '100%',
    maxWidth: '800px',
    margin: '0 auto'
  }}>
      {loading && <div style={{
    position: 'absolute',
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center',
    width: '100%',
    height: '500px',
    background: '#f5f5f5',
    borderRadius: '8px',
    zIndex: 1
  }}>
          Loading 3D viewer...
        </div>}
      <div style={{
    position: 'relative'
  }}>
        <iframe src={EMBED_URL} style={{
    width: '100%',
    height: '500px',
    border: 'none',
    borderRadius: '8px',
    background: '#f5f5f5'
  }} onLoad={() => setLoading(false)} title="STL Viewer" allowFullScreen />
      </div>
      <div style={{
    display: 'flex',
    justifyContent: 'space-between',
    alignItems: 'center',
    marginTop: '8px',
    fontSize: '12px',
    color: '#666'
  }}>
        <span>Drag to rotate • Scroll to zoom</span>
        <a href={fileUrl} target="_blank" rel="noopener noreferrer" style={{
    color: '#0066cc',
    textDecoration: 'none'
  }}>
          {fileName} ↗
        </a>
      </div>
    </div>;
};

<STLViewer url="https://raw.githubusercontent.com/KinkyMakers/OSSM-hardware/main/Hardware/%5BLEGACY%5D%20OSSM%20Printed%20Parts/OSSM%20Mounting/OSSM%20-%20Basic%20Mount/OSSM%20-%20Extrusion%20Mount%20-%20Spacer%20-%205mm.stl" />

## Function

The Extrusion Mount Spacer is an optional component for the Basic Mount system. This part:

* Provides 5mm of spacing between the mount bracket and an aluminum extrusion stand
* Helps with alignment and clearance when mounting to 2020 or 4040 extrusion profiles
* Can be stacked for additional spacing as needed

<Note>
  This spacer is optional and only needed when mounting to aluminum extrusion stands where additional clearance is required.
</Note>

## Print Settings

| Setting      | Value |
| ------------ | ----- |
| Walls        | 4     |
| Infill       | 20%   |
| Supports     | None  |
| Layer height | 0.2mm |

## Download Files

<Card title="STL File" icon="cube" href="https://github.com/KinkyMakers/OSSM-hardware/blob/main/Hardware/%5BLEGACY%5D%20OSSM%20Printed%20Parts/OSSM%20Mounting/OSSM%20-%20Basic%20Mount/OSSM%20-%20Extrusion%20Mount%20-%20Spacer%20-%205mm.stl">
  Download for slicing
</Card>
