mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 04:45:23 +08:00
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
import React from 'react';
|
|
import cn from 'classnames';
|
|
|
|
// @TODO change icon when we deprecate FA
|
|
export default ({ className }) => (
|
|
<i className={cn('fa', 'fa-handshake-o', className)} aria-hidden="true" />
|
|
);
|