import React from 'react' import { Props } from './props.type' export const Slack: React.FC = (props) => { const { width, height } = props const svgWidth = width || '72px' const svgHeight = height || '72px' return ( ) } export default Slack