focalboard/webapp/src/widgets/icons/card.tsx

26 lines
570 B
TypeScript
Raw Normal View History

2020-12-14 22:06:41 +01:00
// 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>
)
}