Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions configs/sponsors/contribkit.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,20 @@ const specialSupporters = [
/>
</svg>`,
},
{
name: 'Cloudsmith',
url: 'https://cloudsmith.com/',
logoUrl: 'https://assets.cloudsmith.media/icon/favicon.f6cc10f69392.svg',
svgContent: `
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M29.9248 14.5094V17.4905L18.0003 29.4151H15.0192L3.0946 17.4905V14.5094L15.0192 2.58484H18.0003L29.9248 14.5094ZM16.5098 22.9991C20.3751 22.9991 23.5086 19.8656 23.5086 16.0003C23.5086 12.1349 20.3751 9.00138 16.5098 9.00138C12.6444 9.00138 9.51088 12.1349 9.51088 16.0003C9.51088 19.8656 12.6444 22.9991 16.5098 22.9991Z"
fill="#2A6FE1"
/>
</svg>`,
},
];


Expand Down
6 changes: 6 additions & 0 deletions tests/regression.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ describe('Regression Tests', () => {
expectedWidth: 248,
expectedHeight: 248,
},
{
name: 'Cloudsmith',
svg: '<svg width="33" height="32" viewBox="0 0 33 32"></svg>',
expectedWidth: 33,
expectedHeight: 32,
},
];

testCases.forEach(testCase => {
Expand Down