focalboard/webapp/src/widgets/icons/card.tsx
2020-12-14 13:06:41 -08:00

25 lines
570 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React from 'react'
import './card.scss'
export default function CardIcon(): JSX.Element {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
className='CardIcon Icon'
viewBox='0 0 100 100'
>
<rect
x='20'
y='30'
width='60'
height='40'
rx='3'
ry='3'
/>
</svg>
)
}